ETH Price: $2,407.13 (-0.46%)
Gas: 1.45 Gwei

Token

G-Mbel (GMBEL)
 

Overview

Max Total Supply

2,000,000,000,000 GMBEL

Holders

991

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
808,000 GMBEL

Value
$0.00
0x6f34c290d095d49c4eb9fb2e4b5da7bb7ffeefd6
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:
GMBEL

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-07-11
*/

pragma solidity ^0.4.18;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

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

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

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

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

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

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

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

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

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

    string public constant name = "G-Mbel";
    string public constant symbol = "GMBEL";
    uint public constant decimals = 18;
    
    uint256 public totalSupply = 7000000000000e18;
    uint256 public totalDistributed;    
    uint256 public constant MIN_CONTRIBUTION = 1 ether / 10000; // 0.0001 Ether
    uint256 public tokensPerEth = 100000000e18;
    uint256 public initialBonus = 1000000e18;

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

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

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

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

        require( _amount > 0 );      

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

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

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

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

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

    function updateInitialBonus(uint _initialBonus) public onlyOwner {        
        initialBonus = _initialBonus;
        emit InitialBonusUpdated(_initialBonus);
    }
           
    function () external payable {
        getTokens();
     }
    
    function getTokens() payable canDistr  public {
        uint256 tokens = 0;
        uint256 bonus = 0;

        require( msg.value >= MIN_CONTRIBUTION );
        require( msg.value > 0 );

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

        if (Claimed[investor] == false) {
            distr(investor, bonus);
            Claimed[investor] = true;
        }else{
            distr(investor, tokens);
        }

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
    }
    
    function balanceOf(address _owner) constant public returns (uint256) {
        return balances[_owner];
    }

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

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

        require(_to != address(0));
        require(_amount <= balances[_from]);
        require(_amount <= allowed[_from][msg.sender]);
        
        balances[_from] = balances[_from].sub(_amount);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(_from, _to, _amount);
        return true;
    }
    
    function approve(address _spender, uint256 _value) public returns (bool success) {
        if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; }
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
    
    function allowance(address _owner, address _spender) constant public returns (uint256) {
        return allowed[_owner][_spender];
    }
    
    function getTokenBalance(address tokenAddress, address who) constant public returns (uint){
        ForeignToken t = ForeignToken(tokenAddress);
        uint bal = t.balanceOf(who);
        return bal;
    }
    
    function 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 withdrawForeignTokens(address _tokenContract) onlyOwner public returns (bool) {
        ForeignToken token = ForeignToken(_tokenContract);
        uint256 amount = token.balanceOf(address(this));
        return token.transfer(owner, amount);
    }
}

Contract Security Audit

Contract ABI

[{"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":false,"inputs":[],"name":"withdraw","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":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_participant","type":"address"},{"name":"_amount","type":"uint256"}],"name":"DistributeAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokensPerEth","type":"uint256"}],"name":"updateTokensPerEth","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"Claimed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"distributionFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"who","type":"address"}],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensPerEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenContract","type":"address"}],"name":"withdrawForeignTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_initialBonus","type":"uint256"}],"name":"updateInitialBonus","outputs":[],"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":"DistributeAirdropMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialBonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":false,"name":"_initialBonus","type":"uint256"}],"name":"InitialBonusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

606060405260018054600160a060020a03191633600160a060020a03161790556c585a3849b1ed328167c00000006005556a52b7d2dcc80cd2e400000060075569d3c21bcecceda10000006008556009805460ff19169055341561006257600080fd5b6110c8806100716000396000f30060606040526004361061013a5763ffffffff60e060020a60003504166306fdde038114610144578063095ea7b3146101ce57806318160ddd1461020457806323b872dd14610229578063313ce567146102515780633ccfd60b1461026457806340650c911461027757806342966c681461028a57806370a08231146102a05780637809231c146102bf57806395d89b41146102e15780639b1cbccc146102f45780639ea407be14610307578063a9059cbb1461031d578063aa6ca8081461013a578063b449c24d1461033f578063c108d5421461035e578063c489744b14610371578063cbdd69b514610396578063dd62ed3e146103a9578063e58fc54c146103ce578063e7810318146103ed578063efca2eed14610403578063f2fde38b14610416578063f3ccb40114610435578063fb0d7e4314610457575b61014261046a565b005b341561014f57600080fd5b61015761055d565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019357808201518382015260200161017b565b50505050905090810190601f1680156101c05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101d957600080fd5b6101f0600160a060020a0360043516602435610594565b604051901515815260200160405180910390f35b341561020f57600080fd5b610217610640565b60405190815260200160405180910390f35b341561023457600080fd5b6101f0600160a060020a0360043581169060243516604435610646565b341561025c57600080fd5b6102176107c4565b341561026f57600080fd5b6101426107c9565b341561028257600080fd5b610217610829565b341561029557600080fd5b610142600435610833565b34156102ab57600080fd5b610217600160a060020a0360043516610921565b34156102ca57600080fd5b610142600160a060020a036004351660243561093c565b34156102ec57600080fd5b610157610961565b34156102ff57600080fd5b6101f0610998565b341561031257600080fd5b610142600435610a05565b341561032857600080fd5b6101f0600160a060020a0360043516602435610a5b565b341561034a57600080fd5b6101f0600160a060020a0360043516610b52565b341561036957600080fd5b6101f0610b67565b341561037c57600080fd5b610217600160a060020a0360043581169060243516610b70565b34156103a157600080fd5b610217610be1565b34156103b457600080fd5b610217600160a060020a0360043581169060243516610be7565b34156103d957600080fd5b6101f0600160a060020a0360043516610c12565b34156103f857600080fd5b610142600435610d16565b341561040e57600080fd5b610217610d6c565b341561042157600080fd5b610142600160a060020a0360043516610d72565b341561044057600080fd5b610142602460048035828101929101359035610dc8565b341561046257600080fd5b610217610e25565b6009546000908190819060ff161561048157600080fd5b60009250829150655af3107a400034101561049b57600080fd5b600034116104a857600080fd5b600754670de0b6b3a7640000906104c5903463ffffffff610e2b16565b8115156104ce57fe5b60085433600160a060020a03811660009081526004602052604090205493909204955085019350915060ff1615156105335761050a8183610e54565b50600160a060020a0381166000908152600460205260409020805460ff1916600117905561053f565b61053d8184610e54565b505b60055460065410610558576009805460ff191660011790555b505050565b60408051908101604052600681527f472d4d62656c0000000000000000000000000000000000000000000000000000602082015281565b600081158015906105c95750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b156105d65750600061063a565b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60055481565b60006060606436101561065557fe5b600160a060020a038416151561066a57600080fd5b600160a060020a03851660009081526002602052604090205483111561068f57600080fd5b600160a060020a03808616600090815260036020908152604080832033909416835292905220548311156106c257600080fd5b600160a060020a0385166000908152600260205260409020546106eb908463ffffffff610f2e16565b600160a060020a038087166000908152600260209081526040808320949094556003815283822033909316825291909152205461072e908463ffffffff610f2e16565b600160a060020a0380871660009081526003602090815260408083203385168452825280832094909455918716815260029091522054610774908463ffffffff610f4016565b600160a060020a038086166000818152600260205260409081902093909355919087169060008051602061107d8339815191529086905190815260200160405180910390a3506001949350505050565b601281565b600154600090819033600160a060020a039081169116146107e957600080fd5b50506001543090600160a060020a0380831631911681156108fc0282604051600060405180830381858888f19350505050151561082557600080fd5b5050565b655af3107a400081565b60015460009033600160a060020a0390811691161461085157600080fd5b600160a060020a03331660009081526002602052604090205482111561087657600080fd5b5033600160a060020a03811660009081526002602052604090205461089b9083610f2e565b600160a060020a0382166000908152600260205260409020556005546108c7908363ffffffff610f2e16565b6005556006546108dd908363ffffffff610f2e16565b600655600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a031660009081526002602052604090205490565b60015433600160a060020a0390811691161461095757600080fd5b6108258282610f4d565b60408051908101604052600581527f474d42454c000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a039081169116146109b657600080fd5b60095460ff16156109c657600080fd5b6009805460ff191660011790557f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc60405160405180910390a150600190565b60015433600160a060020a03908116911614610a2057600080fd5b60078190557ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0038160405190815260200160405180910390a150565b600060406044361015610a6a57fe5b600160a060020a0384161515610a7f57600080fd5b600160a060020a033316600090815260026020526040902054831115610aa457600080fd5b600160a060020a033316600090815260026020526040902054610acd908463ffffffff610f2e16565b600160a060020a033381166000908152600260205260408082209390935590861681522054610b02908463ffffffff610f4016565b600160a060020a03808616600081815260026020526040908190209390935591339091169060008051602061107d8339815191529086905190815260200160405180910390a35060019392505050565b60046020526000908152604090205460ff1681565b60095460ff1681565b60008281600160a060020a0382166370a082318560405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610bc257600080fd5b5af11515610bcf57600080fd5b50505060405180519695505050505050565b60075481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b6001546000908190819033600160a060020a03908116911614610c3457600080fd5b83915081600160a060020a03166370a082313060405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610c8557600080fd5b5af11515610c9257600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610cf857600080fd5b5af11515610d0557600080fd5b505050604051805195945050505050565b60015433600160a060020a03908116911614610d3157600080fd5b60088190557fc8c3020944c66bb9506eaeabbf32592e34d07a9e35dc19ce301e78144020619e8160405190815260200160405180910390a150565b60065481565b60015433600160a060020a03908116911614610d8d57600080fd5b600160a060020a03811615610dc5576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60015460009033600160a060020a03908116911614610de657600080fd5b5060005b82811015610e1f57610e17848483818110610e0157fe5b90506020020135600160a060020a031683610f4d565b600101610dea565b50505050565b60085481565b6000821515610e3c5750600061063a565b50818102818382811515610e4c57fe5b041461063a57fe5b60095460009060ff1615610e6757600080fd5b600654610e7a908363ffffffff610f4016565b600655600160a060020a038316600090815260026020526040902054610ea6908363ffffffff610f4016565b600160a060020a0384166000818152600260205260409081902092909255907f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a779084905190815260200160405180910390a2600160a060020a038316600060008051602061107d8339815191528460405190815260200160405180910390a350600192915050565b600082821115610f3a57fe5b50900390565b8181018281101561063a57fe5b60015433600160a060020a03908116911614610f6857600080fd5b60008111610f7557600080fd5b60055460065410610f8557600080fd5b600160a060020a038216600090815260026020526040902054610fae908263ffffffff610f4016565b600160a060020a038316600090815260026020526040902055600654610fda908263ffffffff610f4016565b60068190556005549010610ff6576009805460ff191660011790555b600160a060020a03821660008181526002602052604090819020547fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272918491905191825260208201526040908101905180910390a2600160a060020a038216600060008051602061107d8339815191528360405190815260200160405180910390a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058208425d020fd16d7c30bf3f82a7e47402b5cc80f2b32ca08b709df0d7c7c9a26c10029

Deployed Bytecode

0x60606040526004361061013a5763ffffffff60e060020a60003504166306fdde038114610144578063095ea7b3146101ce57806318160ddd1461020457806323b872dd14610229578063313ce567146102515780633ccfd60b1461026457806340650c911461027757806342966c681461028a57806370a08231146102a05780637809231c146102bf57806395d89b41146102e15780639b1cbccc146102f45780639ea407be14610307578063a9059cbb1461031d578063aa6ca8081461013a578063b449c24d1461033f578063c108d5421461035e578063c489744b14610371578063cbdd69b514610396578063dd62ed3e146103a9578063e58fc54c146103ce578063e7810318146103ed578063efca2eed14610403578063f2fde38b14610416578063f3ccb40114610435578063fb0d7e4314610457575b61014261046a565b005b341561014f57600080fd5b61015761055d565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019357808201518382015260200161017b565b50505050905090810190601f1680156101c05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101d957600080fd5b6101f0600160a060020a0360043516602435610594565b604051901515815260200160405180910390f35b341561020f57600080fd5b610217610640565b60405190815260200160405180910390f35b341561023457600080fd5b6101f0600160a060020a0360043581169060243516604435610646565b341561025c57600080fd5b6102176107c4565b341561026f57600080fd5b6101426107c9565b341561028257600080fd5b610217610829565b341561029557600080fd5b610142600435610833565b34156102ab57600080fd5b610217600160a060020a0360043516610921565b34156102ca57600080fd5b610142600160a060020a036004351660243561093c565b34156102ec57600080fd5b610157610961565b34156102ff57600080fd5b6101f0610998565b341561031257600080fd5b610142600435610a05565b341561032857600080fd5b6101f0600160a060020a0360043516602435610a5b565b341561034a57600080fd5b6101f0600160a060020a0360043516610b52565b341561036957600080fd5b6101f0610b67565b341561037c57600080fd5b610217600160a060020a0360043581169060243516610b70565b34156103a157600080fd5b610217610be1565b34156103b457600080fd5b610217600160a060020a0360043581169060243516610be7565b34156103d957600080fd5b6101f0600160a060020a0360043516610c12565b34156103f857600080fd5b610142600435610d16565b341561040e57600080fd5b610217610d6c565b341561042157600080fd5b610142600160a060020a0360043516610d72565b341561044057600080fd5b610142602460048035828101929101359035610dc8565b341561046257600080fd5b610217610e25565b6009546000908190819060ff161561048157600080fd5b60009250829150655af3107a400034101561049b57600080fd5b600034116104a857600080fd5b600754670de0b6b3a7640000906104c5903463ffffffff610e2b16565b8115156104ce57fe5b60085433600160a060020a03811660009081526004602052604090205493909204955085019350915060ff1615156105335761050a8183610e54565b50600160a060020a0381166000908152600460205260409020805460ff1916600117905561053f565b61053d8184610e54565b505b60055460065410610558576009805460ff191660011790555b505050565b60408051908101604052600681527f472d4d62656c0000000000000000000000000000000000000000000000000000602082015281565b600081158015906105c95750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b156105d65750600061063a565b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60055481565b60006060606436101561065557fe5b600160a060020a038416151561066a57600080fd5b600160a060020a03851660009081526002602052604090205483111561068f57600080fd5b600160a060020a03808616600090815260036020908152604080832033909416835292905220548311156106c257600080fd5b600160a060020a0385166000908152600260205260409020546106eb908463ffffffff610f2e16565b600160a060020a038087166000908152600260209081526040808320949094556003815283822033909316825291909152205461072e908463ffffffff610f2e16565b600160a060020a0380871660009081526003602090815260408083203385168452825280832094909455918716815260029091522054610774908463ffffffff610f4016565b600160a060020a038086166000818152600260205260409081902093909355919087169060008051602061107d8339815191529086905190815260200160405180910390a3506001949350505050565b601281565b600154600090819033600160a060020a039081169116146107e957600080fd5b50506001543090600160a060020a0380831631911681156108fc0282604051600060405180830381858888f19350505050151561082557600080fd5b5050565b655af3107a400081565b60015460009033600160a060020a0390811691161461085157600080fd5b600160a060020a03331660009081526002602052604090205482111561087657600080fd5b5033600160a060020a03811660009081526002602052604090205461089b9083610f2e565b600160a060020a0382166000908152600260205260409020556005546108c7908363ffffffff610f2e16565b6005556006546108dd908363ffffffff610f2e16565b600655600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a031660009081526002602052604090205490565b60015433600160a060020a0390811691161461095757600080fd5b6108258282610f4d565b60408051908101604052600581527f474d42454c000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a039081169116146109b657600080fd5b60095460ff16156109c657600080fd5b6009805460ff191660011790557f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc60405160405180910390a150600190565b60015433600160a060020a03908116911614610a2057600080fd5b60078190557ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0038160405190815260200160405180910390a150565b600060406044361015610a6a57fe5b600160a060020a0384161515610a7f57600080fd5b600160a060020a033316600090815260026020526040902054831115610aa457600080fd5b600160a060020a033316600090815260026020526040902054610acd908463ffffffff610f2e16565b600160a060020a033381166000908152600260205260408082209390935590861681522054610b02908463ffffffff610f4016565b600160a060020a03808616600081815260026020526040908190209390935591339091169060008051602061107d8339815191529086905190815260200160405180910390a35060019392505050565b60046020526000908152604090205460ff1681565b60095460ff1681565b60008281600160a060020a0382166370a082318560405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610bc257600080fd5b5af11515610bcf57600080fd5b50505060405180519695505050505050565b60075481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b6001546000908190819033600160a060020a03908116911614610c3457600080fd5b83915081600160a060020a03166370a082313060405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610c8557600080fd5b5af11515610c9257600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610cf857600080fd5b5af11515610d0557600080fd5b505050604051805195945050505050565b60015433600160a060020a03908116911614610d3157600080fd5b60088190557fc8c3020944c66bb9506eaeabbf32592e34d07a9e35dc19ce301e78144020619e8160405190815260200160405180910390a150565b60065481565b60015433600160a060020a03908116911614610d8d57600080fd5b600160a060020a03811615610dc5576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60015460009033600160a060020a03908116911614610de657600080fd5b5060005b82811015610e1f57610e17848483818110610e0157fe5b90506020020135600160a060020a031683610f4d565b600101610dea565b50505050565b60085481565b6000821515610e3c5750600061063a565b50818102818382811515610e4c57fe5b041461063a57fe5b60095460009060ff1615610e6757600080fd5b600654610e7a908363ffffffff610f4016565b600655600160a060020a038316600090815260026020526040902054610ea6908363ffffffff610f4016565b600160a060020a0384166000818152600260205260409081902092909255907f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a779084905190815260200160405180910390a2600160a060020a038316600060008051602061107d8339815191528460405190815260200160405180910390a350600192915050565b600082821115610f3a57fe5b50900390565b8181018281101561063a57fe5b60015433600160a060020a03908116911614610f6857600080fd5b60008111610f7557600080fd5b60055460065410610f8557600080fd5b600160a060020a038216600090815260026020526040902054610fae908263ffffffff610f4016565b600160a060020a038316600090815260026020526040902055600654610fda908263ffffffff610f4016565b60068190556005549010610ff6576009805460ff191660011790555b600160a060020a03821660008181526002602052604090819020547fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272918491905191825260208201526040908101905180910390a2600160a060020a038216600060008051602061107d8339815191528360405190815260200160405180910390a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058208425d020fd16d7c30bf3f82a7e47402b5cc80f2b32ca08b709df0d7c7c9a26c10029

Swarm Source

bzzr://8425d020fd16d7c30bf3f82a7e47402b5cc80f2b32ca08b709df0d7c7c9a26c1
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.