ETH Price: $2,356.91 (+1.30%)

Token

Mobilink (MOBL)
 

Overview

Max Total Supply

7,650,000,000 MOBL

Holders

1,598

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
55 MOBL

Value
$0.00
0xc841ebe00BE00878923E888F8148fF05697D4259
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x14fd3166...3cc8F3B3E
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
MobilinkToken

Compiler Version
v0.4.19+commit.c4cbbb05

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-03-01
*/

pragma solidity 0.4.19;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a * b;
        require(a == 0 || c / a == b);
        return c;
    }

    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;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);
        return c;
    }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    uint256 public totalSupply;
    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);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) public balances;

    /**
    * @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);
        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];
    }

}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
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);
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
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));
    }
}

/**
 * @title TokenTimelock
 * @dev TokenTimelock is a token holder contract that will allow a
 * beneficiary to extract the tokens after a given release time
 */
contract TokenTimelock {
    using SafeERC20 for ERC20Basic;

    // ERC20 basic token contract being held
    ERC20Basic public token;

    // beneficiary of tokens after they are released
    address public beneficiary;

    // timestamp when token release is enabled
    uint64 public releaseTime;

    function TokenTimelock(ERC20Basic _token, address _beneficiary, uint64 _releaseTime) public {
        require(_releaseTime > uint64(block.timestamp));
        token = _token;
        beneficiary = _beneficiary;
        releaseTime = _releaseTime;
    }

    /**
     * @notice Transfers tokens held by timelock to beneficiary.
     */
    function release() public {
        require(uint64(block.timestamp) >= releaseTime);

        uint256 amount = token.balanceOf(this);
        require(amount > 0);

        token.safeTransfer(beneficiary, amount);
    }
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
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);
        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;
        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 remaining) {
        return allowed[_owner][_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
     */
    function increaseApproval (address _spender, uint _addedValue) public returns (bool success) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    function decreaseApproval (address _spender, uint _subtractedValue) public returns (bool success) {
        uint oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowed[msg.sender][_spender] = 0;
        } else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }
}

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is StandardToken {

    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 {
        require(_value > 0);
        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);
        Burn(burner, _value);
    }
}

contract Owned {
    address public owner;

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

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

contract MobilinkToken is BurnableToken, Owned {
    string public constant name = "Mobilink";
    string public constant symbol = "MOBL";
    uint8 public constant decimals = 18;

    /// Maximum tokens to be allocated (9 billion)
    uint256 public constant HARD_CAP = 9000000000 * 10**uint256(decimals);

    /// The owner of this address is the Mobilink team
    address public mobilinkTeamAddress;

    /// The owner of this address is the Mobilink Reserve
    address public reserveAddress;

    /// Time lock contract that holds the team tokens for 90 days
    address public teamTokensLockAddress;

    /// This is the Build Out address
    address public buildOutAddress;

    /// This address is used to keep the tokens for sale
    address public saleTokensVault;

    /// when stage 1 is closed, the trading is open
    bool public stageOneClosed = false;

    /// no tokens can be ever issued when this is set to "true"
    bool public stageTwoClosed = false;

    /// Only allowed to execute before the first stage is closed
    modifier beforeStageOneClosed {
        require(!stageOneClosed && !stageTwoClosed);
        _;
    }

    /// Only allowed to execute after the first stage is closed
    modifier afterStageOneClosed {
        require(stageOneClosed && !stageTwoClosed);
        _;
    }

    function MobilinkToken(address _mobilinkTeamAddress, address _reserveAddress,
                           address _buildOutAddress, address _saleTokensVault) public {
        require(_mobilinkTeamAddress != address(0));
        require(_reserveAddress != address(0));
        require(_buildOutAddress != address(0));
        require(_saleTokensVault != address(0));

        mobilinkTeamAddress = _mobilinkTeamAddress;
        reserveAddress = _reserveAddress;
        buildOutAddress = _buildOutAddress;
        saleTokensVault = _saleTokensVault;

        /// Maximum tokens to be allocated on the sale
        /// (4.14 billion = 0.144 bounty + 0.9 private sale + 3.096 public sale)
        uint256 saleTokens = 4140000000 * 10**uint256(decimals);
        totalSupply = saleTokens;
        balances[saleTokensVault] = saleTokens;

        /// Reserve tokens - 2.61 billion
        uint256 reserveTokens = 2610000000 * 10**uint256(decimals);
        totalSupply = totalSupply.add(reserveTokens);
        balances[reserveAddress] = reserveTokens;

        /// Build Out tokens - 0.9 billion
        uint256 buildOutTokens = 900000000 * 10**uint256(decimals);
        totalSupply = totalSupply.add(buildOutTokens);
        balances[buildOutAddress] = buildOutTokens;
    }

    /// @dev Close the first stage; issue reserve and team tokens
    function closeStageOne() public onlyOwner beforeStageOneClosed {
        stageOneClosed = true;
    }

    /// @dev Close the second stage and overall sale
    function closeStageTwo() public onlyOwner afterStageOneClosed {
        stageTwoClosed = true;
    }

    /// @dev Issue the team tokens
    /// and lock them for 90 days from the day the token is listed on an exchange
    function lockTeamTokens() public onlyOwner afterStageOneClosed {
        require(teamTokensLockAddress == address(0) && totalSupply < HARD_CAP);
 
        /// Team tokens : 1.35 billion
        uint256 teamTokens = 1350000000 * 10**uint256(decimals);

        /// team tokens are locked for 90 days
        TokenTimelock teamTokensLock = new TokenTimelock(this, mobilinkTeamAddress, uint64(block.timestamp) + 60 * 60 * 24 * 90);
        teamTokensLockAddress = address(teamTokensLock);
        totalSupply = totalSupply.add(teamTokens);
        balances[teamTokensLockAddress] = teamTokens;
    }

    /// @dev Trading limited - requires the first stage to have closed
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        if(stageOneClosed) {
            return super.transferFrom(_from, _to, _value);
        }
        return false;
    }

    /// @dev Trading limited - requires the first stage to have closed
    function transfer(address _to, uint256 _value) public returns (bool) {
        if(stageOneClosed || msg.sender == owner || (msg.sender == saleTokensVault && _to == owner)) {
            return super.transfer(_to, _value);
        }
        return false;
    }
}

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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"closeStageTwo","outputs":[],"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":"mobilinkTeamAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","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":true,"inputs":[],"name":"HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"closeStageOne","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"lockTeamTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleTokensVault","outputs":[{"name":"","type":"address"}],"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":"stageTwoClosed","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":true,"inputs":[],"name":"stageOneClosed","outputs":[{"name":"","type":"bool"}],"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":true,"inputs":[],"name":"teamTokensLockAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"reserveAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"buildOutAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_mobilinkTeamAddress","type":"address"},{"name":"_reserveAddress","type":"address"},{"name":"_buildOutAddress","type":"address"},{"name":"_saleTokensVault","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"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"}]

60606040526008805460a060020a61ffff0219169055341561002057600080fd5b6040516080806113b58339810160405280805191906020018051919060200180519190602001805160038054600160a060020a03191633600160a060020a039081169190911790915590925060009150819081908716151561008157600080fd5b600160a060020a038616151561009657600080fd5b600160a060020a03851615156100ab57600080fd5b600160a060020a03841615156100c057600080fd5b60048054600160a060020a0319908116600160a060020a038a8116919091179092556005805482168984161790556007805482168884161790556008805490911686831617908190556b0d608719b45a12e7ac000000600081815591909216815260016020526040902081905592506b086ef0ff82654eb372000000915061015583836401000000006101c48102610d131704565b6000908155600554600160a060020a03168152600160205260408120839055546b02e87669c308736a04000000915061019b9082640100000000610d136101c482021704565b6000908155600754600160a060020a0316815260016020526040902055506101dd945050505050565b6000828201838110156101d657600080fd5b9392505050565b6111c9806101ec6000396000f3006060604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461014d578063095ea7b3146101d75780630b0e13d61461020d57806318160ddd1461022257806323b872dd1461024757806326ed794b1461026f57806327e235e31461029e578063313ce567146102bd5780633a03171c146102e65780633ce3480a146102f957806342966c681461030c57806354c93a4e146103225780636618846314610335578063709cf8c01461035757806370a082311461036a57806377f41164146103895780638da5cb5b1461039c57806395d89b41146103af578063a3246549146103c2578063a9059cbb146103d5578063cd88bac4146103f7578063d73dd6231461040a578063dd62ed3e1461042c578063f79ed94b14610451578063fbf0f7da14610464575b600080fd5b341561015857600080fd5b610160610477565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019c578082015183820152602001610184565b50505050905090810190601f1680156101c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101e257600080fd5b6101f9600160a060020a03600435166024356104ae565b604051901515815260200160405180910390f35b341561021857600080fd5b61022061051b565b005b341561022d57600080fd5b61023561058b565b60405190815260200160405180910390f35b341561025257600080fd5b6101f9600160a060020a0360043581169060243516604435610591565b341561027a57600080fd5b6102826105c3565b604051600160a060020a03909116815260200160405180910390f35b34156102a957600080fd5b610235600160a060020a03600435166105d2565b34156102c857600080fd5b6102d06105e4565b60405160ff909116815260200160405180910390f35b34156102f157600080fd5b6102356105e9565b341561030457600080fd5b6102206105f9565b341561031757600080fd5b610220600435610669565b341561032d57600080fd5b610220610732565b341561034057600080fd5b6101f9600160a060020a036004351660243561087d565b341561036257600080fd5b610282610977565b341561037557600080fd5b610235600160a060020a0360043516610986565b341561039457600080fd5b6101f96109a1565b34156103a757600080fd5b6102826109b1565b34156103ba57600080fd5b6101606109c0565b34156103cd57600080fd5b6101f96109f7565b34156103e057600080fd5b6101f9600160a060020a0360043516602435610a07565b341561040257600080fd5b610282610a80565b341561041557600080fd5b6101f9600160a060020a0360043516602435610a8f565b341561043757600080fd5b610235600160a060020a0360043581169060243516610b33565b341561045c57600080fd5b610282610b5e565b341561046f57600080fd5b610282610b6d565b60408051908101604052600881527f4d6f62696c696e6b000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60035433600160a060020a0390811691161461053657600080fd5b60085460a060020a900460ff168015610559575060085460a860020a900460ff16155b151561056457600080fd5b6008805475ff000000000000000000000000000000000000000000191660a860020a179055565b60005481565b60085460009060a060020a900460ff16156105b8576105b1848484610b7c565b90506105bc565b5060005b9392505050565b600454600160a060020a031681565b60016020526000908152604090205481565b601281565b6b1d14a0219e5482242800000081565b60035433600160a060020a0390811691161461061457600080fd5b60085460a060020a900460ff16158015610638575060085460a860020a900460ff16155b151561064357600080fd5b6008805474ff0000000000000000000000000000000000000000191660a060020a179055565b600080821161067757600080fd5b600160a060020a03331660009081526001602052604090205482111561069c57600080fd5b5033600160a060020a0381166000908152600160205260409020546106c19083610cfe565b600160a060020a038216600090815260016020526040812091909155546106ee908363ffffffff610cfe16565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600354600090819033600160a060020a0390811691161461075257600080fd5b60085460a060020a900460ff168015610775575060085460a860020a900460ff16155b151561078057600080fd5b600654600160a060020a03161580156107a757506000546b1d14a0219e5482242800000090105b15156107b257600080fd5b6004546b045cb19ea48cad1f0600000092503090600160a060020a03166276a70042016107dd610e20565b600160a060020a03938416815291909216602082015267ffffffffffffffff90911660408083019190915260609091019051809103906000f080151561082257600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831617905560005490915061085a9083610d13565b6000908155600654600160a060020a031681526001602052604090209190915550565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156108da57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610911565b6108ea818463ffffffff610cfe16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600854600160a060020a031681565b600160a060020a031660009081526001602052604090205490565b60085460a860020a900460ff1681565b600354600160a060020a031681565b60408051908101604052600481527f4d4f424c00000000000000000000000000000000000000000000000000000000602082015281565b60085460a060020a900460ff1681565b60085460009060a060020a900460ff1680610a30575060035433600160a060020a039081169116145b80610a61575060085433600160a060020a039081169116148015610a615750600354600160a060020a038481169116145b15610a7757610a708383610d25565b9050610515565b50600092915050565b600654600160a060020a031681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ac7908363ffffffff610d1316565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600554600160a060020a031681565b600754600160a060020a031681565b6000600160a060020a0383161515610b9357600080fd5b600160a060020a038416600090815260016020526040902054821115610bb857600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610beb57600080fd5b600160a060020a038416600090815260016020526040902054610c14908363ffffffff610cfe16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610c49908363ffffffff610d1316565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610c91908363ffffffff610cfe16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600082821115610d0d57600080fd5b50900390565b6000828201838110156105bc57600080fd5b6000600160a060020a0383161515610d3c57600080fd5b600160a060020a033316600090815260016020526040902054821115610d6157600080fd5b600160a060020a033316600090815260016020526040902054610d8a908363ffffffff610cfe16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610dbf908363ffffffff610d1316565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60405161036d80610e318339019056006060604052341561000f57600080fd5b60405160608061036d8339810160405280805191906020018051919060200180519150506001604060020a034281169082161161004b57600080fd5b60008054600160a060020a0319908116600160a060020a0395861617825560018054909116939094169290921760a060020a60e060020a031916740100000000000000000000000000000000000000006001604060020a039290921691909102179091556102ae9081906100bf90396000f3006060604052600436106100485763ffffffff60e060020a60003504166338af3eed811461004d57806386d1a69f1461007c578063b91d400114610091578063fc0c546a146100c1575b600080fd5b341561005857600080fd5b6100606100d4565b604051600160a060020a03909116815260200160405180910390f35b341561008757600080fd5b61008f6100e3565b005b341561009c57600080fd5b6100a46101c6565b60405167ffffffffffffffff909116815260200160405180910390f35b34156100cc57600080fd5b6100606101ee565b600154600160a060020a031681565b60015460009067ffffffffffffffff74010000000000000000000000000000000000000000909104811642909116101561011c57600080fd5b60008054600160a060020a0316906370a082319030906040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561017757600080fd5b6102c65a03f1151561018857600080fd5b5050506040518051915050600081116101a057600080fd5b6001546000546101c391600160a060020a0391821691168363ffffffff6101fd16565b50565b60015474010000000000000000000000000000000000000000900467ffffffffffffffff1681565b600054600160a060020a031681565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561025a57600080fd5b6102c65a03f1151561026b57600080fd5b50505060405180519050151561027d57fe5b5050505600a165627a7a72305820ec90f98e1e318389e0464311cff31a1b2bf02ec194970a6dff51f6d982b61bd10029a165627a7a723058200d6e9b932a05ee36e03c578a14729cfd520c5127aeeb6df156fb72eb6955ff0a00290000000000000000000000008960180c38dce4ca71700b43ed29645bb0788c2d00000000000000000000000081846efe34f3944c0ed3111e6f8b513aa504f633000000000000000000000000000ffe502b2c8b46408cad3a83833170021d547b000000000000000000000000121020d701195bca0ee1efd7989ec8a1fb5f2a3e

Deployed Bytecode

0x6060604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461014d578063095ea7b3146101d75780630b0e13d61461020d57806318160ddd1461022257806323b872dd1461024757806326ed794b1461026f57806327e235e31461029e578063313ce567146102bd5780633a03171c146102e65780633ce3480a146102f957806342966c681461030c57806354c93a4e146103225780636618846314610335578063709cf8c01461035757806370a082311461036a57806377f41164146103895780638da5cb5b1461039c57806395d89b41146103af578063a3246549146103c2578063a9059cbb146103d5578063cd88bac4146103f7578063d73dd6231461040a578063dd62ed3e1461042c578063f79ed94b14610451578063fbf0f7da14610464575b600080fd5b341561015857600080fd5b610160610477565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019c578082015183820152602001610184565b50505050905090810190601f1680156101c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101e257600080fd5b6101f9600160a060020a03600435166024356104ae565b604051901515815260200160405180910390f35b341561021857600080fd5b61022061051b565b005b341561022d57600080fd5b61023561058b565b60405190815260200160405180910390f35b341561025257600080fd5b6101f9600160a060020a0360043581169060243516604435610591565b341561027a57600080fd5b6102826105c3565b604051600160a060020a03909116815260200160405180910390f35b34156102a957600080fd5b610235600160a060020a03600435166105d2565b34156102c857600080fd5b6102d06105e4565b60405160ff909116815260200160405180910390f35b34156102f157600080fd5b6102356105e9565b341561030457600080fd5b6102206105f9565b341561031757600080fd5b610220600435610669565b341561032d57600080fd5b610220610732565b341561034057600080fd5b6101f9600160a060020a036004351660243561087d565b341561036257600080fd5b610282610977565b341561037557600080fd5b610235600160a060020a0360043516610986565b341561039457600080fd5b6101f96109a1565b34156103a757600080fd5b6102826109b1565b34156103ba57600080fd5b6101606109c0565b34156103cd57600080fd5b6101f96109f7565b34156103e057600080fd5b6101f9600160a060020a0360043516602435610a07565b341561040257600080fd5b610282610a80565b341561041557600080fd5b6101f9600160a060020a0360043516602435610a8f565b341561043757600080fd5b610235600160a060020a0360043581169060243516610b33565b341561045c57600080fd5b610282610b5e565b341561046f57600080fd5b610282610b6d565b60408051908101604052600881527f4d6f62696c696e6b000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60035433600160a060020a0390811691161461053657600080fd5b60085460a060020a900460ff168015610559575060085460a860020a900460ff16155b151561056457600080fd5b6008805475ff000000000000000000000000000000000000000000191660a860020a179055565b60005481565b60085460009060a060020a900460ff16156105b8576105b1848484610b7c565b90506105bc565b5060005b9392505050565b600454600160a060020a031681565b60016020526000908152604090205481565b601281565b6b1d14a0219e5482242800000081565b60035433600160a060020a0390811691161461061457600080fd5b60085460a060020a900460ff16158015610638575060085460a860020a900460ff16155b151561064357600080fd5b6008805474ff0000000000000000000000000000000000000000191660a060020a179055565b600080821161067757600080fd5b600160a060020a03331660009081526001602052604090205482111561069c57600080fd5b5033600160a060020a0381166000908152600160205260409020546106c19083610cfe565b600160a060020a038216600090815260016020526040812091909155546106ee908363ffffffff610cfe16565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600354600090819033600160a060020a0390811691161461075257600080fd5b60085460a060020a900460ff168015610775575060085460a860020a900460ff16155b151561078057600080fd5b600654600160a060020a03161580156107a757506000546b1d14a0219e5482242800000090105b15156107b257600080fd5b6004546b045cb19ea48cad1f0600000092503090600160a060020a03166276a70042016107dd610e20565b600160a060020a03938416815291909216602082015267ffffffffffffffff90911660408083019190915260609091019051809103906000f080151561082257600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831617905560005490915061085a9083610d13565b6000908155600654600160a060020a031681526001602052604090209190915550565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156108da57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610911565b6108ea818463ffffffff610cfe16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600854600160a060020a031681565b600160a060020a031660009081526001602052604090205490565b60085460a860020a900460ff1681565b600354600160a060020a031681565b60408051908101604052600481527f4d4f424c00000000000000000000000000000000000000000000000000000000602082015281565b60085460a060020a900460ff1681565b60085460009060a060020a900460ff1680610a30575060035433600160a060020a039081169116145b80610a61575060085433600160a060020a039081169116148015610a615750600354600160a060020a038481169116145b15610a7757610a708383610d25565b9050610515565b50600092915050565b600654600160a060020a031681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ac7908363ffffffff610d1316565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600554600160a060020a031681565b600754600160a060020a031681565b6000600160a060020a0383161515610b9357600080fd5b600160a060020a038416600090815260016020526040902054821115610bb857600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610beb57600080fd5b600160a060020a038416600090815260016020526040902054610c14908363ffffffff610cfe16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610c49908363ffffffff610d1316565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610c91908363ffffffff610cfe16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600082821115610d0d57600080fd5b50900390565b6000828201838110156105bc57600080fd5b6000600160a060020a0383161515610d3c57600080fd5b600160a060020a033316600090815260016020526040902054821115610d6157600080fd5b600160a060020a033316600090815260016020526040902054610d8a908363ffffffff610cfe16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610dbf908363ffffffff610d1316565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60405161036d80610e318339019056006060604052341561000f57600080fd5b60405160608061036d8339810160405280805191906020018051919060200180519150506001604060020a034281169082161161004b57600080fd5b60008054600160a060020a0319908116600160a060020a0395861617825560018054909116939094169290921760a060020a60e060020a031916740100000000000000000000000000000000000000006001604060020a039290921691909102179091556102ae9081906100bf90396000f3006060604052600436106100485763ffffffff60e060020a60003504166338af3eed811461004d57806386d1a69f1461007c578063b91d400114610091578063fc0c546a146100c1575b600080fd5b341561005857600080fd5b6100606100d4565b604051600160a060020a03909116815260200160405180910390f35b341561008757600080fd5b61008f6100e3565b005b341561009c57600080fd5b6100a46101c6565b60405167ffffffffffffffff909116815260200160405180910390f35b34156100cc57600080fd5b6100606101ee565b600154600160a060020a031681565b60015460009067ffffffffffffffff74010000000000000000000000000000000000000000909104811642909116101561011c57600080fd5b60008054600160a060020a0316906370a082319030906040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561017757600080fd5b6102c65a03f1151561018857600080fd5b5050506040518051915050600081116101a057600080fd5b6001546000546101c391600160a060020a0391821691168363ffffffff6101fd16565b50565b60015474010000000000000000000000000000000000000000900467ffffffffffffffff1681565b600054600160a060020a031681565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561025a57600080fd5b6102c65a03f1151561026b57600080fd5b50505060405180519050151561027d57fe5b5050505600a165627a7a72305820ec90f98e1e318389e0464311cff31a1b2bf02ec194970a6dff51f6d982b61bd10029a165627a7a723058200d6e9b932a05ee36e03c578a14729cfd520c5127aeeb6df156fb72eb6955ff0a0029

Swarm Source

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