ETH Price: $2,508.07 (-0.33%)

Token

MOTC (MOTC)
 

Overview

Max Total Supply

1,000,000,000 MOTC

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
99,260 MOTC

Value
$0.00
0x161ac31D3176a6965db35bB4382Dd5280eC40B58
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:
MOTC

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-03-08
*/

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

    function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    function add(uint256 a, uint256 b) internal constant returns (uint256) {
        uint256 c = a + b;
        assert(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 constant 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) 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 constant 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 constant returns (uint256);
    function transferFrom(address from, address to, uint256 value) public returns (bool);
    function approve(address spender, uint256 value) public returns (bool);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @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 constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address public owner;


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


    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    function Ownable() {
        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) onlyOwner public {
        require(newOwner != address(0));
        OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }

}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
    event Pause();
    event Unpause();

    bool public paused = false;


    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!paused);
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(paused);
        _;
    }

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() onlyOwner whenNotPaused public {
        paused = true;
        Pause();
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() onlyOwner whenPaused public {
        paused = false;
        Unpause();
    }
}

/**
 * @title Pausable token
 *
 * @dev StandardToken modified with pausable transfers.
 **/

contract PausableToken is StandardToken, Pausable {

    function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
        return super.transfer(_to, _value);
    }

    function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
        return super.transferFrom(_from, _to, _value);
    }

    function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
        return super.approve(_spender, _value);
    }
}

/**
 * @title QASH Token
 *
 * @dev Implementation of QASH Token based on the basic standard token.
 */
contract MOTC is PausableToken {

    function () {
        //if ether is sent to this address, send it back.
        revert();
    }

    /**
     * Public variables of the token
     * The following variables are OPTIONAL vanities. One does not have to include them.
     * They allow one to customise the token contract & in no way influences the core functionality.
     * Some wallets/interfaces might not even bother to look at this information.
     */
    string public name;
    uint8 public decimals;
    string public symbol;
    string public version = '1.0.0';

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _totalSupply total supply of the token.
     * @param _name token name e.g QASH Token.
     * @param _symbol token symbol e.g QASH.
     * @param _decimals amount of decimals.
     */
    function MOTC(uint256 _totalSupply, string _name, string _symbol, uint8 _decimals) {
        balances[msg.sender] = _totalSupply;    // Give the creator all initial tokens
        totalSupply = _totalSupply;
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
    }
}

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":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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","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":"_totalSupply","type":"uint256"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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"}]

6003805460a060020a60ff021916905560c0604052600560808190527f312e302e3000000000000000000000000000000000000000000000000000000060a090815261004e91600791906100f9565b5034801561005b57600080fd5b50604051610b95380380610b95833981016040908152815160208084015183850151606086015160038054600160a060020a031916339081179091556000908152600185529586208590559484905590850180519395909491019290916100c7916004918601906100f9565b5081516100db9060069060208501906100f9565b506005805460ff191660ff9290921691909117905550610194915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061013a57805160ff1916838001178555610167565b82800160010185558215610167579182015b8281111561016757825182559160200191906001019061014c565b50610173929150610177565b5090565b61019191905b80821115610173576000815560010161017d565b90565b6109f2806101a36000396000f3006080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ec578063095ea7b31461017657806318160ddd146101ae57806323b872dd146101d5578063313ce567146101ff5780633f4ba83a1461022a57806354fd4d50146102415780635c975abb1461025657806370a082311461026b5780638456cb591461028c5780638da5cb5b146102a157806395d89b41146102d2578063a9059cbb146102e7578063dd62ed3e1461030b578063f2fde38b14610332575b3480156100e657600080fd5b50600080fd5b3480156100f857600080fd5b50610101610353565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013b578181015183820152602001610123565b50505050905090810190601f1680156101685780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018257600080fd5b5061019a600160a060020a03600435166024356103e1565b604080519115158252519081900360200190f35b3480156101ba57600080fd5b506101c361040c565b60408051918252519081900360200190f35b3480156101e157600080fd5b5061019a600160a060020a0360043581169060243516604435610412565b34801561020b57600080fd5b5061021461043f565b6040805160ff9092168252519081900360200190f35b34801561023657600080fd5b5061023f610448565b005b34801561024d57600080fd5b506101016104c0565b34801561026257600080fd5b5061019a61051b565b34801561027757600080fd5b506101c3600160a060020a036004351661052b565b34801561029857600080fd5b5061023f610546565b3480156102ad57600080fd5b506102b66105c3565b60408051600160a060020a039092168252519081900360200190f35b3480156102de57600080fd5b506101016105d2565b3480156102f357600080fd5b5061019a600160a060020a036004351660243561062d565b34801561031757600080fd5b506101c3600160a060020a0360043581169060243516610651565b34801561033e57600080fd5b5061023f600160a060020a036004351661067c565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103d95780601f106103ae576101008083540402835291602001916103d9565b820191906000526020600020905b8154815290600101906020018083116103bc57829003601f168201915b505050505081565b60035460009060a060020a900460ff16156103fb57600080fd5b6104058383610711565b9392505050565b60005481565b60035460009060a060020a900460ff161561042c57600080fd5b610437848484610777565b949350505050565b60055460ff1681565b600354600160a060020a0316331461045f57600080fd5b60035460a060020a900460ff16151561047757600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103d95780601f106103ae576101008083540402835291602001916103d9565b60035460a060020a900460ff1681565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a0316331461055d57600080fd5b60035460a060020a900460ff161561057457600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103d95780601f106103ae576101008083540402835291602001916103d9565b60035460009060a060020a900460ff161561064757600080fd5b61040583836108d9565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461069357600080fd5b600160a060020a03811615156106a857600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a03831660009081526001602052604081205482111561079c57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156107cc57600080fd5b600160a060020a0384166000908152600160205260409020546107f5908363ffffffff6109a516565b600160a060020a03808616600090815260016020526040808220939093559085168152205461082a908363ffffffff6109b716565b600160a060020a03808516600090815260016020908152604080832094909455918716815260028252828120338252909152205461086e908363ffffffff6109a516565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b336000908152600160205260408120548211156108f557600080fd5b33600090815260016020526040902054610915908363ffffffff6109a516565b3360009081526001602052604080822092909255600160a060020a03851681522054610947908363ffffffff6109b716565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6000828211156109b157fe5b50900390565b60008282018381101561040557fe00a165627a7a7230582086863122f78b5856c6ff41a2a8c79b8997cfe7e83ffaa1d465054f7efa2365bd00290000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000044d4f54430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f544300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ec578063095ea7b31461017657806318160ddd146101ae57806323b872dd146101d5578063313ce567146101ff5780633f4ba83a1461022a57806354fd4d50146102415780635c975abb1461025657806370a082311461026b5780638456cb591461028c5780638da5cb5b146102a157806395d89b41146102d2578063a9059cbb146102e7578063dd62ed3e1461030b578063f2fde38b14610332575b3480156100e657600080fd5b50600080fd5b3480156100f857600080fd5b50610101610353565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013b578181015183820152602001610123565b50505050905090810190601f1680156101685780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018257600080fd5b5061019a600160a060020a03600435166024356103e1565b604080519115158252519081900360200190f35b3480156101ba57600080fd5b506101c361040c565b60408051918252519081900360200190f35b3480156101e157600080fd5b5061019a600160a060020a0360043581169060243516604435610412565b34801561020b57600080fd5b5061021461043f565b6040805160ff9092168252519081900360200190f35b34801561023657600080fd5b5061023f610448565b005b34801561024d57600080fd5b506101016104c0565b34801561026257600080fd5b5061019a61051b565b34801561027757600080fd5b506101c3600160a060020a036004351661052b565b34801561029857600080fd5b5061023f610546565b3480156102ad57600080fd5b506102b66105c3565b60408051600160a060020a039092168252519081900360200190f35b3480156102de57600080fd5b506101016105d2565b3480156102f357600080fd5b5061019a600160a060020a036004351660243561062d565b34801561031757600080fd5b506101c3600160a060020a0360043581169060243516610651565b34801561033e57600080fd5b5061023f600160a060020a036004351661067c565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103d95780601f106103ae576101008083540402835291602001916103d9565b820191906000526020600020905b8154815290600101906020018083116103bc57829003601f168201915b505050505081565b60035460009060a060020a900460ff16156103fb57600080fd5b6104058383610711565b9392505050565b60005481565b60035460009060a060020a900460ff161561042c57600080fd5b610437848484610777565b949350505050565b60055460ff1681565b600354600160a060020a0316331461045f57600080fd5b60035460a060020a900460ff16151561047757600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103d95780601f106103ae576101008083540402835291602001916103d9565b60035460a060020a900460ff1681565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a0316331461055d57600080fd5b60035460a060020a900460ff161561057457600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103d95780601f106103ae576101008083540402835291602001916103d9565b60035460009060a060020a900460ff161561064757600080fd5b61040583836108d9565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461069357600080fd5b600160a060020a03811615156106a857600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a03831660009081526001602052604081205482111561079c57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156107cc57600080fd5b600160a060020a0384166000908152600160205260409020546107f5908363ffffffff6109a516565b600160a060020a03808616600090815260016020526040808220939093559085168152205461082a908363ffffffff6109b716565b600160a060020a03808516600090815260016020908152604080832094909455918716815260028252828120338252909152205461086e908363ffffffff6109a516565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b336000908152600160205260408120548211156108f557600080fd5b33600090815260016020526040902054610915908363ffffffff6109a516565b3360009081526001602052604080822092909255600160a060020a03851681522054610947908363ffffffff6109b716565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6000828211156109b157fe5b50900390565b60008282018381101561040557fe00a165627a7a7230582086863122f78b5856c6ff41a2a8c79b8997cfe7e83ffaa1d465054f7efa2365bd0029

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

0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000044d4f54430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f544300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000000000000000000000
Arg [1] : _name (string): MOTC
Arg [2] : _symbol (string): MOTC
Arg [3] : _decimals (uint8): 18

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4d4f544300000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4d4f544300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8309:1197:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8309:1197:0;8431:8;;;8786:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8786:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8786:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8049:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8049:144:0;-1:-1:-1;;;;;8049:144:0;;;;;;;;;;;;;;;;;;;;;;;;;1070:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1070:26:0;;;;;;;;;;;;;;;;;;;;7875:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7875:166:0;-1:-1:-1;;;;;7875:166:0;;;;;;;;;;;;8811:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8811:21:0;;;;;;;;;;;;;;;;;;;;;;;7465:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7465:100:0;;;;;;8866:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8866:31:0;;;;6787:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6787:26:0;;;;2376:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2376:119:0;-1:-1:-1;;;;;2376:119:0;;;;;7272:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7272:98:0;;;;5731:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5731:20:0;;;;;;;;-1:-1:-1;;;;;5731:20:0;;;;;;;;;;;;;;8839;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8839:20:0;;;;7731:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7731:136:0;-1:-1:-1;;;;;7731:136:0;;;;;;;5357:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5357:148:0;-1:-1:-1;;;;;5357:148:0;;;;;;;;;;6394:187;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6394:187:0;-1:-1:-1;;;;;6394:187:0;;;;;8786:18;;;;;;;;;;;;;;;-1:-1:-1;;8786:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8049:144::-;6975:6;;8130:4;;-1:-1:-1;;;6975:6:0;;;;6974:7;6966:16;;;;;;8154:31;8168:8;8178:6;8154:13;:31::i;:::-;8147:38;8049:144;-1:-1:-1;;;8049:144:0:o;1070:26::-;;;;:::o;7875:166::-;6975:6;;7971:4;;-1:-1:-1;;;6975:6:0;;;;6974:7;6966:16;;;;;;7995:38;8014:5;8021:3;8026:6;7995:18;:38::i;:::-;7988:45;7875:166;-1:-1:-1;;;;7875:166:0:o;8811:21::-;;;;;;:::o;7465:100::-;6189:5;;-1:-1:-1;;;;;6189:5:0;6175:10;:19;6167:28;;;;;;7153:6;;-1:-1:-1;;;7153:6:0;;;;7145:15;;;;;;;;7523:6;:14;;-1:-1:-1;;7523:14:0;;;7548:9;;;;7532:5;;7548:9;7465:100::o;8866:31::-;;;;;;;;;;;;;;;-1:-1:-1;;8866:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6787:26;;;-1:-1:-1;;;6787:26:0;;;;;:::o;2376:119::-;-1:-1:-1;;;;;2471:16:0;2436:15;2471:16;;;:8;:16;;;;;;;2376:119::o;7272:98::-;6189:5;;-1:-1:-1;;;;;6189:5:0;6175:10;:19;6167:28;;;;;;6975:6;;-1:-1:-1;;;6975:6:0;;;;6974:7;6966:16;;;;;;7331:6;:13;;-1:-1:-1;;7331:13:0;-1:-1:-1;;;7331:13:0;;;7355:7;;;;7331:13;;7355:7;7272:98::o;5731:20::-;;;-1:-1:-1;;;;;5731:20:0;;:::o;8839:::-;;;;;;;;;;;;;;;-1:-1:-1;;8839:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7731:136;6975:6;;7808:4;;-1:-1:-1;;;6975:6:0;;;;6974:7;6966:16;;;;;;7832:27;7847:3;7852:6;7832:14;:27::i;5357:148::-;-1:-1:-1;;;;;5472:15:0;;;5435:17;5472:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5357:148::o;6394:187::-;6189:5;;-1:-1:-1;;;;;6189:5:0;6175:10;:19;6167:28;;;;;;-1:-1:-1;;;;;6475:22:0;;;;6467:31;;;;;;6530:5;;6509:37;;-1:-1:-1;;;;;6509:37:0;;;;6530:5;;6509:37;;6530:5;;6509:37;6557:5;:16;;-1:-1:-1;;6557:16:0;-1:-1:-1;;;;;6557:16:0;;;;;;;;;;6394:187::o;4815:201::-;4907:10;4882:4;4899:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4899:29:0;;;;;;;;;;;:38;;;4948;;;;;;;4882:4;;4899:29;;4907:10;;4948:38;;;;;;;;-1:-1:-1;5004:4:0;4815:201;;;;:::o;3672:486::-;-1:-1:-1;;;;;3829:15:0;;3754:4;3829:15;;;:8;:15;;;;;;3819:25;;;3811:34;;;;;;-1:-1:-1;;;;;3874:14:0;;;;;;:7;:14;;;;;;;;3889:10;3874:26;;;;;;;;3864:36;;;3856:45;;;;;;-1:-1:-1;;;;;3932:15:0;;;;;;:8;:15;;;;;;:27;;3952:6;3932:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;3914:15:0;;;;;;;:8;:15;;;;;;:45;;;;3986:13;;;;;;;:25;;4004:6;3986:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3970:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;4051:14;;;;;:7;:14;;;;;4066:10;4051:26;;;;;;;:38;;4082:6;4051:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4022:14:0;;;;;;;:7;:14;;;;;;;;4037:10;4022:26;;;;;;;;:67;;;;4100:28;;;;;;;;;;;4022:14;;4100:28;;;;;;;;;;;-1:-1:-1;4146:4:0;3672:486;;;;;:::o;1730:421::-;1877:10;1793:4;1868:20;;;:8;:20;;;;;;1858:30;;;1850:39;;;;;;2002:10;1993:20;;;;:8;:20;;;;;;:32;;2018:6;1993:32;:24;:32;:::i;:::-;1979:10;1970:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;2052:13:0;;;;;;:25;;2070:6;2052:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2036:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;2088:33;;;;;;;2036:13;;2097:10;;2088:33;;;;;;;;;;-1:-1:-1;2139:4:0;1730:421;;;;:::o;617:127::-;679:7;706:6;;;;699:14;;;;-1:-1:-1;731:5:0;;;617:127::o;752:151::-;814:7;846:5;;;869:6;;;;862:14;;

Swarm Source

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