ETH Price: $3,585.90 (+4.63%)
 

Overview

Max Total Supply

1,000,000,000 VIK

Holders

263

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
266 VIK

Value
$0.00
0x31aeb4c7134e1ea44392aa06a34f6fd89fd22035
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VikkyToken

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-04-12
*/

pragma solidity ^0.4.18;

// VikkyToken
// Token name: VikkyToken
// Symbol: VIK
// Decimals: 18
// Telegram community: https://t.me/vikkyglobal



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

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

  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) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

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

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

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

interface Token { 
    function distr(address _to, uint256 _value) external returns (bool);
    function totalSupply() constant external returns (uint256 supply);
    function balanceOf(address _owner) constant external returns (uint256 balance);
}

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

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

    mapping (address => bool) public airdropClaimed;
    mapping (address => bool) public refundClaimed;
    mapping (address => bool) public locked;

    /* Keep track of Ether contributed and tokens received during Crowdsale */
  
    mapping(address => uint) public icoEtherContributed;
    mapping(address => uint) public icoTokensReceived;

    string public constant name = "VikkyToken";
    string public constant symbol = "VIK";
    uint public constant decimals = 18;
    
    uint constant E18 = 10**18;
    uint constant E6 = 10**6;
    
    uint public totalSupply = 1000 * E6 * E18;
    uint public totalDistributed = 220 * E6 * E18;   //For team + Founder
    uint public totalRemaining = totalSupply.sub(totalDistributed); //For ICO    
    uint public tokensPerEth = 20000 * E18; 
    
    uint public tokensAirdrop = 266 * E18;
    uint public tokensClaimedAirdrop = 0;
    uint public totalDistributedAirdrop = 20 * E6 * E18;   //Airdrop

    uint public constant MIN_CONTRIBUTION = 1 ether / 100; // 0.01 Ether
    uint public constant MIN_CONTRIBUTION_PRESALE = 1 ether;
    uint public constant MAX_CONTRIBUTION = 100 ether;
    uint public constant MIN_FUNDING_GOAL =  5000 ether; // 5000 ETH
    /* ICO dates */

    uint public constant DATE_PRESALE_START = 1525244400; // 05/02/2018 @ 7:00am (UTC)
    uint public constant DATE_PRESALE_END   = 1526454000; // 05/16/2018 @ 7:00am (UTC)

    uint public constant DATE_ICO_START = 1526454060; // 05/16/2018 @ 7:01am (UTC)
    uint public constant DATE_ICO_END   = 1533020400; // 07/31/2018 @ 7:00am (UTC)

    uint public constant BONUS_PRESALE      = 30;
    uint public constant BONUS_ICO_ROUND1   = 20;
    uint public constant BONUS_ICO_ROUND2   = 10;
    uint public constant BONUS_ICO_ROUND3   = 5;
    
    event TokensPerEthUpdated(uint _tokensPerEth);    
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    event Refund(address indexed _owner, uint _amount, uint _tokens);
    event Distr(address indexed to, uint256 amount);
    event DistrFinished();
    event Airdrop(address indexed _owner, uint _amount, uint _balance);
    event Burn(address indexed burner, uint256 value);
    event LockRemoved(address indexed _participant);

    bool public distributionFinished = false;
    
    modifier canDistr() {
        require(!distributionFinished);
        _;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    
    function VikkyToken () public {
        owner = msg.sender;
        distr(owner, totalDistributed); //Distribute for owner
    }

    // Information functions ------------
  
    /* What time is it? */
  
    function atNow() public constant returns (uint) {
        return now;
    }
  
     /* Has the minimum threshold been reached? */
  
    function icoThresholdReached() public constant returns (bool thresholdReached) {
        address myAddress = this;
        uint256 etherBalance = myAddress.balance;
        if (etherBalance < MIN_FUNDING_GOAL) return false;
        return true;
    }  
    
    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);

        icoTokensReceived[msg.sender] = icoTokensReceived[msg.sender].add(_amount);
            
        // register Ether            
        icoEtherContributed[msg.sender] = icoEtherContributed[msg.sender].add(msg.value);
    
        // locked
        locked[msg.sender] = true;

        emit Distr(_to, _amount);
        emit Transfer(address(0), _to, _amount);        
        
        return true;     
    }
    
    function distribution(address[] addresses, uint256 amount) onlyOwner canDistr public {
                
        require(amount <= totalRemaining);
        
        for (uint i = 0; i < addresses.length; i++) {
            require(amount <= totalRemaining);
            distr(addresses[i], amount);
        }
    
        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
    }
    
    function distributeAmounts(address[] addresses, uint256[] amounts) onlyOwner canDistr public {
        
        require(addresses.length == amounts.length);
        
        for (uint8 i = 0; i < addresses.length; i++) {
            require(amounts[i] <= totalRemaining);
            distr(addresses[i], amounts[i]);
            
            if (totalDistributed >= totalSupply) {
                distributionFinished = true;
            }
        }
    }

    function doAirdrop(address _participant, uint airdrop) internal {
        
        require( airdrop > 0 );
        require(tokensClaimedAirdrop < totalDistributedAirdrop);

        // update balances and token issue volume
        airdropClaimed[_participant] = true;
        balances[_participant] = balances[_participant].add(airdrop);
        totalDistributed = totalDistributed.add(airdrop);
        totalRemaining = totalRemaining.sub(airdrop);
        tokensClaimedAirdrop   = tokensClaimedAirdrop.add(airdrop);
    
        // log
        emit Airdrop(_participant, airdrop, balances[_participant]);
        emit Transfer(address(0), _participant, airdrop);
    }

    function adminClaimAirdrop(address _participant, uint airdrop) external {        
        doAirdrop(_participant, airdrop);
    }

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

    function systemClaimAirdropMultiple(address[] _addresses) external {
        uint airdrop = tokensAirdrop;
        for (uint i = 0; i < _addresses.length; i++) doAirdrop(_addresses[i], airdrop);
    }

 
    /* Change tokensPerEth before ICO start */
  
    function updateTokensPerEth(uint _tokensPerEth) public onlyOwner {
        require( atNow() < DATE_PRESALE_START );
        tokensPerEth = _tokensPerEth;
        emit TokensPerEthUpdated(_tokensPerEth);
    }
    
    function () external payable {
        buyTokens();
     }
    
    function buyTokens() payable canDistr public {
        uint ts = atNow();
        bool isPresale = false;
        bool isIco = false;
        uint tokens = 0;

        // minimum contribution
        require( msg.value >= MIN_CONTRIBUTION );

        // one address transfer hard cap
        require( icoEtherContributed[msg.sender].add(msg.value) <= MAX_CONTRIBUTION );

        // check dates for presale or ICO
        if (ts > DATE_PRESALE_START && ts < DATE_PRESALE_END) isPresale = true;  
        if (ts > DATE_ICO_START && ts < DATE_ICO_END) isIco = true;
        require( isPresale || isIco );

        // presale cap in Ether
        if (isPresale) require( msg.value >= MIN_CONTRIBUTION_PRESALE);
                
        address investor = msg.sender;
        
        // get baseline number of tokens
        tokens = tokensPerEth.mul(msg.value) / 1 ether;

        // apply bonuses (none for last week)
        if (isPresale) {
            tokens = tokens.mul(100 + BONUS_PRESALE) / 100;
        } else if (ts < DATE_ICO_START + 14 days) {
            // round 1 bonus
            tokens = tokens.mul(100 + BONUS_ICO_ROUND1) / 100;
        } else if (ts < DATE_ICO_START + 28 days) {
            // round 2 bonus
            tokens = tokens.mul(100 + BONUS_ICO_ROUND2) / 100;
        } else if (ts < DATE_ICO_START + 42 days) {
            // round 3 bonus
            tokens = tokens.mul(100 + BONUS_ICO_ROUND3) / 100;
        }

        // ICO token volume cap
        require( totalDistributed.add(tokens) <= totalRemaining );
        
        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);
        _;
    }

    // Lock functions -------------------

    /* Manage locked */

    function removeLock(address _participant) public {        
        locked[_participant] = false;
        emit LockRemoved(_participant);
    }

    function removeLockMultiple(address[] _participants) public {        
        for (uint i = 0; i < _participants.length; i++) {
            removeLock(_participants[i]);
        }
    }
    
    function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[msg.sender]);
        require( locked[msg.sender] == false );
        require( locked[_to] == false );
        
        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]);
        require( locked[msg.sender] == false );
        require( locked[_to] == false );
        
        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){
        ForeignToken t = ForeignToken(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]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

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

    // External functions ---------------

    /* Reclaiming of funds by contributors in case of a failed crowdsale */
    /* (it will fail if account is empty after ownerClawback) */

    function reclaimFund(address _participant) public {
        uint tokens; // tokens to destroy
        uint amount; // refund amount

        // ico is finished and was not successful
        require( atNow() > DATE_ICO_END && !icoThresholdReached() );

        // check if refund has already been claimed
        require( !refundClaimed[_participant] );

        // check if there is anything to refund
        require( icoEtherContributed[_participant] > 0 );

        // update variables affected by refund
        tokens = icoTokensReceived[_participant];
        amount = icoEtherContributed[_participant];

        balances[_participant] = balances[_participant].sub(tokens);
        totalDistributed    = totalDistributed.sub(tokens);
    
        refundClaimed[_participant] = true;

        _participant.transfer(amount);

        // log
        emit Transfer(_participant, 0x0, tokens);
        emit Refund(_participant, amount, tokens);
    }

    function reclaimFundMultiple(address[] _participants) public {        
        for (uint i = 0; i < _participants.length; i++) {
            reclaimFund(_participants[i]);
        }
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"DATE_PRESALE_START","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BONUS_PRESALE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"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":"_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":true,"inputs":[{"name":"","type":"address"}],"name":"icoEtherContributed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MIN_FUNDING_GOAL","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"BONUS_ICO_ROUND2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_participant","type":"address"}],"name":"reclaimFund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MIN_CONTRIBUTION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_participant","type":"address"}],"name":"removeLock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_participant","type":"address"},{"name":"airdrop","type":"uint256"}],"name":"adminClaimAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"BONUS_ICO_ROUND3","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DATE_PRESALE_END","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensClaimedAirdrop","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"airdrop","type":"uint256"}],"name":"adminClaimAirdropMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"BONUS_ICO_ROUND1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_participants","type":"address[]"}],"name":"reclaimFundMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"atNow","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_CONTRIBUTION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DATE_ICO_START","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":"addresses","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"distributeAmounts","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":"_addresses","type":"address[]"}],"name":"systemClaimAirdropMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"refundClaimed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DATE_ICO_END","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":"","type":"address"}],"name":"locked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"icoTokensReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"airdropClaimed","outputs":[{"name":"","type":"bool"}],"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":"MIN_CONTRIBUTION_PRESALE","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":"totalDistributedAirdrop","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"icoThresholdReached","outputs":[{"name":"thresholdReached","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenContract","type":"address"}],"name":"withdrawForeignTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalDistributed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amount","type":"uint256"}],"name":"distribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokensAirdrop","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_participants","type":"address[]"}],"name":"removeLockMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_tokensPerEth","type":"uint256"}],"name":"TokensPerEthUpdated","type":"event"},{"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":"_owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"},{"indexed":false,"name":"_tokens","type":"uint256"}],"name":"Refund","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":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_participant","type":"address"}],"name":"LockRemoved","type":"event"}]

606060405260018054600160a060020a03191633600160a060020a03161790556b033b2e3c9fd0803ce800000060098190556ab5facfe5b81c365c000000600a8190556200005c9190640100000000620000ed810262001a811704565b600b5569043c33c1937564800000600c55680e6b7dd6abede80000600d556000600e556a108b2a2c28029094000000600f556010805460ff191690553415620000a457600080fd5b60018054600160a060020a03191633600160a060020a039081169190911791829055600a54620000e69290911690640100000000620001008102620019091704565b50620002d4565b600082821115620000fa57fe5b50900390565b60105460009060ff16156200011457600080fd5b600a54620001319083640100000000620018cf620002bd82021704565b600a55600b5462000151908364010000000062001a81620000ed82021704565b600b55600160a060020a038316600090815260026020526040902054620001879083640100000000620018cf620002bd82021704565b600160a060020a0380851660009081526002602090815260408083209490945533909216815260089091522054620001ce9083640100000000620018cf620002bd82021704565b600160a060020a0333166000908152600860209081526040808320939093556007905220546200020d9034640100000000620018cf620002bd82021704565b600160a060020a0333811660009081526007602090815260408083209490945560069052829020805460ff191660011790558416907f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a779084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600082820183811015620002cd57fe5b9392505050565b611c1b80620002e46000396000f3006060604052600436106102585763ffffffff60e060020a600035041663023bb74d811461026257806305502a621461028757806306fdde031461029a578063095ea7b31461032457806318160ddd1461035a57806323b872dd1461036d578063313ce56714610395578063347e26c0146103a857806336d95f56146103c75780633ccfd60b146103da5780633d20d9b0146103ed5780633e8786a11461040057806340650c911461041f57806342966c68146104325780634a387bef146104485780634a63464d146104675780635c72de09146104895780635ef794341461049c578063615ef639146104af57806367220fd7146104c25780637024ce7b146104e457806370a08231146104f7578063799057531461051657806381aea6681461056557806394d95f8f1461057857806395cc2e8b1461058b57806395d89b411461059e5780639b1cbccc146105b15780639ea407be146105c4578063a8c310d5146105da578063a9059cbb14610669578063b3e99b771461068b578063b557478a146106a9578063c0c133a8146106c8578063c108d542146106db578063c489744b146106ee578063cbdd69b514610713578063cbf9fe5f14610726578063ce916d8514610745578063d0febe4c14610258578063d1b6dd3014610764578063d8a5436014610783578063dbaaa2dd14610796578063dd62ed3e146107a9578063e09413ba146107ce578063e3fe9740146107e1578063e58fc54c146107f4578063efca2eed14610813578063f2fde38b14610826578063f3e4877c14610845578063f5ab865a14610896578063fcc1cc9b146108a9575b6102606108f8565b005b341561026d57600080fd5b610275610aff565b60405190815260200160405180910390f35b341561029257600080fd5b610275610b07565b34156102a557600080fd5b6102ad610b0c565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102e95780820151838201526020016102d1565b50505050905090810190601f1680156103165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561032f57600080fd5b610346600160a060020a0360043516602435610b43565b604051901515815260200160405180910390f35b341561036557600080fd5b610275610bef565b341561037857600080fd5b610346600160a060020a0360043581169060243516604435610bf5565b34156103a057600080fd5b610275610dbf565b34156103b357600080fd5b610275600160a060020a0360043516610dc4565b34156103d257600080fd5b610275610dd6565b34156103e557600080fd5b610260610de4565b34156103f857600080fd5b610275610e44565b341561040b57600080fd5b610260600160a060020a0360043516610e49565b341561042a57600080fd5b610275610fee565b341561043d57600080fd5b610260600435610ff9565b341561045357600080fd5b610260600160a060020a03600435166110e7565b341561047257600080fd5b610260600160a060020a0360043516602435611137565b341561049457600080fd5b610275611141565b34156104a757600080fd5b610275611146565b34156104ba57600080fd5b61027561114e565b34156104cd57600080fd5b610260602460048035828101929101359035611154565b34156104ef57600080fd5b610275611192565b341561050257600080fd5b610275600160a060020a0360043516611197565b341561052157600080fd5b61026060046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496506111b295505050505050565b341561057057600080fd5b6102756111e4565b341561058357600080fd5b6102756111e8565b341561059657600080fd5b6102756111f5565b34156105a957600080fd5b6102ad6111fd565b34156105bc57600080fd5b610346611234565b34156105cf57600080fd5b6102606004356112a1565b34156105e557600080fd5b61026060046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061130e95505050505050565b341561067457600080fd5b610346600160a060020a03600435166024356113e2565b341561069657600080fd5b6102606004803560248101910135611525565b34156106b457600080fd5b610346600160a060020a036004351661154a565b34156106d357600080fd5b61027561155f565b34156106e657600080fd5b610346611567565b34156106f957600080fd5b610275600160a060020a0360043581169060243516611570565b341561071e57600080fd5b6102756115e1565b341561073157600080fd5b610346600160a060020a03600435166115e7565b341561075057600080fd5b610275600160a060020a03600435166115fc565b341561076f57600080fd5b610346600160a060020a036004351661160e565b341561078e57600080fd5b610275611623565b34156107a157600080fd5b610275611629565b34156107b457600080fd5b610275600160a060020a0360043581169060243516611635565b34156107d957600080fd5b610275611660565b34156107ec57600080fd5b610346611666565b34156107ff57600080fd5b610346600160a060020a0360043516611699565b341561081e57600080fd5b61027561179d565b341561083157600080fd5b610260600160a060020a03600435166117a3565b341561085057600080fd5b610260600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965050933593506117f992505050565b34156108a157600080fd5b610275611897565b34156108b457600080fd5b610260600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965061189d95505050505050565b601054600090819081908190819060ff161561091357600080fd5b61091b6111e4565b945060009350839250829150662386f26fc1000034101561093b57600080fd5b600160a060020a03331660009081526007602052604090205468056bc75e2d631000009061096f903463ffffffff6118cf16565b111561097a57600080fd5b635ae961f0851180156109905750635afbd6f085105b1561099a57600193505b635afbd72c851180156109b05750635b6008f085105b156109ba57600192505b83806109c35750825b15156109ce57600080fd5b83156109e957670de0b6b3a76400003410156109e957600080fd5b50600c543390670de0b6b3a764000090610a09903463ffffffff6118e516565b811515610a1257fe5b0491508315610a3f576064610a2e83608263ffffffff6118e516565b811515610a3757fe5b049150610aa9565b635b0e4c2c851015610a5e576064610a2e83607863ffffffff6118e516565b635b20c12c851015610a7d576064610a2e83606e63ffffffff6118e516565b635b33362c851015610aa9576064610a9c83606963ffffffff6118e516565b811515610aa557fe5b0491505b600b54600a54610abf908463ffffffff6118cf16565b1115610aca57600080fd5b6000821115610adf57610add8183611909565b505b600954600a5410610af8576010805460ff191660011790555b5050505050565b635ae961f081565b601e81565b60408051908101604052600a81527f56696b6b79546f6b656e00000000000000000000000000000000000000000000602082015281565b60008115801590610b785750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b15610b8557506000610be9565b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60095481565b600060606064361015610c0457fe5b600160a060020a0384161515610c1957600080fd5b600160a060020a038516600090815260026020526040902054831115610c3e57600080fd5b600160a060020a0380861660009081526003602090815260408083203390941683529290522054831115610c7157600080fd5b600160a060020a03331660009081526006602052604090205460ff1615610c9757600080fd5b600160a060020a03841660009081526006602052604090205460ff1615610cbd57600080fd5b600160a060020a038516600090815260026020526040902054610ce6908463ffffffff611a8116565b600160a060020a0380871660009081526002602090815260408083209490945560038152838220339093168252919091522054610d29908463ffffffff611a8116565b600160a060020a0380871660009081526003602090815260408083203385168452825280832094909455918716815260029091522054610d6f908463ffffffff6118cf16565b600160a060020a0380861660008181526002602052604090819020939093559190871690600080516020611bd08339815191529086905190815260200160405180910390a3506001949350505050565b601281565b60076020526000908152604090205481565b69010f0cf064dd5920000081565b600154600090819033600160a060020a03908116911614610e0457600080fd5b50506001543090600160a060020a0380831631911681156108fc0282604051600060405180830381858888f193505050501515610e4057600080fd5b5050565b600a81565b600080635b6008f0610e596111e4565b118015610e6b5750610e69611666565b155b1515610e7657600080fd5b600160a060020a03831660009081526005602052604090205460ff1615610e9c57600080fd5b600160a060020a03831660009081526007602052604081205411610ebf57600080fd5b5050600160a060020a03811660009081526008602090815260408083205460078352818420546002909352922054610efd908363ffffffff611a8116565b600160a060020a038416600090815260026020526040902055600a54610f29908363ffffffff611a8116565b600a55600160a060020a03831660008181526005602052604090819020805460ff1916600117905582156108fc0290839051600060405180830381858888f193505050501515610f7857600080fd5b600083600160a060020a0316600080516020611bd08339815191528460405190815260200160405180910390a382600160a060020a03167f73f04af9dcc582a923ec15d3eea990fe34adabfff2879e28d44572e01a54abb6828460405191825260208201526040908101905180910390a2505050565b662386f26fc1000081565b60015460009033600160a060020a0390811691161461101757600080fd5b600160a060020a03331660009081526002602052604090205482111561103c57600080fd5b5033600160a060020a0381166000908152600260205260409020546110619083611a81565b600160a060020a03821660009081526002602052604090205560095461108d908363ffffffff611a8116565b600955600a546110a3908363ffffffff611a8116565b600a55600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a03811660008181526006602052604090819020805460ff191690557f064f67e76df103eb3e142dac6110a06fcfc7a01ef2da651312b88eb6f0dd3d28905160405180910390a250565b610e408282611a93565b600581565b635afbd6f081565b600e5481565b60005b8281101561118c5761118484848381811061116e57fe5b90506020020135600160a060020a031683611a93565b600101611157565b50505050565b601481565b600160a060020a031660009081526002602052604090205490565b60005b8151811015610e40576111dc8282815181106111cd57fe5b90602001906020020151610e49565b6001016111b5565b4290565b68056bc75e2d6310000081565b635afbd72c81565b60408051908101604052600381527f56494b0000000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a0390811691161461125257600080fd5b60105460ff161561126257600080fd5b6010805460ff191660011790557f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc60405160405180910390a150600190565b60015433600160a060020a039081169116146112bc57600080fd5b635ae961f06112c96111e4565b106112d357600080fd5b600c8190557ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0038160405190815260200160405180910390a150565b60015460009033600160a060020a0390811691161461132c57600080fd5b60105460ff161561133c57600080fd5b815183511461134a57600080fd5b5060005b82518160ff1610156113dd57600b54828260ff168151811061136c57fe5b90602001906020020151111561138157600080fd5b6113bb838260ff168151811061139357fe5b90602001906020020151838360ff16815181106113ac57fe5b90602001906020020151611909565b50600954600a54106113d5576010805460ff191660011790555b60010161134e565b505050565b6000604060443610156113f157fe5b600160a060020a038416151561140657600080fd5b600160a060020a03331660009081526002602052604090205483111561142b57600080fd5b600160a060020a03331660009081526006602052604090205460ff161561145157600080fd5b600160a060020a03841660009081526006602052604090205460ff161561147757600080fd5b600160a060020a0333166000908152600260205260409020546114a0908463ffffffff611a8116565b600160a060020a0333811660009081526002602052604080822093909355908616815220546114d5908463ffffffff6118cf16565b600160a060020a038086166000818152600260205260409081902093909355913390911690600080516020611bd08339815191529086905190815260200160405180910390a35060019392505050565b600d5460005b8281101561118c5761154284848381811061116e57fe5b60010161152b565b60056020526000908152604090205460ff1681565b635b6008f081565b60105460ff1681565b60008281600160a060020a0382166370a082318560405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b15156115c257600080fd5b5af115156115cf57600080fd5b50505060405180519695505050505050565b600c5481565b60066020526000908152604090205460ff1681565b60086020526000908152604090205481565b60046020526000908152604090205460ff1681565b600b5481565b670de0b6b3a764000081565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600f5481565b600030600160a060020a0381163169010f0cf064dd5920000081101561168f5760009250611694565b600192505b505090565b6001546000908190819033600160a060020a039081169116146116bb57600080fd5b83915081600160a060020a03166370a082313060405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561170c57600080fd5b5af1151561171957600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561177f57600080fd5b5af1151561178c57600080fd5b505050604051805195945050505050565b600a5481565b60015433600160a060020a039081169116146117be57600080fd5b600160a060020a038116156117f6576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60015460009033600160a060020a0390811691161461181757600080fd5b60105460ff161561182757600080fd5b600b5482111561183657600080fd5b5060005b825181101561187a57600b5482111561185257600080fd5b61187183828151811061186157fe5b9060200190602002015183611909565b5060010161183a565b600954600a54106113dd576010805460ff19166001179055505050565b600d5481565b60005b8151811015610e40576118c78282815181106118b857fe5b906020019060200201516110e7565b6001016118a0565b6000828201838110156118de57fe5b9392505050565b600082820283158061190157508284828115156118fe57fe5b04145b15156118de57fe5b60105460009060ff161561191c57600080fd5b600a5461192f908363ffffffff6118cf16565b600a55600b54611945908363ffffffff611a8116565b600b55600160a060020a038316600090815260026020526040902054611971908363ffffffff6118cf16565b600160a060020a03808516600090815260026020908152604080832094909455339092168152600890915220546119ae908363ffffffff6118cf16565b600160a060020a0333166000908152600860209081526040808320939093556007905220546119e3903463ffffffff6118cf16565b600160a060020a0333811660009081526007602090815260408083209490945560069052829020805460ff191660011790558416907f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a779084905190815260200160405180910390a2600160a060020a0383166000600080516020611bd08339815191528460405190815260200160405180910390a350600192915050565b600082821115611a8d57fe5b50900390565b60008111611aa057600080fd5b600f54600e5410611ab057600080fd5b600160a060020a0382166000908152600460209081526040808320805460ff191660011790556002909152902054611aee908263ffffffff6118cf16565b600160a060020a038316600090815260026020526040902055600a54611b1a908263ffffffff6118cf16565b600a55600b54611b30908263ffffffff611a8116565b600b55600e54611b46908263ffffffff6118cf16565b600e55600160a060020a03821660008181526002602052604090819020547fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272918491905191825260208201526040908101905180910390a2600160a060020a0382166000600080516020611bd08339815191528360405190815260200160405180910390a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058206801827830295ee52fef79763d2d5f7113a6845ea8d06332cd4eacbcc2df20b70029

Deployed Bytecode

0x6060604052600436106102585763ffffffff60e060020a600035041663023bb74d811461026257806305502a621461028757806306fdde031461029a578063095ea7b31461032457806318160ddd1461035a57806323b872dd1461036d578063313ce56714610395578063347e26c0146103a857806336d95f56146103c75780633ccfd60b146103da5780633d20d9b0146103ed5780633e8786a11461040057806340650c911461041f57806342966c68146104325780634a387bef146104485780634a63464d146104675780635c72de09146104895780635ef794341461049c578063615ef639146104af57806367220fd7146104c25780637024ce7b146104e457806370a08231146104f7578063799057531461051657806381aea6681461056557806394d95f8f1461057857806395cc2e8b1461058b57806395d89b411461059e5780639b1cbccc146105b15780639ea407be146105c4578063a8c310d5146105da578063a9059cbb14610669578063b3e99b771461068b578063b557478a146106a9578063c0c133a8146106c8578063c108d542146106db578063c489744b146106ee578063cbdd69b514610713578063cbf9fe5f14610726578063ce916d8514610745578063d0febe4c14610258578063d1b6dd3014610764578063d8a5436014610783578063dbaaa2dd14610796578063dd62ed3e146107a9578063e09413ba146107ce578063e3fe9740146107e1578063e58fc54c146107f4578063efca2eed14610813578063f2fde38b14610826578063f3e4877c14610845578063f5ab865a14610896578063fcc1cc9b146108a9575b6102606108f8565b005b341561026d57600080fd5b610275610aff565b60405190815260200160405180910390f35b341561029257600080fd5b610275610b07565b34156102a557600080fd5b6102ad610b0c565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102e95780820151838201526020016102d1565b50505050905090810190601f1680156103165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561032f57600080fd5b610346600160a060020a0360043516602435610b43565b604051901515815260200160405180910390f35b341561036557600080fd5b610275610bef565b341561037857600080fd5b610346600160a060020a0360043581169060243516604435610bf5565b34156103a057600080fd5b610275610dbf565b34156103b357600080fd5b610275600160a060020a0360043516610dc4565b34156103d257600080fd5b610275610dd6565b34156103e557600080fd5b610260610de4565b34156103f857600080fd5b610275610e44565b341561040b57600080fd5b610260600160a060020a0360043516610e49565b341561042a57600080fd5b610275610fee565b341561043d57600080fd5b610260600435610ff9565b341561045357600080fd5b610260600160a060020a03600435166110e7565b341561047257600080fd5b610260600160a060020a0360043516602435611137565b341561049457600080fd5b610275611141565b34156104a757600080fd5b610275611146565b34156104ba57600080fd5b61027561114e565b34156104cd57600080fd5b610260602460048035828101929101359035611154565b34156104ef57600080fd5b610275611192565b341561050257600080fd5b610275600160a060020a0360043516611197565b341561052157600080fd5b61026060046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496506111b295505050505050565b341561057057600080fd5b6102756111e4565b341561058357600080fd5b6102756111e8565b341561059657600080fd5b6102756111f5565b34156105a957600080fd5b6102ad6111fd565b34156105bc57600080fd5b610346611234565b34156105cf57600080fd5b6102606004356112a1565b34156105e557600080fd5b61026060046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061130e95505050505050565b341561067457600080fd5b610346600160a060020a03600435166024356113e2565b341561069657600080fd5b6102606004803560248101910135611525565b34156106b457600080fd5b610346600160a060020a036004351661154a565b34156106d357600080fd5b61027561155f565b34156106e657600080fd5b610346611567565b34156106f957600080fd5b610275600160a060020a0360043581169060243516611570565b341561071e57600080fd5b6102756115e1565b341561073157600080fd5b610346600160a060020a03600435166115e7565b341561075057600080fd5b610275600160a060020a03600435166115fc565b341561076f57600080fd5b610346600160a060020a036004351661160e565b341561078e57600080fd5b610275611623565b34156107a157600080fd5b610275611629565b34156107b457600080fd5b610275600160a060020a0360043581169060243516611635565b34156107d957600080fd5b610275611660565b34156107ec57600080fd5b610346611666565b34156107ff57600080fd5b610346600160a060020a0360043516611699565b341561081e57600080fd5b61027561179d565b341561083157600080fd5b610260600160a060020a03600435166117a3565b341561085057600080fd5b610260600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965050933593506117f992505050565b34156108a157600080fd5b610275611897565b34156108b457600080fd5b610260600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965061189d95505050505050565b601054600090819081908190819060ff161561091357600080fd5b61091b6111e4565b945060009350839250829150662386f26fc1000034101561093b57600080fd5b600160a060020a03331660009081526007602052604090205468056bc75e2d631000009061096f903463ffffffff6118cf16565b111561097a57600080fd5b635ae961f0851180156109905750635afbd6f085105b1561099a57600193505b635afbd72c851180156109b05750635b6008f085105b156109ba57600192505b83806109c35750825b15156109ce57600080fd5b83156109e957670de0b6b3a76400003410156109e957600080fd5b50600c543390670de0b6b3a764000090610a09903463ffffffff6118e516565b811515610a1257fe5b0491508315610a3f576064610a2e83608263ffffffff6118e516565b811515610a3757fe5b049150610aa9565b635b0e4c2c851015610a5e576064610a2e83607863ffffffff6118e516565b635b20c12c851015610a7d576064610a2e83606e63ffffffff6118e516565b635b33362c851015610aa9576064610a9c83606963ffffffff6118e516565b811515610aa557fe5b0491505b600b54600a54610abf908463ffffffff6118cf16565b1115610aca57600080fd5b6000821115610adf57610add8183611909565b505b600954600a5410610af8576010805460ff191660011790555b5050505050565b635ae961f081565b601e81565b60408051908101604052600a81527f56696b6b79546f6b656e00000000000000000000000000000000000000000000602082015281565b60008115801590610b785750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b15610b8557506000610be9565b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60095481565b600060606064361015610c0457fe5b600160a060020a0384161515610c1957600080fd5b600160a060020a038516600090815260026020526040902054831115610c3e57600080fd5b600160a060020a0380861660009081526003602090815260408083203390941683529290522054831115610c7157600080fd5b600160a060020a03331660009081526006602052604090205460ff1615610c9757600080fd5b600160a060020a03841660009081526006602052604090205460ff1615610cbd57600080fd5b600160a060020a038516600090815260026020526040902054610ce6908463ffffffff611a8116565b600160a060020a0380871660009081526002602090815260408083209490945560038152838220339093168252919091522054610d29908463ffffffff611a8116565b600160a060020a0380871660009081526003602090815260408083203385168452825280832094909455918716815260029091522054610d6f908463ffffffff6118cf16565b600160a060020a0380861660008181526002602052604090819020939093559190871690600080516020611bd08339815191529086905190815260200160405180910390a3506001949350505050565b601281565b60076020526000908152604090205481565b69010f0cf064dd5920000081565b600154600090819033600160a060020a03908116911614610e0457600080fd5b50506001543090600160a060020a0380831631911681156108fc0282604051600060405180830381858888f193505050501515610e4057600080fd5b5050565b600a81565b600080635b6008f0610e596111e4565b118015610e6b5750610e69611666565b155b1515610e7657600080fd5b600160a060020a03831660009081526005602052604090205460ff1615610e9c57600080fd5b600160a060020a03831660009081526007602052604081205411610ebf57600080fd5b5050600160a060020a03811660009081526008602090815260408083205460078352818420546002909352922054610efd908363ffffffff611a8116565b600160a060020a038416600090815260026020526040902055600a54610f29908363ffffffff611a8116565b600a55600160a060020a03831660008181526005602052604090819020805460ff1916600117905582156108fc0290839051600060405180830381858888f193505050501515610f7857600080fd5b600083600160a060020a0316600080516020611bd08339815191528460405190815260200160405180910390a382600160a060020a03167f73f04af9dcc582a923ec15d3eea990fe34adabfff2879e28d44572e01a54abb6828460405191825260208201526040908101905180910390a2505050565b662386f26fc1000081565b60015460009033600160a060020a0390811691161461101757600080fd5b600160a060020a03331660009081526002602052604090205482111561103c57600080fd5b5033600160a060020a0381166000908152600260205260409020546110619083611a81565b600160a060020a03821660009081526002602052604090205560095461108d908363ffffffff611a8116565b600955600a546110a3908363ffffffff611a8116565b600a55600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a03811660008181526006602052604090819020805460ff191690557f064f67e76df103eb3e142dac6110a06fcfc7a01ef2da651312b88eb6f0dd3d28905160405180910390a250565b610e408282611a93565b600581565b635afbd6f081565b600e5481565b60005b8281101561118c5761118484848381811061116e57fe5b90506020020135600160a060020a031683611a93565b600101611157565b50505050565b601481565b600160a060020a031660009081526002602052604090205490565b60005b8151811015610e40576111dc8282815181106111cd57fe5b90602001906020020151610e49565b6001016111b5565b4290565b68056bc75e2d6310000081565b635afbd72c81565b60408051908101604052600381527f56494b0000000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a0390811691161461125257600080fd5b60105460ff161561126257600080fd5b6010805460ff191660011790557f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc60405160405180910390a150600190565b60015433600160a060020a039081169116146112bc57600080fd5b635ae961f06112c96111e4565b106112d357600080fd5b600c8190557ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0038160405190815260200160405180910390a150565b60015460009033600160a060020a0390811691161461132c57600080fd5b60105460ff161561133c57600080fd5b815183511461134a57600080fd5b5060005b82518160ff1610156113dd57600b54828260ff168151811061136c57fe5b90602001906020020151111561138157600080fd5b6113bb838260ff168151811061139357fe5b90602001906020020151838360ff16815181106113ac57fe5b90602001906020020151611909565b50600954600a54106113d5576010805460ff191660011790555b60010161134e565b505050565b6000604060443610156113f157fe5b600160a060020a038416151561140657600080fd5b600160a060020a03331660009081526002602052604090205483111561142b57600080fd5b600160a060020a03331660009081526006602052604090205460ff161561145157600080fd5b600160a060020a03841660009081526006602052604090205460ff161561147757600080fd5b600160a060020a0333166000908152600260205260409020546114a0908463ffffffff611a8116565b600160a060020a0333811660009081526002602052604080822093909355908616815220546114d5908463ffffffff6118cf16565b600160a060020a038086166000818152600260205260409081902093909355913390911690600080516020611bd08339815191529086905190815260200160405180910390a35060019392505050565b600d5460005b8281101561118c5761154284848381811061116e57fe5b60010161152b565b60056020526000908152604090205460ff1681565b635b6008f081565b60105460ff1681565b60008281600160a060020a0382166370a082318560405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b15156115c257600080fd5b5af115156115cf57600080fd5b50505060405180519695505050505050565b600c5481565b60066020526000908152604090205460ff1681565b60086020526000908152604090205481565b60046020526000908152604090205460ff1681565b600b5481565b670de0b6b3a764000081565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600f5481565b600030600160a060020a0381163169010f0cf064dd5920000081101561168f5760009250611694565b600192505b505090565b6001546000908190819033600160a060020a039081169116146116bb57600080fd5b83915081600160a060020a03166370a082313060405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561170c57600080fd5b5af1151561171957600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561177f57600080fd5b5af1151561178c57600080fd5b505050604051805195945050505050565b600a5481565b60015433600160a060020a039081169116146117be57600080fd5b600160a060020a038116156117f6576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60015460009033600160a060020a0390811691161461181757600080fd5b60105460ff161561182757600080fd5b600b5482111561183657600080fd5b5060005b825181101561187a57600b5482111561185257600080fd5b61187183828151811061186157fe5b9060200190602002015183611909565b5060010161183a565b600954600a54106113dd576010805460ff19166001179055505050565b600d5481565b60005b8151811015610e40576118c78282815181106118b857fe5b906020019060200201516110e7565b6001016118a0565b6000828201838110156118de57fe5b9392505050565b600082820283158061190157508284828115156118fe57fe5b04145b15156118de57fe5b60105460009060ff161561191c57600080fd5b600a5461192f908363ffffffff6118cf16565b600a55600b54611945908363ffffffff611a8116565b600b55600160a060020a038316600090815260026020526040902054611971908363ffffffff6118cf16565b600160a060020a03808516600090815260026020908152604080832094909455339092168152600890915220546119ae908363ffffffff6118cf16565b600160a060020a0333166000908152600860209081526040808320939093556007905220546119e3903463ffffffff6118cf16565b600160a060020a0333811660009081526007602090815260408083209490945560069052829020805460ff191660011790558416907f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a779084905190815260200160405180910390a2600160a060020a0383166000600080516020611bd08339815191528460405190815260200160405180910390a350600192915050565b600082821115611a8d57fe5b50900390565b60008111611aa057600080fd5b600f54600e5410611ab057600080fd5b600160a060020a0382166000908152600460209081526040808320805460ff191660011790556002909152902054611aee908263ffffffff6118cf16565b600160a060020a038316600090815260026020526040902055600a54611b1a908263ffffffff6118cf16565b600a55600b54611b30908263ffffffff611a8116565b600b55600e54611b46908263ffffffff6118cf16565b600e55600160a060020a03821660008181526002602052604090819020547fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272918491905191825260208201526040908101905180910390a2600160a060020a0382166000600080516020611bd08339815191528360405190815260200160405180910390a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058206801827830295ee52fef79763d2d5f7113a6845ea8d06332cd4eacbcc2df20b70029

Swarm Source

bzzr://6801827830295ee52fef79763d2d5f7113a6845ea8d06332cd4eacbcc2df20b7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.