ETH Price: $3,156.13 (+2.76%)
Gas: 1 Gwei

Token

GOFCoin (GOF)
 

Overview

Max Total Supply

100,000,000 GOF

Holders

25,337

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
500 GOF

Value
$0.00
0xc2fc977330393540d905d6f375675be05415dcd5
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:
GOFCoin

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-05-16
*/

pragma solidity ^0.4.18;

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 ContractReceiver {
    function tokenFallback(address _from, uint _value, bytes _data) public returns (bool);
}

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

contract ERC223 is ERC223Basic {
    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) public returns (bool);
    function totalSupply() constant public returns (uint256 supply);
    function balanceOf(address _owner) constant public returns (uint256 balance);
}

contract GOFCoin is ERC223 {
    
    using SafeMath for uint256;
    address owner = msg.sender;

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

    string public constant name = "GOFCoin";
    string public constant symbol = "GOF";
    uint public constant decimals = 8;
    
    uint256 public totalSupply;

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    event LOG_Transfer(address indexed from, address indexed to, uint256 value, bytes indexed data);

    
    event Burn(address indexed burner, uint256 value);
    event Mint(address indexed minter, uint256 value);

    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    function GOFCoin (uint256 _initialAmount) public {
        require(_initialAmount != 0);
        owner = msg.sender;
        totalSupply = _initialAmount;
        balances[msg.sender] = totalSupply;
    }
    
    function () external payable {
        
    }
    
    function transferOwnership(address newOwner) onlyOwner public {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

    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, bytes _data, string _custom_fallback) onlyPayloadSize(2 * 32) public returns (bool success) {
        if(isContract(_to)) {
            require(balanceOf(msg.sender) >= _amount);
            balances[msg.sender] = balanceOf(msg.sender).sub(_amount);
            balances[_to] = balanceOf(_to).add(_amount);
            ContractReceiver receiver = ContractReceiver(_to);
            require(receiver.call.value(0)(bytes4(keccak256(_custom_fallback)), msg.sender, _amount, _data));  

            Transfer(msg.sender, _to, _amount);
            LOG_Transfer(msg.sender, _to, _amount, _data);
            return true;
        }
        else {
            return transferToAddress(_to, _amount, _data);
        }
    }


    function transfer(address _to, uint256 _amount, bytes _data) onlyPayloadSize(2 * 32) public returns (bool success) {

        require(_to != address(0));

        if(isContract(_to)) {
            return transferToContract(_to, _amount, _data);
        }
        else {
            return transferToAddress(_to, _amount, _data);
        }
    }

    function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {
    
        require(_to != address(0));
        
        bytes memory empty;
        
        if(isContract(_to)) {
            return transferToContract(_to, _amount, empty);
        }
        else {
            return transferToAddress(_to, _amount, empty);
        }
    }
    
    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]);
        
        bytes memory empty;
        
        balances[_from] = balances[_from].sub(_amount);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        Transfer(_from, _to, _amount);
        LOG_Transfer(_from, _to, _amount, empty);
        return true;
    }
    
    function approve(address _spender, uint256 _value) public returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        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 {
        uint256 etherBalance = this.balance;
        owner.transfer(etherBalance);
    }
    
    function mint(uint256 _value) onlyOwner public {

        address minter = msg.sender;
        balances[minter] = balances[minter].add(_value);
        totalSupply = totalSupply.add(_value);
        Mint(minter, _value);
    }
    
    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);
        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);
    }
    
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) payable public returns (bool) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        
        require(_spender.call(bytes4(bytes32(keccak256("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData));
        return true;
    }
    
    function isContract(address _addr) private constant returns (bool) {
        uint length;
        assembly {
            length := extcodesize(_addr)
        }
        return (length>0);
    }

    function transferToAddress(address _to, uint _value, bytes _data) private returns (bool) {
        require(balanceOf(msg.sender) >= _value);
        balances[msg.sender] =  balanceOf(msg.sender).sub(_value);
        balances[_to] = balanceOf(_to).add(_value);
        Transfer(msg.sender, _to, _value);
        LOG_Transfer(msg.sender, _to, _value, _data);
        return true;
    }

    function transferToContract(address _to, uint _value, bytes _data) private returns (bool) {
        require(balanceOf(msg.sender) >= _value);
        balances[msg.sender] = balanceOf(msg.sender).sub(_value);
        balances[_to] = balanceOf(_to).add(_value);
        ContractReceiver receiver = ContractReceiver(_to);
        receiver.tokenFallback(msg.sender, _value, _data);
        Transfer(msg.sender, _to, _value);
        LOG_Transfer(msg.sender, _to, _value, _data);
        return true;
    }

}

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":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":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"mint","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":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_data","type":"bytes"},{"name":"_custom_fallback","type":"string"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_initialAmount","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"data","type":"bytes"}],"name":"LOG_Transfer","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":"minter","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Mint","type":"event"}]

606060405260018054600160a060020a03191633600160a060020a0316179055341561002a57600080fd5b60405160208061151c8339810160405280805191505080151561004c57600080fd5b60018054600160a060020a033316600160a060020a03199091168117909155600482905560009081526002602052604090205561148e8061008e6000396000f3006060604052600436106100e25763ffffffff60e060020a60003504166306fdde0381146100e4578063095ea7b31461016e57806318160ddd146101a457806323b872dd146101c9578063313ce567146101f15780633ccfd60b1461020457806342966c681461021757806370a082311461022d57806395d89b411461024c578063a0712d681461025f578063a9059cbb14610275578063be45fd6214610297578063c489744b146102fc578063cae9ca5114610321578063dd62ed3e1461037b578063e58fc54c146103a0578063f2fde38b146103bf578063f6368f8a146103de575b005b34156100ef57600080fd5b6100f7610485565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561013357808201518382015260200161011b565b50505050905090810190601f1680156101605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017957600080fd5b610190600160a060020a03600435166024356104bc565b604051901515815260200160405180910390f35b34156101af57600080fd5b6101b7610528565b60405190815260200160405180910390f35b34156101d457600080fd5b610190600160a060020a036004358116906024351660443561052e565b34156101fc57600080fd5b6101b7610746565b341561020f57600080fd5b6100e261074b565b341561022257600080fd5b6100e26004356107a5565b341561023857600080fd5b6101b7600160a060020a036004351661087d565b341561025757600080fd5b6100f7610898565b341561026a57600080fd5b6100e26004356108cf565b341561028057600080fd5b610190600160a060020a0360043516602435610982565b34156102a257600080fd5b61019060048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506109e195505050505050565b341561030757600080fd5b6101b7600160a060020a0360043581169060243516610a38565b61019060048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610ab595505050505050565b341561038657600080fd5b6101b7600160a060020a0360043581169060243516610c55565b34156103ab57600080fd5b610190600160a060020a0360043516610c80565b34156103ca57600080fd5b6100e2600160a060020a0360043516610d9e565b34156103e957600080fd5b61019060048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f016020809104026020016040519081016040528181529291906020840183838082843750949650610df595505050505050565b60408051908101604052600781527f474f46436f696e00000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60045481565b6000610538611410565b6060606436101561054557fe5b600160a060020a038516151561055a57600080fd5b600160a060020a03861660009081526002602052604090205484111561057f57600080fd5b600160a060020a03808716600090815260036020908152604080832033909416835292905220548411156105b257600080fd5b600160a060020a0386166000908152600260205260409020546105db908563ffffffff61109016565b600160a060020a038088166000908152600260209081526040808320949094556003815283822033909316825291909152205461061e908563ffffffff61109016565b600160a060020a0380881660009081526003602090815260408083203385168452825280832094909455918816815260029091522054610664908563ffffffff6110a216565b600160a060020a03808716600081815260026020526040908190209390935591908816906000805160206114438339815191529087905190815260200160405180910390a3816040518082805190602001908083835b602083106106d95780518252601f1990920191602091820191016106ba565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902085600160a060020a031687600160a060020a03166000805160206114238339815191528760405190815260200160405180910390a450600195945050505050565b600881565b60015460009033600160a060020a0390811691161461076957600080fd5b50600154600160a060020a0330811631911681156108fc0282604051600060405180830381858888f1935050505015156107a257600080fd5b50565b60015460009033600160a060020a039081169116146107c357600080fd5b600160a060020a0333166000908152600260205260409020548211156107e857600080fd5b5033600160a060020a03811660009081526002602052604090205461080d9083611090565b600160a060020a038216600090815260026020526040902055600454610839908363ffffffff61109016565b600455600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a031660009081526002602052604090205490565b60408051908101604052600381527f474f460000000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a039081169116146108ed57600080fd5b5033600160a060020a03811660009081526002602052604090205461091290836110a2565b600160a060020a03821660009081526002602052604090205560045461093e908363ffffffff6110a216565b600455600160a060020a0381167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858360405190815260200160405180910390a25050565b600061098c611410565b6040604436101561099957fe5b600160a060020a03851615156109ae57600080fd5b6109b7856110b8565b156109ce576109c78585846110c0565b92506109d9565b6109c78585846112e5565b505092915050565b6000604060443610156109f057fe5b600160a060020a0385161515610a0557600080fd5b610a0e856110b8565b15610a2557610a1e8585856110c0565b9150610a30565b610a1e8585856112e5565b509392505050565b60008281600160a060020a0382166370a0823185836040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610a9257600080fd5b6102c65a03f11515610aa357600080fd5b50505060405180519695505050505050565b600160a060020a03338116600081815260036020908152604080832094881680845294909152808220869055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259086905190815260200160405180910390a383600160a060020a03166040517f72656365697665417070726f76616c28616464726573732c75696e743235362c81527f616464726573732c6279746573290000000000000000000000000000000000006020820152602e01604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b83811015610bf6578082015183820152602001610bde565b50505050905090810190601f168015610c235780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038160008761646e5a03f1925050501515610c4b57600080fd5b5060019392505050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b6001546000908190819033600160a060020a03908116911614610ca257600080fd5b83915081600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610cfc57600080fd5b6102c65a03f11515610d0d57600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610d7c57600080fd5b6102c65a03f11515610d8d57600080fd5b505050604051805195945050505050565b60015433600160a060020a03908116911614610db957600080fd5b600160a060020a038116156107a25760018054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b60008060406044361015610e0557fe5b610e0e876110b8565b156110785785610e1d3361087d565b1015610e2857600080fd5b610e4186610e353361087d565b9063ffffffff61109016565b600160a060020a033316600090815260026020526040902055610e7386610e678961087d565b9063ffffffff6110a216565b600160a060020a0388166000818152600260205260408082209390935589945090918690518082805190602001908083835b60208310610ec45780518252601f199092019160209182019101610ea5565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902060e060020a9004903389896040518563ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a03168152602001838152602001828051906020019080838360005b83811015610f55578082015183820152602001610f3d565b50505050905090810190601f168015610f825780820380516001836020036101000a031916815260200191505b50935050505060006040518083038185886187965a03f193505050501515610fa957600080fd5b86600160a060020a031633600160a060020a03166000805160206114438339815191528860405190815260200160405180910390a3846040518082805190602001908083835b6020831061100e5780518252601f199092019160209182019101610fef565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902087600160a060020a031633600160a060020a03166000805160206114238339815191528960405190815260200160405180910390a460019250611086565b6110838787876112e5565b92505b5050949350505050565b60008282111561109c57fe5b50900390565b6000828201838110156110b157fe5b9392505050565b6000903b1190565b600080836110cd3361087d565b10156110d857600080fd5b6110e584610e353361087d565b600160a060020a03331660009081526002602052604090205561110b84610e678761087d565b600160a060020a03861660008181526002602052604080822093909355879350909163c0ee0b8a9133918891889151602001526040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156111ab578082015183820152602001611193565b50505050905090810190601f1680156111d85780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b15156111f857600080fd5b6102c65a03f1151561120957600080fd5b505050604051805190505084600160a060020a031633600160a060020a03166000805160206114438339815191528660405190815260200160405180910390a3826040518082805190602001908083835b602083106112795780518252601f19909201916020918201910161125a565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902085600160a060020a031633600160a060020a03166000805160206114238339815191528760405190815260200160405180910390a4506001949350505050565b6000826112f13361087d565b10156112fc57600080fd5b61130983610e353361087d565b600160a060020a03331660009081526002602052604090205561132f83610e678661087d565b600160a060020a0380861660008181526002602052604090819020939093559133909116906000805160206114438339815191529086905190815260200160405180910390a3816040518082805190602001908083835b602083106113a55780518252601f199092019160209182019101611386565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902084600160a060020a031633600160a060020a03166000805160206114238339815191528660405190815260200160405180910390a45060019392505050565b60206040519081016040526000815290560052c0dd07fdf543ec6918baccf2b6895fff59b122727847159223bdb1b8525bbdddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582067a53994a3d24bb8411fdb3fde2f813060f27890a6c94b68a36d08e23bb2b11d0029000000000000000000000000000000000000000000000000002386f26fc10000

Deployed Bytecode

0x6060604052600436106100e25763ffffffff60e060020a60003504166306fdde0381146100e4578063095ea7b31461016e57806318160ddd146101a457806323b872dd146101c9578063313ce567146101f15780633ccfd60b1461020457806342966c681461021757806370a082311461022d57806395d89b411461024c578063a0712d681461025f578063a9059cbb14610275578063be45fd6214610297578063c489744b146102fc578063cae9ca5114610321578063dd62ed3e1461037b578063e58fc54c146103a0578063f2fde38b146103bf578063f6368f8a146103de575b005b34156100ef57600080fd5b6100f7610485565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561013357808201518382015260200161011b565b50505050905090810190601f1680156101605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017957600080fd5b610190600160a060020a03600435166024356104bc565b604051901515815260200160405180910390f35b34156101af57600080fd5b6101b7610528565b60405190815260200160405180910390f35b34156101d457600080fd5b610190600160a060020a036004358116906024351660443561052e565b34156101fc57600080fd5b6101b7610746565b341561020f57600080fd5b6100e261074b565b341561022257600080fd5b6100e26004356107a5565b341561023857600080fd5b6101b7600160a060020a036004351661087d565b341561025757600080fd5b6100f7610898565b341561026a57600080fd5b6100e26004356108cf565b341561028057600080fd5b610190600160a060020a0360043516602435610982565b34156102a257600080fd5b61019060048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506109e195505050505050565b341561030757600080fd5b6101b7600160a060020a0360043581169060243516610a38565b61019060048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610ab595505050505050565b341561038657600080fd5b6101b7600160a060020a0360043581169060243516610c55565b34156103ab57600080fd5b610190600160a060020a0360043516610c80565b34156103ca57600080fd5b6100e2600160a060020a0360043516610d9e565b34156103e957600080fd5b61019060048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f016020809104026020016040519081016040528181529291906020840183838082843750949650610df595505050505050565b60408051908101604052600781527f474f46436f696e00000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60045481565b6000610538611410565b6060606436101561054557fe5b600160a060020a038516151561055a57600080fd5b600160a060020a03861660009081526002602052604090205484111561057f57600080fd5b600160a060020a03808716600090815260036020908152604080832033909416835292905220548411156105b257600080fd5b600160a060020a0386166000908152600260205260409020546105db908563ffffffff61109016565b600160a060020a038088166000908152600260209081526040808320949094556003815283822033909316825291909152205461061e908563ffffffff61109016565b600160a060020a0380881660009081526003602090815260408083203385168452825280832094909455918816815260029091522054610664908563ffffffff6110a216565b600160a060020a03808716600081815260026020526040908190209390935591908816906000805160206114438339815191529087905190815260200160405180910390a3816040518082805190602001908083835b602083106106d95780518252601f1990920191602091820191016106ba565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902085600160a060020a031687600160a060020a03166000805160206114238339815191528760405190815260200160405180910390a450600195945050505050565b600881565b60015460009033600160a060020a0390811691161461076957600080fd5b50600154600160a060020a0330811631911681156108fc0282604051600060405180830381858888f1935050505015156107a257600080fd5b50565b60015460009033600160a060020a039081169116146107c357600080fd5b600160a060020a0333166000908152600260205260409020548211156107e857600080fd5b5033600160a060020a03811660009081526002602052604090205461080d9083611090565b600160a060020a038216600090815260026020526040902055600454610839908363ffffffff61109016565b600455600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a031660009081526002602052604090205490565b60408051908101604052600381527f474f460000000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a039081169116146108ed57600080fd5b5033600160a060020a03811660009081526002602052604090205461091290836110a2565b600160a060020a03821660009081526002602052604090205560045461093e908363ffffffff6110a216565b600455600160a060020a0381167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858360405190815260200160405180910390a25050565b600061098c611410565b6040604436101561099957fe5b600160a060020a03851615156109ae57600080fd5b6109b7856110b8565b156109ce576109c78585846110c0565b92506109d9565b6109c78585846112e5565b505092915050565b6000604060443610156109f057fe5b600160a060020a0385161515610a0557600080fd5b610a0e856110b8565b15610a2557610a1e8585856110c0565b9150610a30565b610a1e8585856112e5565b509392505050565b60008281600160a060020a0382166370a0823185836040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610a9257600080fd5b6102c65a03f11515610aa357600080fd5b50505060405180519695505050505050565b600160a060020a03338116600081815260036020908152604080832094881680845294909152808220869055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259086905190815260200160405180910390a383600160a060020a03166040517f72656365697665417070726f76616c28616464726573732c75696e743235362c81527f616464726573732c6279746573290000000000000000000000000000000000006020820152602e01604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b83811015610bf6578082015183820152602001610bde565b50505050905090810190601f168015610c235780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038160008761646e5a03f1925050501515610c4b57600080fd5b5060019392505050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b6001546000908190819033600160a060020a03908116911614610ca257600080fd5b83915081600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610cfc57600080fd5b6102c65a03f11515610d0d57600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610d7c57600080fd5b6102c65a03f11515610d8d57600080fd5b505050604051805195945050505050565b60015433600160a060020a03908116911614610db957600080fd5b600160a060020a038116156107a25760018054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b60008060406044361015610e0557fe5b610e0e876110b8565b156110785785610e1d3361087d565b1015610e2857600080fd5b610e4186610e353361087d565b9063ffffffff61109016565b600160a060020a033316600090815260026020526040902055610e7386610e678961087d565b9063ffffffff6110a216565b600160a060020a0388166000818152600260205260408082209390935589945090918690518082805190602001908083835b60208310610ec45780518252601f199092019160209182019101610ea5565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902060e060020a9004903389896040518563ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a03168152602001838152602001828051906020019080838360005b83811015610f55578082015183820152602001610f3d565b50505050905090810190601f168015610f825780820380516001836020036101000a031916815260200191505b50935050505060006040518083038185886187965a03f193505050501515610fa957600080fd5b86600160a060020a031633600160a060020a03166000805160206114438339815191528860405190815260200160405180910390a3846040518082805190602001908083835b6020831061100e5780518252601f199092019160209182019101610fef565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902087600160a060020a031633600160a060020a03166000805160206114238339815191528960405190815260200160405180910390a460019250611086565b6110838787876112e5565b92505b5050949350505050565b60008282111561109c57fe5b50900390565b6000828201838110156110b157fe5b9392505050565b6000903b1190565b600080836110cd3361087d565b10156110d857600080fd5b6110e584610e353361087d565b600160a060020a03331660009081526002602052604090205561110b84610e678761087d565b600160a060020a03861660008181526002602052604080822093909355879350909163c0ee0b8a9133918891889151602001526040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156111ab578082015183820152602001611193565b50505050905090810190601f1680156111d85780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b15156111f857600080fd5b6102c65a03f1151561120957600080fd5b505050604051805190505084600160a060020a031633600160a060020a03166000805160206114438339815191528660405190815260200160405180910390a3826040518082805190602001908083835b602083106112795780518252601f19909201916020918201910161125a565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902085600160a060020a031633600160a060020a03166000805160206114238339815191528760405190815260200160405180910390a4506001949350505050565b6000826112f13361087d565b10156112fc57600080fd5b61130983610e353361087d565b600160a060020a03331660009081526002602052604090205561132f83610e678661087d565b600160a060020a0380861660008181526002602052604090819020939093559133909116906000805160206114438339815191529086905190815260200160405180910390a3816040518082805190602001908083835b602083106113a55780518252601f199092019160209182019101611386565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902084600160a060020a031633600160a060020a03166000805160206114238339815191528660405190815260200160405180910390a45060019392505050565b60206040519081016040526000815290560052c0dd07fdf543ec6918baccf2b6895fff59b122727847159223bdb1b8525bbdddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582067a53994a3d24bb8411fdb3fde2f813060f27890a6c94b68a36d08e23bb2b11d0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000002386f26fc10000

-----Decoded View---------------
Arg [0] : _initialAmount (uint256): 10000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000002386f26fc10000


Swarm Source

bzzr://67a53994a3d24bb8411fdb3fde2f813060f27890a6c94b68a36d08e23bb2b11d
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.