ETH Price: $3,179.60 (+1.63%)
Gas: 3 Gwei

Token

On Top Coin (ONTOP)
 

Overview

Max Total Supply

3,000,000,000 ONTOP

Holders

1,574

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,618 ONTOP

Value
$0.00
0xa54799f99bc7d919dcf931c28b396b5c0928113d
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:
ONTOPToken

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-07-14
*/

pragma solidity ^0.4.21;

contract owned {
    address public owner;

    function owned() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address newOwner) onlyOwner public {
        owner = newOwner;
    }
}


contract TokenERC20 {
    // Public variables of the token
    string public name;
    string public symbol;
    uint8 public decimals = 18;
    // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);
       
    
    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function TokenERC20(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) public {
        totalSupply = initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value > balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = balanceOf[_from] + balanceOf[_to];
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        emit Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public returns (bool success) {
        _transfer(msg.sender, _to, _value);
        return true;
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns (bool success) {
        require(balanceOf[msg.sender] >= _value);   // Check if the sender has enough
        balanceOf[msg.sender] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        emit Burn(msg.sender, _value);
        return true;
    }

}

/******************************************/
/*       ADVANCED TOKEN STARTS HERE       */
/******************************************/

contract ONTOPToken is owned, TokenERC20 {
    struct frozenInfo {
       bool frozenAccount;
       bool frozenAccBytime;
       // uint time_stfrozen;
       uint time_end_frozen;
       uint time_last_query;
       uint256 frozen_total;
       // uint256 realsestep;
    }
    
    struct frozenInfo_prv {
       uint256 realsestep;
    }
    
    uint private constant timerate = 1;
    string public declaration = "frozenInfos will reflush by function QueryFrozenCoins and transfer.";
    // mapping (address => bool) public frozenAccount;
    mapping (address => frozenInfo) public frozenInfos;
    mapping (address => frozenInfo_prv) private frozenInfos_prv;
    
    /* This generates a public event on the blockchain that will notify clients */
    event FrozenFunds(address target, bool frozen);

    // This notifies clients about the frozen coin
    event FrozenTotal(address indexed from, uint256 value);
    /* Initializes contract with initial supply tokens to the creator of the contract */
    function ONTOPToken(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) TokenERC20(initialSupply, tokenName, tokenSymbol) public {}
    
    function _resetFrozenInfo(address target) internal {
       frozenInfos[target].frozen_total = 0;
       frozenInfos[target].time_end_frozen = 0;
       frozenInfos_prv[target].realsestep = 0;
       frozenInfos[target].time_last_query = 0;
       frozenInfos[target].frozenAccBytime = false; 
    }
    
    function _refulshFrozenInfo(address target) internal {
       if(frozenInfos[target].frozenAccBytime) 
        {
            uint nowtime = now ;// + 60*60*24*365*5 ;
            frozenInfos[target].time_last_query = nowtime;
            if(nowtime>=frozenInfos[target].time_end_frozen)
            {
               _resetFrozenInfo(target);              
            }
            else
            {
               uint stepcnt = frozenInfos[target].time_end_frozen - nowtime;
               uint256 releasecoin = stepcnt * frozenInfos_prv[target].realsestep;
               if(frozenInfos[target].frozen_total<=releasecoin)
                  _resetFrozenInfo(target);
               else
               {
                  frozenInfos[target].frozen_total=releasecoin;
               }
            }
        }       
    }
    
    /* Internal transfer, only can be called by this contract */
    
    function _transfer(address _from, address _to, uint _value) internal {
        require (_to != 0x0);                               // Prevent transfer to 0x0 address. Use burn() instead
        require (balanceOf[_from] >= _value);               // Check if the sender has enough
        require (balanceOf[_to] + _value >= balanceOf[_to]); // Check for overflows
        // require(!frozenAccount[_from]);                     // Check if sender is frozen
        // require(!frozenAccount[_to]);                       // Check if recipient is frozen
        require(!frozenInfos[_from].frozenAccount);                     // Check if sender is frozen
        require(!frozenInfos[_to].frozenAccount);                       // Check if recipient is frozen
        require(!frozenInfos[_to].frozenAccBytime); 
                
        if(frozenInfos[_from].frozenAccBytime) 
        {
            _refulshFrozenInfo(_from);
            if(frozenInfos[_from].frozenAccBytime)
            {
               if((balanceOf[_from]-_value)<=frozenInfos[_from].frozen_total)
                   require(false);
            }
        }
        
        balanceOf[_from] -= _value;                         // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        emit Transfer(_from, _to, _value);
    }

    /// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens
    /// @param target Address to be frozen
    /// @param freeze either to freeze it or not
    function freezeAccount(address target, bool freeze) onlyOwner public {
        // frozenAccount[target] = freeze;
        frozenInfos[target].frozenAccount = freeze;
        emit FrozenFunds(target, freeze);
    }
    
    function freezeAccountByTime(address target, uint time) onlyOwner public {
        // frozenAccount[target] = freeze;
        require (target != 0x0);
        require (balanceOf[target] >= 1); 
        require(!frozenInfos[target].frozenAccBytime);
        require (time >0);
        frozenInfos[target].frozenAccBytime = true;
        uint nowtime = now;
        frozenInfos[target].time_end_frozen = nowtime + time * timerate;
        frozenInfos[target].time_last_query = nowtime;
        frozenInfos[target].frozen_total = balanceOf[target];
        frozenInfos_prv[target].realsestep = frozenInfos[target].frozen_total / (time * timerate);  
        require (frozenInfos_prv[target].realsestep>0);      
        emit FrozenTotal(target, frozenInfos[target].frozen_total);
    }    
    
    function UnfreezeAccountByTime(address target) onlyOwner public {
        _resetFrozenInfo(target);
        emit FrozenTotal(target, frozenInfos[target].frozen_total);
    }
    
    function QueryFrozenCoins(address _from) public returns (uint256 total) {
        require (_from != 0x0);
        require(frozenInfos[_from].frozenAccBytime);
        _refulshFrozenInfo(_from);        
        emit FrozenTotal(_from, frozenInfos[_from].frozen_total);
        return frozenInfos[_from].frozen_total;
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"time","type":"uint256"}],"name":"freezeAccountByTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"}],"name":"QueryFrozenCoins","outputs":[{"name":"total","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"}],"name":"UnfreezeAccountByTime","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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"declaration","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenInfos","outputs":[{"name":"frozenAccount","type":"bool"},{"name":"frozenAccBytime","type":"bool"},{"name":"time_end_frozen","type":"uint256"},{"name":"time_last_query","type":"uint256"},{"name":"frozen_total","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"FrozenTotal","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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

606060409081526003805460ff191660121790556080905190810160405280604381526020017f66726f7a656e496e666f732077696c6c207265666c7573682062792066756e6381526020017f74696f6e20517565727946726f7a656e436f696e7320616e64207472616e736681526020017f65722e000000000000000000000000000000000000000000000000000000000081525060069080516100a8929160200190610151565b5034156100b457600080fd5b604051610e69380380610e69833981016040528080519190602001805182019190602001805160008054600160a060020a033316600160a060020a03199091168117825560035460ff16600a0a87026004819055908252600560205260409091205590910190508282826001828051610131929160200190610151565b506002818051610145929160200190610151565b505050505050506101ec565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061019257805160ff19168380011785556101bf565b828001600101855582156101bf579182015b828111156101bf5782518255916020019190600101906101a4565b506101cb9291506101cf565b5090565b6101e991905b808211156101cb57600081556001016101d5565b90565b610c6e806101fb6000396000f3006060604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df57806318160ddd14610169578063313ce5671461018e57806340394dcc146101b757806342966c68146101db57806350d78f7d1461020557806370a08231146102245780638da5cb5b146102435780639073576c1461027257806395d89b4114610291578063a9059cbb146102a4578063b1a6afd3146102c6578063c9736d80146102d9578063e724529c1461032b578063f2fde38b1461034f575b600080fd5b34156100ea57600080fd5b6100f261036e565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561012e578082015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017457600080fd5b61017c61040c565b60405190815260200160405180910390f35b341561019957600080fd5b6101a1610412565b60405160ff909116815260200160405180910390f35b34156101c257600080fd5b6101d9600160a060020a036004351660243561041b565b005b34156101e657600080fd5b6101f1600435610583565b604051901515815260200160405180910390f35b341561021057600080fd5b61017c600160a060020a036004351661060e565b341561022f57600080fd5b61017c600160a060020a03600435166106c8565b341561024e57600080fd5b6102566106da565b604051600160a060020a03909116815260200160405180910390f35b341561027d57600080fd5b6101d9600160a060020a03600435166106e9565b341561029c57600080fd5b6100f261075f565b34156102af57600080fd5b6101f1600160a060020a03600435166024356107ca565b34156102d157600080fd5b6100f26107e0565b34156102e457600080fd5b6102f8600160a060020a036004351661084b565b604051941515855292151560208501526040808501929092526060840152608083019190915260a0909101905180910390f35b341561033657600080fd5b6101d9600160a060020a0360043516602435151561087d565b341561035a57600080fd5b6101d9600160a060020a0360043516610909565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104045780601f106103d957610100808354040283529160200191610404565b820191906000526020600020905b8154815290600101906020018083116103e757829003601f168201915b505050505081565b60045481565b60035460ff1681565b6000805433600160a060020a0390811691161461043757600080fd5b600160a060020a038316151561044c57600080fd5b600160a060020a038316600090815260056020526040902054600190101561047357600080fd5b600160a060020a038316600090815260076020526040902054610100900460ff161561049e57600080fd5b600082116104ab57600080fd5b50600160a060020a0382166000908152600760208181526040808420805461ff00191661010017815542868101600183015560028201819055600584529190942054929091526003909201819055829081151561050457fe5b600160a060020a03851660009081526008602052604081209290910491829055901161052f57600080fd5b600160a060020a03831660008181526007602052604090819020600301547f43e4957c36a7928d87c46c096567928625314057ed11e3ed634710223f561e6f915190815260200160405180910390a2505050565b600160a060020a033316600090815260056020526040812054829010156105a957600080fd5b600160a060020a03331660008181526005602052604090819020805485900390556004805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b6000600160a060020a038216151561062557600080fd5b600160a060020a038216600090815260076020526040902054610100900460ff16151561065157600080fd5b61065a82610953565b600160a060020a03821660008181526007602052604090819020600301547f43e4957c36a7928d87c46c096567928625314057ed11e3ed634710223f561e6f915190815260200160405180910390a250600160a060020a031660009081526007602052604090206003015490565b60056020526000908152604090205481565b600054600160a060020a031681565b60005433600160a060020a0390811691161461070457600080fd5b61070d81610a2d565b600160a060020a03811660008181526007602052604090819020600301547f43e4957c36a7928d87c46c096567928625314057ed11e3ed634710223f561e6f915190815260200160405180910390a250565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104045780601f106103d957610100808354040283529160200191610404565b60006107d7338484610a75565b50600192915050565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104045780601f106103d957610100808354040283529160200191610404565b600760205260009081526040902080546001820154600283015460039093015460ff8084169461010090940416929085565b60005433600160a060020a0390811691161461089857600080fd5b600160a060020a03821660009081526007602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a0390811691161461092457600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03811660009081526007602052604081205481908190610100900460ff1615610a2757600160a060020a0384166000908152600760205260409020426002820181905560019091015490935083106109ba576109b584610a2d565b610a27565b5050600160a060020a0382166000908152600760208181526040808420600181015460088452919094205492909152600390920154918390039190820290819011610a08576109b584610a2d565b600160a060020a03841660009081526007602052604090206003018190555b50505050565b600160a060020a031660009081526007602081815260408084206003810185905560018101859055600883529084208490559190526002810191909155805461ff0019169055565b600160a060020a0382161515610a8a57600080fd5b600160a060020a03831660009081526005602052604090205481901015610ab057600080fd5b600160a060020a0382166000908152600560205260409020548181011015610ad757600080fd5b600160a060020a03831660009081526007602052604090205460ff1615610afd57600080fd5b600160a060020a03821660009081526007602052604090205460ff1615610b2357600080fd5b600160a060020a038216600090815260076020526040902054610100900460ff1615610b4e57600080fd5b600160a060020a038316600090815260076020526040902054610100900460ff1615610bd857610b7d83610953565b600160a060020a038316600090815260076020526040902054610100900460ff1615610bd857600160a060020a03831660009081526007602090815260408083206003015460059092529091205482900311610bd857600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050505600a165627a7a72305820b9cdae8b5a15286ff6915bcc702627b8557229813ef93d20bfb8c460e02553d5002900000000000000000000000000000000000000000000000000000000b2d05e00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000b4f6e20546f7020436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054f4e544f50000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6060604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df57806318160ddd14610169578063313ce5671461018e57806340394dcc146101b757806342966c68146101db57806350d78f7d1461020557806370a08231146102245780638da5cb5b146102435780639073576c1461027257806395d89b4114610291578063a9059cbb146102a4578063b1a6afd3146102c6578063c9736d80146102d9578063e724529c1461032b578063f2fde38b1461034f575b600080fd5b34156100ea57600080fd5b6100f261036e565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561012e578082015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017457600080fd5b61017c61040c565b60405190815260200160405180910390f35b341561019957600080fd5b6101a1610412565b60405160ff909116815260200160405180910390f35b34156101c257600080fd5b6101d9600160a060020a036004351660243561041b565b005b34156101e657600080fd5b6101f1600435610583565b604051901515815260200160405180910390f35b341561021057600080fd5b61017c600160a060020a036004351661060e565b341561022f57600080fd5b61017c600160a060020a03600435166106c8565b341561024e57600080fd5b6102566106da565b604051600160a060020a03909116815260200160405180910390f35b341561027d57600080fd5b6101d9600160a060020a03600435166106e9565b341561029c57600080fd5b6100f261075f565b34156102af57600080fd5b6101f1600160a060020a03600435166024356107ca565b34156102d157600080fd5b6100f26107e0565b34156102e457600080fd5b6102f8600160a060020a036004351661084b565b604051941515855292151560208501526040808501929092526060840152608083019190915260a0909101905180910390f35b341561033657600080fd5b6101d9600160a060020a0360043516602435151561087d565b341561035a57600080fd5b6101d9600160a060020a0360043516610909565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104045780601f106103d957610100808354040283529160200191610404565b820191906000526020600020905b8154815290600101906020018083116103e757829003601f168201915b505050505081565b60045481565b60035460ff1681565b6000805433600160a060020a0390811691161461043757600080fd5b600160a060020a038316151561044c57600080fd5b600160a060020a038316600090815260056020526040902054600190101561047357600080fd5b600160a060020a038316600090815260076020526040902054610100900460ff161561049e57600080fd5b600082116104ab57600080fd5b50600160a060020a0382166000908152600760208181526040808420805461ff00191661010017815542868101600183015560028201819055600584529190942054929091526003909201819055829081151561050457fe5b600160a060020a03851660009081526008602052604081209290910491829055901161052f57600080fd5b600160a060020a03831660008181526007602052604090819020600301547f43e4957c36a7928d87c46c096567928625314057ed11e3ed634710223f561e6f915190815260200160405180910390a2505050565b600160a060020a033316600090815260056020526040812054829010156105a957600080fd5b600160a060020a03331660008181526005602052604090819020805485900390556004805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b6000600160a060020a038216151561062557600080fd5b600160a060020a038216600090815260076020526040902054610100900460ff16151561065157600080fd5b61065a82610953565b600160a060020a03821660008181526007602052604090819020600301547f43e4957c36a7928d87c46c096567928625314057ed11e3ed634710223f561e6f915190815260200160405180910390a250600160a060020a031660009081526007602052604090206003015490565b60056020526000908152604090205481565b600054600160a060020a031681565b60005433600160a060020a0390811691161461070457600080fd5b61070d81610a2d565b600160a060020a03811660008181526007602052604090819020600301547f43e4957c36a7928d87c46c096567928625314057ed11e3ed634710223f561e6f915190815260200160405180910390a250565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104045780601f106103d957610100808354040283529160200191610404565b60006107d7338484610a75565b50600192915050565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104045780601f106103d957610100808354040283529160200191610404565b600760205260009081526040902080546001820154600283015460039093015460ff8084169461010090940416929085565b60005433600160a060020a0390811691161461089857600080fd5b600160a060020a03821660009081526007602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a0390811691161461092457600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03811660009081526007602052604081205481908190610100900460ff1615610a2757600160a060020a0384166000908152600760205260409020426002820181905560019091015490935083106109ba576109b584610a2d565b610a27565b5050600160a060020a0382166000908152600760208181526040808420600181015460088452919094205492909152600390920154918390039190820290819011610a08576109b584610a2d565b600160a060020a03841660009081526007602052604090206003018190555b50505050565b600160a060020a031660009081526007602081815260408084206003810185905560018101859055600883529084208490559190526002810191909155805461ff0019169055565b600160a060020a0382161515610a8a57600080fd5b600160a060020a03831660009081526005602052604090205481901015610ab057600080fd5b600160a060020a0382166000908152600560205260409020548181011015610ad757600080fd5b600160a060020a03831660009081526007602052604090205460ff1615610afd57600080fd5b600160a060020a03821660009081526007602052604090205460ff1615610b2357600080fd5b600160a060020a038216600090815260076020526040902054610100900460ff1615610b4e57600080fd5b600160a060020a038316600090815260076020526040902054610100900460ff1615610bd857610b7d83610953565b600160a060020a038316600090815260076020526040902054610100900460ff1615610bd857600160a060020a03831660009081526007602090815260408083206003015460059092529091205482900311610bd857600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050505600a165627a7a72305820b9cdae8b5a15286ff6915bcc702627b8557229813ef93d20bfb8c460e02553d50029

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

00000000000000000000000000000000000000000000000000000000b2d05e00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000b4f6e20546f7020436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054f4e544f50000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 3000000000
Arg [1] : tokenName (string): On Top Coin
Arg [2] : tokenSymbol (string): ONTOP

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000b2d05e00
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 4f6e20546f7020436f696e000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4f4e544f50000000000000000000000000000000000000000000000000000000


Swarm Source

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