ETH Price: $3,068.65 (-1.66%)
Gas: 3 Gwei

Token

VegaWallet (VGW)
 

Overview

Max Total Supply

48,774,573.99 VGW

Holders

395 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$1,080,187.08

Circulating Supply Market Cap

$552,984.00

Other Info

Token Contract (WITH 5 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Market

Volume (24H):$5.91
Market Capitalization:$552,984.00
Circulating Supply:24,969,353.00 VGW
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VGWToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

pragma solidity ^0.4.23;

library SafeMath {

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 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 c;
    }

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

contract Ownable {
    address public owner;
    bool public stopped = false;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor() public{
        owner = msg.sender;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0));
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }

    /** 
    * Stop ICO contract
    */
    function stop() onlyOwner public{
        stopped = true;
    }

    /** 
    * Start ICO contract
    */
    function start() onlyOwner public{
        stopped = false;
    }

    /** 
    Validate if ICO running
    */
    modifier isRunning {
        assert (!stopped);
        _;
    }
}

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

contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) balances;

    uint256 totalSupply_;

    /**
    * @dev total number of tokens in existence
    */
    function totalSupply() public view returns (uint256) {
        return totalSupply_;
    }

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[msg.sender]);

        // SafeMath.sub will throw if there is not enough balance.
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) public view returns (uint256 balance) {
        return balances[_owner];
    }

}

contract BurnableToken is BasicToken, Ownable {

    event Burn(address indexed burner, uint256 value);

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public onlyOwner{
        require(_value <= balances[msg.sender]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply_ = totalSupply_.sub(_value);
        emit Burn(burner, _value);
    }
}

contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public view 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);
}

library SafeERC20 {
    function safeTransfer(ERC20Basic token, address to, uint256 value) internal {
        assert(token.transfer(to, value));
    }

    function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal {
        assert(token.transferFrom(from, to, value));
    }

    function safeApprove(ERC20 token, address spender, uint256 value) internal {
        assert(token.approve(spender, value));
    }
}

contract StandardToken is ERC20, BasicToken {

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

    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[_from]);
        require(_value <= allowed[_from][msg.sender]);

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     *
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) public returns (bool) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender) public view returns (uint256) {
        return allowed[_owner][_spender];
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     *
     * approve should be called when allowed[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     */
    function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     *
     * approve should be called when allowed[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
        uint oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowed[msg.sender][_spender] = 0;
        } else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }
}

contract VGWToken is StandardToken, BurnableToken {

    using SafeMath for uint;    

    string constant public symbol = "VGW";
    string constant public name = "VegaWallet";

    uint8 constant public decimals = 5;    
    uint256 public constant decimalFactor = 10 ** uint256(decimals);
    uint256 public constant INITIAL_SUPPLY = 200000000 * decimalFactor;

    uint constant ITSStartTime = 1537185600;  // Monday, Sep 17, 2018 12:00:00 AM
    uint constant ITSEndTime = 1542369600;    // Friday, Nov 16, 2018 12:00:00 PM
    uint constant unlockTimeF1 = 1550125800;  // Thursday, Feb 14, 2019 12.00.00 PM
    uint constant unlockTimeF2 = 1565937000;  // Friday, August 16, 2019 12.00.00 PM

    uint256 constant publicTokens = 120000000 * decimalFactor;
    uint256 constant investorTokens = 20000000 * decimalFactor;
    uint256 constant founderTokens1 = 8750000 * decimalFactor;
    uint256 constant founderTokens2 = 26250000 * decimalFactor;
    uint256 constant devTokens = 25000000 * decimalFactor;

    address constant adrInvestor = 0x23Ce1F8d4926bd6d768815Cc45B1D4Fc7B920efB;
    address constant adrFounder1 = 0xf56E5B449f2966fc3718AD6d44B9e75a94B6852b;
    address constant adrFounder2 = 0x73EE65A92f551D613b77Ab6D72Ee08570cfC8Dc6;
    address constant adrDevTeam = 0x8856D5434602a65933DBbb0636a19953AA5dcCa1;

    constructor(address owner) public {
        totalSupply_ = INITIAL_SUPPLY;
        //InitialDistribution
        preSale(owner,publicTokens);
        preSale(adrInvestor,investorTokens);
        preSale(adrFounder1,founderTokens1);
        preSale(adrFounder2,founderTokens2);
        preSale(adrDevTeam,devTokens);
    }

    function preSale(address _address, uint _amount) internal returns (bool) {
        balances[_address] = _amount;
        emit Transfer(address(0x0), _address, _amount);
    }

    function checkPermissions(address _address) internal view returns (bool) {

        if( ( _address == adrInvestor || _address == adrDevTeam ) && ( block.timestamp < ITSEndTime ) ){
            return false;
        }else if( ( block.timestamp < unlockTimeF1 ) && ( _address == adrFounder1 ) ){
            return false;
        }else if( ( block.timestamp < unlockTimeF2 ) && ( _address == adrFounder2 ) ){
            return false;
        }else if ( _address == owner ){
            return true;
        }else if( block.timestamp < ITSEndTime ){
            return false;
        }else{
            return true;
        }
    }

    function transfer(address _to, uint256 _value) isRunning public returns (bool) {

        require(checkPermissions(msg.sender));
        super.transfer(_to, _value);
    }

    function transferFrom(address _from, address _to, uint256 _value) isRunning public returns (bool) {

        require(checkPermissions(_from));
        super.transferFrom(_from, _to, _value);
    }

    function () public payable {
        require(msg.value >= 1e16);
        owner.transfer(msg.value);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","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":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","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":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimalFactor","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"start","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"owner","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"}],"name":"Transfer","type":"event"}]

60806040526003805460a060020a60ff021916905534801561002057600080fd5b50604051602080610eec833981016040525160038054600160a060020a031916331790556512309ce5400060015561006781650ae9f7bcc000640100000000610125810204565b506100957323ce1f8d4926bd6d768815cc45b1d4fc7b920efb6501d1a94a2000640100000000610125810204565b506100c273f56e5b449f2966fc3718ad6d44b9e75a94b6852b64cbba106e00640100000000610125810204565b506100f07373ee65a92f551d613b77ab6d72ee08570cfc8dc66502632e314a00640100000000610125810204565b5061011e738856d5434602a65933dbbb0636a19953aa5dcca1650246139ca800640100000000610125810204565b505061017b565b600160a060020a0382166000818152602081815260408083208590558051858152905192939284927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a392915050565b610d628061018a6000396000f3006080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461015657806307da68f5146101e0578063095ea7b3146101f757806318160ddd1461022f57806323b872dd146102565780632ff2e9dc14610280578063313ce5671461029557806342966c68146102c057806366188463146102d85780636d6a6a4d146102fc57806370a082311461031157806375f12b21146103325780638da5cb5b1461034757806395d89b4114610378578063a9059cbb1461038d578063be9a6555146103b1578063d73dd623146103c6578063dd62ed3e146103ea578063f2fde38b14610411575b662386f26fc1000034101561011a57600080fd5b600354604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610153573d6000803e3d6000fd5b50005b34801561016257600080fd5b5061016b610432565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a557818101518382015260200161018d565b50505050905090810190601f1680156101d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ec57600080fd5b506101f5610469565b005b34801561020357600080fd5b5061021b600160a060020a03600435166024356104b7565b604080519115158252519081900360200190f35b34801561023b57600080fd5b5061024461051d565b60408051918252519081900360200190f35b34801561026257600080fd5b5061021b600160a060020a0360043581169060243516604435610523565b34801561028c57600080fd5b50610244610572565b3480156102a157600080fd5b506102aa61057c565b6040805160ff9092168252519081900360200190f35b3480156102cc57600080fd5b506101f5600435610581565b3480156102e457600080fd5b5061021b600160a060020a036004351660243561064a565b34801561030857600080fd5b5061024461073c565b34801561031d57600080fd5b50610244600160a060020a0360043516610743565b34801561033e57600080fd5b5061021b610762565b34801561035357600080fd5b5061035c610783565b60408051600160a060020a039092168252519081900360200190f35b34801561038457600080fd5b5061016b610792565b34801561039957600080fd5b5061021b600160a060020a03600435166024356107c9565b3480156103bd57600080fd5b506101f561080f565b3480156103d257600080fd5b5061021b600160a060020a0360043516602435610846565b3480156103f657600080fd5b50610244600160a060020a03600435811690602435166108df565b34801561041d57600080fd5b506101f5600160a060020a036004351661090a565b60408051808201909152600a81527f5665676157616c6c657400000000000000000000000000000000000000000000602082015281565b600354600160a060020a0316331461048057600080fd5b6003805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b60035460009074010000000000000000000000000000000000000000900460ff161561054b57fe5b6105548461099f565b151561055f57600080fd5b61056a848484610ab6565b509392505050565b6512309ce5400081565b600581565b600354600090600160a060020a0316331461059b57600080fd5b336000908152602081905260409020548211156105b757600080fd5b50336000818152602081905260409020546105d8908363ffffffff610c2d16565b600160a060020a038216600090815260208190526040902055600154610604908363ffffffff610c2d16565b600155604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561069f57336000908152600260209081526040808320600160a060020a03881684529091528120556106d4565b6106af818463ffffffff610c2d16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3600191505b5092915050565b620186a081565b600160a060020a0381166000908152602081905260409020545b919050565b60035474010000000000000000000000000000000000000000900460ff1681565b600354600160a060020a031681565b60408051808201909152600381527f5647570000000000000000000000000000000000000000000000000000000000602082015281565b60035460009074010000000000000000000000000000000000000000900460ff16156107f157fe5b6107fa3361099f565b151561080557600080fd5b6107358383610c3f565b600354600160a060020a0316331461082657600080fd5b6003805474ff000000000000000000000000000000000000000019169055565b336000908152600260209081526040808320600160a060020a038616845290915281205461087a908363ffffffff610d2016565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461092157600080fd5b600160a060020a038116151561093657600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a0382167323ce1f8d4926bd6d768815cc45b1d4fc7b920efb14806109e85750600160a060020a038216738856d5434602a65933dbbb0636a19953aa5dcca1145b80156109f75750635beeb14042105b15610a045750600061075d565b635c650ae842108015610a335750600160a060020a03821673f56e5b449f2966fc3718ad6d44b9e75a94b6852b145b15610a405750600061075d565b635d564d6842108015610a6f5750600160a060020a0382167373ee65a92f551d613b77ab6d72ee08570cfc8dc6145b15610a7c5750600061075d565b600354600160a060020a0383811691161415610a9a5750600161075d565b635beeb140421015610aae5750600061075d565b50600161075d565b6000600160a060020a0383161515610acd57600080fd5b600160a060020a038416600090815260208190526040902054821115610af257600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610b2257600080fd5b600160a060020a038416600090815260208190526040902054610b4b908363ffffffff610c2d16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610b80908363ffffffff610d2016565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610bc2908363ffffffff610c2d16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115610c3957fe5b50900390565b6000600160a060020a0383161515610c5657600080fd5b33600090815260208190526040902054821115610c7257600080fd5b33600090815260208190526040902054610c92908363ffffffff610c2d16565b3360009081526020819052604080822092909255600160a060020a03851681522054610cc4908363ffffffff610d2016565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600082820183811015610d2f57fe5b93925050505600a165627a7a7230582049ead25ab5df63d7b7484196c4aad658ff42fa95a07b56f41fc27c5aa5a16d6800290000000000000000000000002098c7e36c99b19c1e1afa1be0218760aa19f23c

Deployed Bytecode

0x6080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461015657806307da68f5146101e0578063095ea7b3146101f757806318160ddd1461022f57806323b872dd146102565780632ff2e9dc14610280578063313ce5671461029557806342966c68146102c057806366188463146102d85780636d6a6a4d146102fc57806370a082311461031157806375f12b21146103325780638da5cb5b1461034757806395d89b4114610378578063a9059cbb1461038d578063be9a6555146103b1578063d73dd623146103c6578063dd62ed3e146103ea578063f2fde38b14610411575b662386f26fc1000034101561011a57600080fd5b600354604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610153573d6000803e3d6000fd5b50005b34801561016257600080fd5b5061016b610432565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a557818101518382015260200161018d565b50505050905090810190601f1680156101d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ec57600080fd5b506101f5610469565b005b34801561020357600080fd5b5061021b600160a060020a03600435166024356104b7565b604080519115158252519081900360200190f35b34801561023b57600080fd5b5061024461051d565b60408051918252519081900360200190f35b34801561026257600080fd5b5061021b600160a060020a0360043581169060243516604435610523565b34801561028c57600080fd5b50610244610572565b3480156102a157600080fd5b506102aa61057c565b6040805160ff9092168252519081900360200190f35b3480156102cc57600080fd5b506101f5600435610581565b3480156102e457600080fd5b5061021b600160a060020a036004351660243561064a565b34801561030857600080fd5b5061024461073c565b34801561031d57600080fd5b50610244600160a060020a0360043516610743565b34801561033e57600080fd5b5061021b610762565b34801561035357600080fd5b5061035c610783565b60408051600160a060020a039092168252519081900360200190f35b34801561038457600080fd5b5061016b610792565b34801561039957600080fd5b5061021b600160a060020a03600435166024356107c9565b3480156103bd57600080fd5b506101f561080f565b3480156103d257600080fd5b5061021b600160a060020a0360043516602435610846565b3480156103f657600080fd5b50610244600160a060020a03600435811690602435166108df565b34801561041d57600080fd5b506101f5600160a060020a036004351661090a565b60408051808201909152600a81527f5665676157616c6c657400000000000000000000000000000000000000000000602082015281565b600354600160a060020a0316331461048057600080fd5b6003805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b60035460009074010000000000000000000000000000000000000000900460ff161561054b57fe5b6105548461099f565b151561055f57600080fd5b61056a848484610ab6565b509392505050565b6512309ce5400081565b600581565b600354600090600160a060020a0316331461059b57600080fd5b336000908152602081905260409020548211156105b757600080fd5b50336000818152602081905260409020546105d8908363ffffffff610c2d16565b600160a060020a038216600090815260208190526040902055600154610604908363ffffffff610c2d16565b600155604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561069f57336000908152600260209081526040808320600160a060020a03881684529091528120556106d4565b6106af818463ffffffff610c2d16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3600191505b5092915050565b620186a081565b600160a060020a0381166000908152602081905260409020545b919050565b60035474010000000000000000000000000000000000000000900460ff1681565b600354600160a060020a031681565b60408051808201909152600381527f5647570000000000000000000000000000000000000000000000000000000000602082015281565b60035460009074010000000000000000000000000000000000000000900460ff16156107f157fe5b6107fa3361099f565b151561080557600080fd5b6107358383610c3f565b600354600160a060020a0316331461082657600080fd5b6003805474ff000000000000000000000000000000000000000019169055565b336000908152600260209081526040808320600160a060020a038616845290915281205461087a908363ffffffff610d2016565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461092157600080fd5b600160a060020a038116151561093657600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a0382167323ce1f8d4926bd6d768815cc45b1d4fc7b920efb14806109e85750600160a060020a038216738856d5434602a65933dbbb0636a19953aa5dcca1145b80156109f75750635beeb14042105b15610a045750600061075d565b635c650ae842108015610a335750600160a060020a03821673f56e5b449f2966fc3718ad6d44b9e75a94b6852b145b15610a405750600061075d565b635d564d6842108015610a6f5750600160a060020a0382167373ee65a92f551d613b77ab6d72ee08570cfc8dc6145b15610a7c5750600061075d565b600354600160a060020a0383811691161415610a9a5750600161075d565b635beeb140421015610aae5750600061075d565b50600161075d565b6000600160a060020a0383161515610acd57600080fd5b600160a060020a038416600090815260208190526040902054821115610af257600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610b2257600080fd5b600160a060020a038416600090815260208190526040902054610b4b908363ffffffff610c2d16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610b80908363ffffffff610d2016565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610bc2908363ffffffff610c2d16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115610c3957fe5b50900390565b6000600160a060020a0383161515610c5657600080fd5b33600090815260208190526040902054821115610c7257600080fd5b33600090815260208190526040902054610c92908363ffffffff610c2d16565b3360009081526020819052604080822092909255600160a060020a03851681522054610cc4908363ffffffff610d2016565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600082820183811015610d2f57fe5b93925050505600a165627a7a7230582049ead25ab5df63d7b7484196c4aad658ff42fa95a07b56f41fc27c5aa5a16d680029

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

0000000000000000000000002098c7e36c99b19c1e1afa1be0218760aa19f23c

-----Decoded View---------------
Arg [0] : owner (address): 0x2098c7e36c99b19c1e1AFa1Be0218760aa19f23C

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002098c7e36c99b19c1e1afa1be0218760aa19f23c


Swarm Source

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