ETH Price: $3,630.06 (+17.98%)
Gas: 37 Gwei

Token

INFLEUM Token (IFUM)
 

Overview

Max Total Supply

3,000,000,000 IFUM

Holders

14,234

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
450 IFUM

Value
$0.00
0xf3475c26da0827e226ca29e38b301f4713ea5549
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:
IFUM

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-11-08
*/

pragma solidity ^0.4.24;

contract Ownable {

    address private _owner;
    
    event OwnershipRenounced(address indexed previousOwner);
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

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

    /**
    * @return the address of the owner.
    */
    function owner() public view returns(address) {
        return _owner;
    }

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

    /**
    * @return true if `msg.sender` is the owner of the contract.
    */
    function isOwner() public view returns(bool) {
        return msg.sender == _owner;
    }

    /**
    * @dev Allows the current owner to relinquish control of the contract.
    * @notice Renouncing to ownership will leave the contract without an owner.
    * It will not be possible to call the functions with the `onlyOwner`
    * modifier anymore.
    */
    function renounceOwnership() public onlyOwner {
        emit OwnershipRenounced(_owner);
        _owner = address(0);
    }

    /**
    * @dev Allows the current owner to transfer control of the contract to a newOwner.
    * @param newOwner The address to transfer ownership to.
    */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
    * @dev Transfers control of the contract to a newOwner.
    * @param newOwner The address to transfer ownership to.
    */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

library SafeMath {

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

        return c;
    }

    /**
    * @dev Subtracts two numbers, 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 Adds two numbers, reverts on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
    * @dev Divides two numbers 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;
    }
}

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) {
        require(value <= _balances[msg.sender]);
        require(to != address(0));

        _balances[msg.sender] = _balances[msg.sender].sub(value);
        _balances[to] = _balances[to].add(value);
        emit 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
    * @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(value <= _balances[from]);
        require(value <= _allowed[from][msg.sender]);
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
        emit Transfer(from, to, value);
        return true;
    }

    /**
    * @dev Increase the amount of tokens that an owner allowed to a spender.
    * approve should be called when allowed_[_spender] == 0. To increment
    * allowed value is better to use this function to avoid 2 calls (and wait until
    * the first transaction is mined)
    * From MonolithDAO Token.sol
    * @param spender The address which will spend the funds.
    * @param addedValue The amount of tokens to increase the allowance by.
    */
    function 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
    * @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 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 amount The amount that will be created.
    */
    function _mint(address account, uint256 amount) internal {
        require(account != 0);
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

    /**
    * @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.
    * @param account The account whose tokens will be burnt.
    * @param amount The amount that will be burnt.
    */
    function _burnFrom(address account, uint256 amount) internal {
        require(amount <= _allowed[account][msg.sender]);

        // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
        // this function needs to emit an event with the updated approval.
        _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(
        amount);
        _burn(account, amount);
    }
}

contract ERC20Burnable is ERC20 {

    /**
    * @dev Burns a specific amount of tokens.
    * @param value The amount of token to be burned.
    */
    function burn(uint256 value) public {
        _burn(msg.sender, value);
    }

    /**
    * @dev Burns a specific amount of tokens from the target address and decrements allowance
    * @param from address The address which you want to send tokens from
    * @param value uint256 The amount of token to be burned
    */
    function burnFrom(address from, uint256 value) public {
        _burnFrom(from, value);
    }

    /**
    * @dev Overrides ERC20._burn in order for burn and burnFrom to emit
    * an additional Burn event.
    */
    function _burn(address who, uint256 value) internal {
        super._burn(who, value);
    }
}

contract IFUM is Ownable, ERC20Burnable {

    string public name;
    
    string public symbol;
    
    uint8 public decimals;

    address private _crowdsale;

    bool private _freezed;

    mapping (address => bool) private _locked;
    
    constructor() public {
        symbol = "IFUM";
        name = "INFLEUM Token";
        decimals = 8;
        _crowdsale = address(0);
        _freezed = true;
    }

    function setCrowdsale(address crowdsale) public {
        require(crowdsale != address(0), "Invalid address");
        require(_crowdsale == address(0), "It is allowed only one time.");
        _crowdsale = crowdsale;
        _mint(crowdsale, 3000000000 * 10 ** uint(decimals));
    }

    function isFreezed() public view returns (bool) {
        return _freezed;
    }

    function unfreeze() public {
        require(msg.sender == _crowdsale, "Only crowdsale contract can unfreeze this token.");
        _freezed = false;
    }

    function isLocked(address account) public view returns (bool) {
        return _locked[account];
    }

    modifier test(address account) {
        require(!isLocked(account), "It is a locked account.");
        require(!_freezed || _crowdsale == account, "A token is frozen or not crowdsale contract executes this function.");
        _;
    }

    function lockAccount(address account) public onlyOwner {
        require(!isLocked(account), "It is already a locked account.");
        _locked[account] = true;
        emit LockAccount(account);
    }

    function unlockAccount(address account) public onlyOwner {
        require(isLocked(account), "It is already a unlocked account.");
        _locked[account] = false;
        emit UnlockAccount(account);
    }

    function transfer(address to, uint256 value) public test(msg.sender) returns (bool) {
        return super.transfer(to, value);
    }

    function approve(address spender, uint256 value) public test(msg.sender) returns (bool) {
        return super.approve(spender, value);
    }

    function transferFrom(address from, address to, uint256 value) public test(from) returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function increaseAllowance(address spender, uint256 addedValue) public test(msg.sender) returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public test(msg.sender) returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }

    function burn(uint256 value) public test(msg.sender) {
        return super.burn(value);
    }

    function burnFrom(address from, uint256 value) public test(from) {
        return super.burnFrom(from, value);
    }

    event LockAccount(address indexed account);

    event UnlockAccount(address indexed account);
}

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":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"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":"account","type":"address"}],"name":"lockAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"crowdsale","type":"address"}],"name":"setCrowdsale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isLocked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unfreeze","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":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","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":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"unlockAccount","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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","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":"isFreezed","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"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"LockAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"UnlockAccount","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

60806040523480156200001157600080fd5b5060008054600160a060020a031916331790556040805180820190915260048082527f4946554d0000000000000000000000000000000000000000000000000000000060209092019182526200006a91600591620000ea565b5060408051808201909152600d8082527f494e464c45554d20546f6b656e000000000000000000000000000000000000006020909201918252620000b191600491620000ea565b506006805461010060b060020a031960ff199091166008171675010000000000000000000000000000000000000000001790556200018f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200012d57805160ff19168380011785556200015d565b828001600101855582156200015d579182015b828111156200015d57825182559160200191906001019062000140565b506200016b9291506200016f565b5090565b6200018c91905b808211156200016b576000815560010162000176565b90565b6117a2806200019f6000396000f3006080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610137578063095ea7b3146101c157806318160ddd146101f957806323b872dd14610220578063313ce5671461024a578063395093511461027557806342966c681461029957806347a64f44146102b3578063483a20b2146102d45780634a4fbeec146102f55780636a28f0001461031657806370a082311461032b578063715018a61461034c57806379cc6790146103615780638da5cb5b146103855780638f32d59b146103b6578063905295e3146103cb57806395d89b41146103ec578063a457c2d714610401578063a9059cbb14610425578063b9469e1a14610449578063dd62ed3e1461045e578063f2fde38b14610485575b600080fd5b34801561014357600080fd5b5061014c6104a6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018657818101518382015260200161016e565b50505050905090810190601f1680156101b35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101cd57600080fd5b506101e5600160a060020a0360043516602435610534565b604080519115158252519081900360200190f35b34801561020557600080fd5b5061020e610627565b60408051918252519081900360200190f35b34801561022c57600080fd5b506101e5600160a060020a036004358116906024351660443561062d565b34801561025657600080fd5b5061025f610722565b6040805160ff9092168252519081900360200190f35b34801561028157600080fd5b506101e5600160a060020a036004351660243561072b565b3480156102a557600080fd5b506102b1600435610816565b005b3480156102bf57600080fd5b506102b1600160a060020a0360043516610902565b3480156102e057600080fd5b506102b1600160a060020a03600435166109bf565b34801561030157600080fd5b506101e5600160a060020a0360043516610ace565b34801561032257600080fd5b506102b1610aec565b34801561033757600080fd5b5061020e600160a060020a0360043516610b9a565b34801561035857600080fd5b506102b1610bb5565b34801561036d57600080fd5b506102b1600160a060020a0360043516602435610c1d565b34801561039157600080fd5b5061039a610d0b565b60408051600160a060020a039092168252519081900360200190f35b3480156103c257600080fd5b506101e5610d1a565b3480156103d757600080fd5b506102b1600160a060020a0360043516610d2b565b3480156103f857600080fd5b5061014c610e0c565b34801561040d57600080fd5b506101e5600160a060020a0360043516602435610e67565b34801561043157600080fd5b506101e5600160a060020a0360043516602435610f52565b34801561045557600080fd5b506101e561103d565b34801561046a57600080fd5b5061020e600160a060020a036004358116906024351661104d565b34801561049157600080fd5b506102b1600160a060020a0360043516611078565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561052c5780601f106105015761010080835404028352916020019161052c565b820191906000526020600020905b81548152906001019060200180831161050f57829003601f168201915b505050505081565b60003361054081610ace565b15610583576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff1615806105ae5750600654600160a060020a0382811661010090920416145b1515610615576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b61061f8484611094565b949350505050565b60035490565b60008361063981610ace565b1561067c576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff1615806106a75750600654600160a060020a0382811661010090920416145b151561070e576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b610719858585611112565b95945050505050565b60065460ff1681565b60003361073781610ace565b1561077a576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff1615806107a55750600654600160a060020a0382811661010090920416145b151561080c576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b61061f8484611277565b3361082081610ace565b15610863576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff16158061088e5750600654600160a060020a0382811661010090920416145b15156108f5576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b6108fe82611327565b5050565b61090a610d1a565b151561091557600080fd5b61091e81610ace565b15610973576040805160e560020a62461bcd02815260206004820152601f60248201527f497420697320616c72656164792061206c6f636b6564206163636f756e742e00604482015290519081900360640190fd5b600160a060020a038116600081815260076020526040808220805460ff19166001179055517f2e42b012fe114d62bddb874b8e25a0e9053bdc64cd62e48ba623efe99742817e9190a250565b600160a060020a0381161515610a1f576040805160e560020a62461bcd02815260206004820152600f60248201527f496e76616c696420616464726573730000000000000000000000000000000000604482015290519081900360640190fd5b6006546101009004600160a060020a031615610a85576040805160e560020a62461bcd02815260206004820152601c60248201527f497420697320616c6c6f776564206f6e6c79206f6e652074696d652e00000000604482015290519081900360640190fd5b6006805474ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a038416021790819055610acb90829060ff16600a0a63b2d05e0002611331565b50565b600160a060020a031660009081526007602052604090205460ff1690565b6006546101009004600160a060020a03163314610b79576040805160e560020a62461bcd02815260206004820152603060248201527f4f6e6c792063726f776473616c6520636f6e74726163742063616e20756e667260448201527f65657a65207468697320746f6b656e2e00000000000000000000000000000000606482015290519081900360840190fd5b6006805475ff00000000000000000000000000000000000000000019169055565b600160a060020a031660009081526001602052604090205490565b610bbd610d1a565b1515610bc857600080fd5b60008054604051600160a060020a03909116917ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482091a26000805473ffffffffffffffffffffffffffffffffffffffff19169055565b81610c2781610ace565b15610c6a576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff161580610c955750600654600160a060020a0382811661010090920416145b1515610cfc576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b610d0683836113cb565b505050565b600054600160a060020a031690565b600054600160a060020a0316331490565b610d33610d1a565b1515610d3e57600080fd5b610d4781610ace565b1515610dc3576040805160e560020a62461bcd02815260206004820152602160248201527f497420697320616c7265616479206120756e6c6f636b6564206163636f756e7460448201527f2e00000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038116600081815260076020526040808220805460ff19169055517fb9c97a444794ab1ae6b17546c4103860c32e39862de6be9887a683bd1c897c949190a250565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561052c5780601f106105015761010080835404028352916020019161052c565b600033610e7381610ace565b15610eb6576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff161580610ee15750600654600160a060020a0382811661010090920416145b1515610f48576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b61061f84846113d5565b600033610f5e81610ace565b15610fa1576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff161580610fcc5750600654600160a060020a0382811661010090920416145b1515611033576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b61061f8484611420565b60065460a860020a900460ff1690565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b611080610d1a565b151561108b57600080fd5b610acb816114ef565b6000600160a060020a03831615156110ab57600080fd5b336000818152600260209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a03831660009081526001602052604081205482111561113757600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561116757600080fd5b600160a060020a038316151561117c57600080fd5b600160a060020a0384166000908152600160205260409020546111a5908363ffffffff61156c16565b600160a060020a0380861660009081526001602052604080822093909355908516815220546111da908363ffffffff61158316565b600160a060020a03808516600090815260016020908152604080832094909455918716815260028252828120338252909152205461121e908363ffffffff61156c16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611737833981519152929181900390910190a35060019392505050565b6000600160a060020a038316151561128e57600080fd5b336000908152600260209081526040808320600160a060020a03871684529091529020546112c2908363ffffffff61158316565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b610acb338261159c565b600160a060020a038216151561134657600080fd5b600354611359908263ffffffff61158316565b600355600160a060020a038216600090815260016020526040902054611385908263ffffffff61158316565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391926000805160206117378339815191529281900390910190a35050565b6108fe82826115a6565b6000600160a060020a03831615156113ec57600080fd5b336000908152600260209081526040808320600160a060020a03871684529091529020546112c2908363ffffffff61156c16565b3360009081526001602052604081205482111561143c57600080fd5b600160a060020a038316151561145157600080fd5b33600090815260016020526040902054611471908363ffffffff61156c16565b3360009081526001602052604080822092909255600160a060020a038516815220546114a3908363ffffffff61158316565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233926000805160206117378339815191529281900390910190a350600192915050565b600160a060020a038116151561150457600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000808383111561157c57600080fd5b5050900390565b60008282018381101561159557600080fd5b9392505050565b6108fe8282611638565b600160a060020a03821660009081526002602090815260408083203384529091529020548111156115d657600080fd5b600160a060020a038216600090815260026020908152604080832033845290915290205461160a908263ffffffff61156c16565b600160a060020a03831660009081526002602090815260408083203384529091529020556108fe828261159c565b600160a060020a038216151561164d57600080fd5b600160a060020a03821660009081526001602052604090205481111561167257600080fd5b600354611685908263ffffffff61156c16565b600355600160a060020a0382166000908152600160205260409020546116b1908263ffffffff61156c16565b600160a060020a038316600081815260016020908152604080832094909455835185815293519193600080516020611737833981519152929081900390910190a35050560049742069732061206c6f636b6564206163636f756e742e0000000000000000004120746f6b656e2069732066726f7a656e206f72206e6f742063726f77647361ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6c6520636f6e747261637420657865637574657320746869732066756e637469a165627a7a72305820c5ec31c66424cd2e3f8deb7975d89f3a431cc7ab246e7f7195cb5a6f8cd0d51c0029

Deployed Bytecode

0x6080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610137578063095ea7b3146101c157806318160ddd146101f957806323b872dd14610220578063313ce5671461024a578063395093511461027557806342966c681461029957806347a64f44146102b3578063483a20b2146102d45780634a4fbeec146102f55780636a28f0001461031657806370a082311461032b578063715018a61461034c57806379cc6790146103615780638da5cb5b146103855780638f32d59b146103b6578063905295e3146103cb57806395d89b41146103ec578063a457c2d714610401578063a9059cbb14610425578063b9469e1a14610449578063dd62ed3e1461045e578063f2fde38b14610485575b600080fd5b34801561014357600080fd5b5061014c6104a6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018657818101518382015260200161016e565b50505050905090810190601f1680156101b35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101cd57600080fd5b506101e5600160a060020a0360043516602435610534565b604080519115158252519081900360200190f35b34801561020557600080fd5b5061020e610627565b60408051918252519081900360200190f35b34801561022c57600080fd5b506101e5600160a060020a036004358116906024351660443561062d565b34801561025657600080fd5b5061025f610722565b6040805160ff9092168252519081900360200190f35b34801561028157600080fd5b506101e5600160a060020a036004351660243561072b565b3480156102a557600080fd5b506102b1600435610816565b005b3480156102bf57600080fd5b506102b1600160a060020a0360043516610902565b3480156102e057600080fd5b506102b1600160a060020a03600435166109bf565b34801561030157600080fd5b506101e5600160a060020a0360043516610ace565b34801561032257600080fd5b506102b1610aec565b34801561033757600080fd5b5061020e600160a060020a0360043516610b9a565b34801561035857600080fd5b506102b1610bb5565b34801561036d57600080fd5b506102b1600160a060020a0360043516602435610c1d565b34801561039157600080fd5b5061039a610d0b565b60408051600160a060020a039092168252519081900360200190f35b3480156103c257600080fd5b506101e5610d1a565b3480156103d757600080fd5b506102b1600160a060020a0360043516610d2b565b3480156103f857600080fd5b5061014c610e0c565b34801561040d57600080fd5b506101e5600160a060020a0360043516602435610e67565b34801561043157600080fd5b506101e5600160a060020a0360043516602435610f52565b34801561045557600080fd5b506101e561103d565b34801561046a57600080fd5b5061020e600160a060020a036004358116906024351661104d565b34801561049157600080fd5b506102b1600160a060020a0360043516611078565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561052c5780601f106105015761010080835404028352916020019161052c565b820191906000526020600020905b81548152906001019060200180831161050f57829003601f168201915b505050505081565b60003361054081610ace565b15610583576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff1615806105ae5750600654600160a060020a0382811661010090920416145b1515610615576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b61061f8484611094565b949350505050565b60035490565b60008361063981610ace565b1561067c576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff1615806106a75750600654600160a060020a0382811661010090920416145b151561070e576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b610719858585611112565b95945050505050565b60065460ff1681565b60003361073781610ace565b1561077a576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff1615806107a55750600654600160a060020a0382811661010090920416145b151561080c576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b61061f8484611277565b3361082081610ace565b15610863576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff16158061088e5750600654600160a060020a0382811661010090920416145b15156108f5576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b6108fe82611327565b5050565b61090a610d1a565b151561091557600080fd5b61091e81610ace565b15610973576040805160e560020a62461bcd02815260206004820152601f60248201527f497420697320616c72656164792061206c6f636b6564206163636f756e742e00604482015290519081900360640190fd5b600160a060020a038116600081815260076020526040808220805460ff19166001179055517f2e42b012fe114d62bddb874b8e25a0e9053bdc64cd62e48ba623efe99742817e9190a250565b600160a060020a0381161515610a1f576040805160e560020a62461bcd02815260206004820152600f60248201527f496e76616c696420616464726573730000000000000000000000000000000000604482015290519081900360640190fd5b6006546101009004600160a060020a031615610a85576040805160e560020a62461bcd02815260206004820152601c60248201527f497420697320616c6c6f776564206f6e6c79206f6e652074696d652e00000000604482015290519081900360640190fd5b6006805474ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a038416021790819055610acb90829060ff16600a0a63b2d05e0002611331565b50565b600160a060020a031660009081526007602052604090205460ff1690565b6006546101009004600160a060020a03163314610b79576040805160e560020a62461bcd02815260206004820152603060248201527f4f6e6c792063726f776473616c6520636f6e74726163742063616e20756e667260448201527f65657a65207468697320746f6b656e2e00000000000000000000000000000000606482015290519081900360840190fd5b6006805475ff00000000000000000000000000000000000000000019169055565b600160a060020a031660009081526001602052604090205490565b610bbd610d1a565b1515610bc857600080fd5b60008054604051600160a060020a03909116917ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482091a26000805473ffffffffffffffffffffffffffffffffffffffff19169055565b81610c2781610ace565b15610c6a576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff161580610c955750600654600160a060020a0382811661010090920416145b1515610cfc576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b610d0683836113cb565b505050565b600054600160a060020a031690565b600054600160a060020a0316331490565b610d33610d1a565b1515610d3e57600080fd5b610d4781610ace565b1515610dc3576040805160e560020a62461bcd02815260206004820152602160248201527f497420697320616c7265616479206120756e6c6f636b6564206163636f756e7460448201527f2e00000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038116600081815260076020526040808220805460ff19169055517fb9c97a444794ab1ae6b17546c4103860c32e39862de6be9887a683bd1c897c949190a250565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561052c5780601f106105015761010080835404028352916020019161052c565b600033610e7381610ace565b15610eb6576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff161580610ee15750600654600160a060020a0382811661010090920416145b1515610f48576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b61061f84846113d5565b600033610f5e81610ace565b15610fa1576040805160e560020a62461bcd02815260206004820152601760248201526000805160206116f7833981519152604482015290519081900360640190fd5b60065460a860020a900460ff161580610fcc5750600654600160a060020a0382811661010090920416145b1515611033576040805160e560020a62461bcd02815260206004820152604360248201526000805160206117178339815191526044820152600080516020611757833981519152606482015260e960020a6237b71702608482015290519081900360a40190fd5b61061f8484611420565b60065460a860020a900460ff1690565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b611080610d1a565b151561108b57600080fd5b610acb816114ef565b6000600160a060020a03831615156110ab57600080fd5b336000818152600260209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a03831660009081526001602052604081205482111561113757600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561116757600080fd5b600160a060020a038316151561117c57600080fd5b600160a060020a0384166000908152600160205260409020546111a5908363ffffffff61156c16565b600160a060020a0380861660009081526001602052604080822093909355908516815220546111da908363ffffffff61158316565b600160a060020a03808516600090815260016020908152604080832094909455918716815260028252828120338252909152205461121e908363ffffffff61156c16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611737833981519152929181900390910190a35060019392505050565b6000600160a060020a038316151561128e57600080fd5b336000908152600260209081526040808320600160a060020a03871684529091529020546112c2908363ffffffff61158316565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b610acb338261159c565b600160a060020a038216151561134657600080fd5b600354611359908263ffffffff61158316565b600355600160a060020a038216600090815260016020526040902054611385908263ffffffff61158316565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391926000805160206117378339815191529281900390910190a35050565b6108fe82826115a6565b6000600160a060020a03831615156113ec57600080fd5b336000908152600260209081526040808320600160a060020a03871684529091529020546112c2908363ffffffff61156c16565b3360009081526001602052604081205482111561143c57600080fd5b600160a060020a038316151561145157600080fd5b33600090815260016020526040902054611471908363ffffffff61156c16565b3360009081526001602052604080822092909255600160a060020a038516815220546114a3908363ffffffff61158316565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233926000805160206117378339815191529281900390910190a350600192915050565b600160a060020a038116151561150457600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000808383111561157c57600080fd5b5050900390565b60008282018381101561159557600080fd5b9392505050565b6108fe8282611638565b600160a060020a03821660009081526002602090815260408083203384529091529020548111156115d657600080fd5b600160a060020a038216600090815260026020908152604080832033845290915290205461160a908263ffffffff61156c16565b600160a060020a03831660009081526002602090815260408083203384529091529020556108fe828261159c565b600160a060020a038216151561164d57600080fd5b600160a060020a03821660009081526001602052604090205481111561167257600080fd5b600354611685908263ffffffff61156c16565b600355600160a060020a0382166000908152600160205260409020546116b1908263ffffffff61156c16565b600160a060020a038316600081815260016020908152604080832094909455835185815293519193600080516020611737833981519152929081900390910190a35050560049742069732061206c6f636b6564206163636f756e742e0000000000000000004120746f6b656e2069732066726f7a656e206f72206e6f742063726f77647361ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6c6520636f6e747261637420657865637574657320746869732066756e637469a165627a7a72305820c5ec31c66424cd2e3f8deb7975d89f3a431cc7ab246e7f7195cb5a6f8cd0d51c0029

Swarm Source

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