ETH Price: $3,261.90 (-0.62%)
 

Overview

Max Total Supply

3,000,000,000 MIMI

Holders

17,643

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 MIMI

Value
$0.00
0x0bfd85bd836852b181ff219622fbd4db7155d013
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:
MIMI

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
Yes with 50 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-04-07
*/

/**
 * @title SafeMath
 * @dev Math operations with safety checks that revert on error
 */
library SafeMath {
    int256 constant private INT256_MIN = -2**255;

    /**
    * @dev Multiplies two unsigned integers, reverts on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
    * @dev Multiplies two signed integers, reverts on overflow.
    */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        require(!(a == -1 && b == INT256_MIN)); // This is the only case of overflow not detected by the check below

        int256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
    * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
    * @dev Integer division of two signed integers truncating the quotient, reverts on division by zero.
    */
    function div(int256 a, int256 b) internal pure returns (int256) {
        require(b != 0); // Solidity only automatically asserts when dividing by 0
        require(!(b == -1 && a == INT256_MIN)); // This is the only case of overflow

        int256 c = a / b;

        return c;
    }

    /**
    * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
    * @dev Subtracts two signed integers, reverts on overflow.
    */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));

        return c;
    }

    /**
    * @dev Adds two unsigned integers, reverts on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
    * @dev Adds two signed integers, reverts on overflow.
    */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));

        return c;
    }

    /**
    * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
    * reverts when dividing by zero.
    */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}


/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev give an account access to this role
     */
    function add(Role storage role, address account) internal {
        require(account != address(0));
        require(!has(role, account));

        role.bearer[account] = true;
    }

    /**
     * @dev remove an account's access to this role
     */
    function remove(Role storage role, address account) internal {
        require(account != address(0));
        require(has(role, account));

        role.bearer[account] = false;
    }

    /**
     * @dev check if an account has this role
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0));
        return role.bearer[account];
    }
}

contract MinterRole {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(msg.sender);
    }

    modifier onlyMinter() {
        require(isMinter(msg.sender));
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(msg.sender);
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}
/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    function transfer(address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value) external returns (bool);

    function transferFrom(address from, address to, uint256 value) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowed;

    uint256 private _totalSupply;

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

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

    /**
     * @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 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) {
        _transfer(msg.sender, 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) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @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) {
        _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
        _transfer(from, to, value);
        emit Approval(from, msg.sender, _allowed[from][msg.sender]);
        return true;
    }

    /**
     * @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
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        require(spender != address(0));

        _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
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
    * @dev Transfer token for a specified addresses
    * @param from The address to transfer from.
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value);
        _burn(account, value);
        emit Approval(account, msg.sender, _allowed[account][msg.sender]);
    }
}


contract PauserRole {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(msg.sender);
    }

    modifier onlyPauser() {
        require(isPauser(msg.sender));
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(msg.sender);
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is PauserRole {
    event Paused(address account);
    event Unpaused(address account);

    bool private _paused;

    constructor () internal {
        _paused = false;
    }

    /**
     * @return true if the contract is paused, false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @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() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 **/
contract ERC20Pausable is ERC20, 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);
    }

    function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool success) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool success) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

/**
 * @title ERC20Mintable
 * @dev ERC20 minting logic
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev Function to mint tokens
     * @param to The address that will receive the minted tokens.
     * @param value The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address to, uint256 value) public onlyMinter returns (bool) {
        _mint(to, value);
        return true;
    }
}

contract MIMI is  ERC20Mintable,ERC20Pausable{
    string public name;
    uint8  public decimals;
    string public symbol;
    uint256 private _cap;

    constructor (string memory _name,string memory _symbol,uint8 _decimals) public {
        decimals = _decimals;
        name = _name;
        symbol = _symbol;
        _cap = 10000000000000000000000000000;
    }

    /**
     * @return the cap for the token minting.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    function _mint(address account, uint256 value) internal {
        require(totalSupply().add(value) <= _cap);
        super._mint(account, 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":"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":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b506040516200120538038062001205833981018060405260608110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81516401000000008111828201871017156200007f57600080fd5b505092919060200180516401000000008111156200009c57600080fd5b82016020810184811115620000b057600080fd5b8151640100000000811182820187101715620000cb57600080fd5b50506020909101519092509050620000ec3364010000000062000161810204565b6200010033640100000000620001b3810204565b6005805460ff199081169091556007805490911660ff831617905582516200013090600690602086019062000298565b5081516200014690600890602085019062000298565b50506b204fce5e3e25026110000000600955506200033d9050565b6200017c60038264010000000062000e1e6200020582021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001ce60048264010000000062000e1e6200020582021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600160a060020a03811615156200021b57600080fd5b62000230828264010000000062000260810204565b156200023b57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000600160a060020a03821615156200027857600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002db57805160ff19168380011785556200030b565b828001600101855582156200030b579182015b828111156200030b578251825591602001919060010190620002ee565b50620003199291506200031d565b5090565b6200033a91905b8082111562000319576000815560010162000324565b90565b610eb8806200034d6000396000f3fe60806040526004361061010e5763ffffffff60e060020a60003504166306fdde038114610113578063095ea7b31461019d57806318160ddd146101ea57806323b872dd14610211578063313ce56714610254578063355274ea1461027f57806339509351146102945780633f4ba83a146102cd57806340c10f19146102e457806346fbf68e1461031d5780635c975abb146103505780636ef8d66d1461036557806370a082311461037a57806382dc1ec4146103ad5780638456cb59146103e057806395d89b41146103f5578063983b2d561461040a578063986502751461043d578063a457c2d714610452578063a9059cbb1461048b578063aa271e1a146104c4578063dd62ed3e146104f7575b600080fd5b34801561011f57600080fd5b50610128610532565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016257818101518382015260200161014a565b50505050905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a957600080fd5b506101d6600480360360408110156101c057600080fd5b50600160a060020a0381351690602001356105c0565b604080519115158252519081900360200190f35b3480156101f657600080fd5b506101ff6105e4565b60408051918252519081900360200190f35b34801561021d57600080fd5b506101d66004803603606081101561023457600080fd5b50600160a060020a038135811691602081013590911690604001356105ea565b34801561026057600080fd5b50610269610610565b6040805160ff9092168252519081900360200190f35b34801561028b57600080fd5b506101ff610619565b3480156102a057600080fd5b506101d6600480360360408110156102b757600080fd5b50600160a060020a03813516906020013561061f565b3480156102d957600080fd5b506102e261063c565b005b3480156102f057600080fd5b506101d66004803603604081101561030757600080fd5b50600160a060020a0381351690602001356106a0565b34801561032957600080fd5b506101d66004803603602081101561034057600080fd5b5035600160a060020a03166106c9565b34801561035c57600080fd5b506101d66106e2565b34801561037157600080fd5b506102e26106eb565b34801561038657600080fd5b506101ff6004803603602081101561039d57600080fd5b5035600160a060020a03166106f6565b3480156103b957600080fd5b506102e2600480360360208110156103d057600080fd5b5035600160a060020a0316610711565b3480156103ec57600080fd5b506102e2610731565b34801561040157600080fd5b50610128610797565b34801561041657600080fd5b506102e26004803603602081101561042d57600080fd5b5035600160a060020a03166107f2565b34801561044957600080fd5b506102e261080f565b34801561045e57600080fd5b506101d66004803603604081101561047557600080fd5b50600160a060020a038135169060200135610818565b34801561049757600080fd5b506101d6600480360360408110156104ae57600080fd5b50600160a060020a038135169060200135610835565b3480156104d057600080fd5b506101d6600480360360208110156104e757600080fd5b5035600160a060020a0316610852565b34801561050357600080fd5b506101ff6004803603604081101561051a57600080fd5b50600160a060020a0381358116916020013516610865565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105b85780601f1061058d576101008083540402835291602001916105b8565b820191906000526020600020905b81548152906001019060200180831161059b57829003601f168201915b505050505081565b60055460009060ff16156105d357600080fd5b6105dd8383610890565b9392505050565b60025490565b60055460009060ff16156105fd57600080fd5b6106088484846108fc565b949350505050565b60075460ff1681565b60095490565b60055460009060ff161561063257600080fd5b6105dd83836109b3565b610645336106c9565b151561065057600080fd5b60055460ff16151561066157600080fd5b6005805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006106ab33610852565b15156106b657600080fd5b6106c08383610a51565b50600192915050565b60006106dc60048363ffffffff610a8516565b92915050565b60055460ff1690565b6106f433610abc565b565b600160a060020a031660009081526020819052604090205490565b61071a336106c9565b151561072557600080fd5b61072e81610b04565b50565b61073a336106c9565b151561074557600080fd5b60055460ff161561075557600080fd5b6005805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105b85780601f1061058d576101008083540402835291602001916105b8565b6107fb33610852565b151561080657600080fd5b61072e81610b4c565b6106f433610b94565b60055460009060ff161561082b57600080fd5b6105dd8383610bdc565b60055460009060ff161561084857600080fd5b6105dd8383610c27565b60006106dc60038363ffffffff610a8516565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000600160a060020a03831615156108a757600080fd5b336000818152600160209081526040808320600160a060020a0388168085529083529281902086905580518681529051929392600080516020610e6d833981519152929181900390910190a350600192915050565b600160a060020a0383166000908152600160209081526040808320338452909152812054610930908363ffffffff610c3416565b600160a060020a038516600090815260016020908152604080832033845290915290205561095f848484610c49565b600160a060020a038416600081815260016020908152604080832033808552908352928190205481519081529051929392600080516020610e6d833981519152929181900390910190a35060019392505050565b6000600160a060020a03831615156109ca57600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546109fe908363ffffffff610d1616565b336000818152600160209081526040808320600160a060020a038916808552908352928190208590558051948552519193600080516020610e6d833981519152929081900390910190a350600192915050565b600954610a6c82610a606105e4565b9063ffffffff610d1616565b1115610a7757600080fd5b610a818282610d28565b5050565b6000600160a060020a0382161515610a9c57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610acd60048263ffffffff610dd216565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610b1560048263ffffffff610e1e16565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610b5d60038263ffffffff610e1e16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610ba560038263ffffffff610dd216565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0383161515610bf357600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546109fe908363ffffffff610c3416565b60006106c0338484610c49565b600082821115610c4357600080fd5b50900390565b600160a060020a0382161515610c5e57600080fd5b600160a060020a038316600090815260208190526040902054610c87908263ffffffff610c3416565b600160a060020a038085166000908152602081905260408082209390935590841681522054610cbc908263ffffffff610d1616565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156105dd57600080fd5b600160a060020a0382161515610d3d57600080fd5b600254610d50908263ffffffff610d1616565b600255600160a060020a038216600090815260208190526040902054610d7c908263ffffffff610d1616565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0381161515610de757600080fd5b610df18282610a85565b1515610dfc57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0381161515610e3357600080fd5b610e3d8282610a85565b15610e4757600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fe8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820af2a5a3d080d592f46066d9bc2682cb1c41723b1aec5a076f464aa70d2d524960029000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000044d494d490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d494d4900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061010e5763ffffffff60e060020a60003504166306fdde038114610113578063095ea7b31461019d57806318160ddd146101ea57806323b872dd14610211578063313ce56714610254578063355274ea1461027f57806339509351146102945780633f4ba83a146102cd57806340c10f19146102e457806346fbf68e1461031d5780635c975abb146103505780636ef8d66d1461036557806370a082311461037a57806382dc1ec4146103ad5780638456cb59146103e057806395d89b41146103f5578063983b2d561461040a578063986502751461043d578063a457c2d714610452578063a9059cbb1461048b578063aa271e1a146104c4578063dd62ed3e146104f7575b600080fd5b34801561011f57600080fd5b50610128610532565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016257818101518382015260200161014a565b50505050905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a957600080fd5b506101d6600480360360408110156101c057600080fd5b50600160a060020a0381351690602001356105c0565b604080519115158252519081900360200190f35b3480156101f657600080fd5b506101ff6105e4565b60408051918252519081900360200190f35b34801561021d57600080fd5b506101d66004803603606081101561023457600080fd5b50600160a060020a038135811691602081013590911690604001356105ea565b34801561026057600080fd5b50610269610610565b6040805160ff9092168252519081900360200190f35b34801561028b57600080fd5b506101ff610619565b3480156102a057600080fd5b506101d6600480360360408110156102b757600080fd5b50600160a060020a03813516906020013561061f565b3480156102d957600080fd5b506102e261063c565b005b3480156102f057600080fd5b506101d66004803603604081101561030757600080fd5b50600160a060020a0381351690602001356106a0565b34801561032957600080fd5b506101d66004803603602081101561034057600080fd5b5035600160a060020a03166106c9565b34801561035c57600080fd5b506101d66106e2565b34801561037157600080fd5b506102e26106eb565b34801561038657600080fd5b506101ff6004803603602081101561039d57600080fd5b5035600160a060020a03166106f6565b3480156103b957600080fd5b506102e2600480360360208110156103d057600080fd5b5035600160a060020a0316610711565b3480156103ec57600080fd5b506102e2610731565b34801561040157600080fd5b50610128610797565b34801561041657600080fd5b506102e26004803603602081101561042d57600080fd5b5035600160a060020a03166107f2565b34801561044957600080fd5b506102e261080f565b34801561045e57600080fd5b506101d66004803603604081101561047557600080fd5b50600160a060020a038135169060200135610818565b34801561049757600080fd5b506101d6600480360360408110156104ae57600080fd5b50600160a060020a038135169060200135610835565b3480156104d057600080fd5b506101d6600480360360208110156104e757600080fd5b5035600160a060020a0316610852565b34801561050357600080fd5b506101ff6004803603604081101561051a57600080fd5b50600160a060020a0381358116916020013516610865565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105b85780601f1061058d576101008083540402835291602001916105b8565b820191906000526020600020905b81548152906001019060200180831161059b57829003601f168201915b505050505081565b60055460009060ff16156105d357600080fd5b6105dd8383610890565b9392505050565b60025490565b60055460009060ff16156105fd57600080fd5b6106088484846108fc565b949350505050565b60075460ff1681565b60095490565b60055460009060ff161561063257600080fd5b6105dd83836109b3565b610645336106c9565b151561065057600080fd5b60055460ff16151561066157600080fd5b6005805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006106ab33610852565b15156106b657600080fd5b6106c08383610a51565b50600192915050565b60006106dc60048363ffffffff610a8516565b92915050565b60055460ff1690565b6106f433610abc565b565b600160a060020a031660009081526020819052604090205490565b61071a336106c9565b151561072557600080fd5b61072e81610b04565b50565b61073a336106c9565b151561074557600080fd5b60055460ff161561075557600080fd5b6005805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105b85780601f1061058d576101008083540402835291602001916105b8565b6107fb33610852565b151561080657600080fd5b61072e81610b4c565b6106f433610b94565b60055460009060ff161561082b57600080fd5b6105dd8383610bdc565b60055460009060ff161561084857600080fd5b6105dd8383610c27565b60006106dc60038363ffffffff610a8516565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000600160a060020a03831615156108a757600080fd5b336000818152600160209081526040808320600160a060020a0388168085529083529281902086905580518681529051929392600080516020610e6d833981519152929181900390910190a350600192915050565b600160a060020a0383166000908152600160209081526040808320338452909152812054610930908363ffffffff610c3416565b600160a060020a038516600090815260016020908152604080832033845290915290205561095f848484610c49565b600160a060020a038416600081815260016020908152604080832033808552908352928190205481519081529051929392600080516020610e6d833981519152929181900390910190a35060019392505050565b6000600160a060020a03831615156109ca57600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546109fe908363ffffffff610d1616565b336000818152600160209081526040808320600160a060020a038916808552908352928190208590558051948552519193600080516020610e6d833981519152929081900390910190a350600192915050565b600954610a6c82610a606105e4565b9063ffffffff610d1616565b1115610a7757600080fd5b610a818282610d28565b5050565b6000600160a060020a0382161515610a9c57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610acd60048263ffffffff610dd216565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610b1560048263ffffffff610e1e16565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610b5d60038263ffffffff610e1e16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610ba560038263ffffffff610dd216565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0383161515610bf357600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546109fe908363ffffffff610c3416565b60006106c0338484610c49565b600082821115610c4357600080fd5b50900390565b600160a060020a0382161515610c5e57600080fd5b600160a060020a038316600090815260208190526040902054610c87908263ffffffff610c3416565b600160a060020a038085166000908152602081905260408082209390935590841681522054610cbc908263ffffffff610d1616565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156105dd57600080fd5b600160a060020a0382161515610d3d57600080fd5b600254610d50908263ffffffff610d1616565b600255600160a060020a038216600090815260208190526040902054610d7c908263ffffffff610d1616565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0381161515610de757600080fd5b610df18282610a85565b1515610dfc57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0381161515610e3357600080fd5b610e3d8282610a85565b15610e4757600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fe8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820af2a5a3d080d592f46066d9bc2682cb1c41723b1aec5a076f464aa70d2d524960029

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000044d494d490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d494d4900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MIMI
Arg [1] : _symbol (string): MIMI
Arg [2] : _decimals (uint8): 18

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 4d494d4900000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4d494d4900000000000000000000000000000000000000000000000000000000


Swarm Source

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