ETH Price: $3,264.47 (+3.45%)
 

Overview

Max Total Supply

1,708.474427765289265714 TMV

Holders

34 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.029741681525722817 TMV

Value
$0.00
0xbc9d55dbbd046dd92b8977b67bda05a28227705e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Timvi is a financial and technological project that has its own ecosystem of services that allow you to store and earn money using the ecosystem’s own stablecoin called Timvi (TMV).

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TimviToken

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity Multiple files format)

File 2 of 2: TimviToken.sol
pragma solidity 0.4.25;

import "./SafeMath.sol";

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

interface Settings {
    function isContractManager(address account) external view returns (bool);
}


contract ManagerRole {

    Settings public settings;

    modifier onlyManager() {
        require(settings.isContractManager(msg.sender), "You have no access");
        _;
    }
}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
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
     * @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);
        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 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.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        // 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(
            value);
        _burn(account, value);
    }
}

contract ERC20Burnable is ERC20, ManagerRole {

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

    /**
     * @dev Burns a specific amount of tokens from the target address.
     * @param from address The address which you want to burn tokens from
     * @param value The amount of token to be burned.
     */
    function burnLogic(address from, uint256 value) public onlyManager {
        _burn(from, 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 onlyManager {
        _burnFrom(from, value);
    }
}


/**
 * @title ERC20Mintable
 * @dev ERC20 minting logic
 */
contract ERC20Mintable is ERC20Burnable {
    /**
     * @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
    onlyManager
    returns (bool)
    {
        _mint(to, value);
        return true;
    }
}

/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is ERC20Mintable {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

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

    /**
     * @return the name of the token.
     */
    function name() public view returns(string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns(string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns(uint8) {
        return _decimals;
    }
}


/**
 * @title TimviToken
 * @dev ERC20 based Mintable, Burnable Token
 */
contract TimviToken is ERC20Detailed {

    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor(address _settings) public ERC20Detailed("TimviToken", "TMV", 18) {
        settings = Settings(_settings);
    }

}

File 1 of 2: SafeMath.sol
pragma solidity 0.4.25;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that revert on error
 */
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, 'mul');

        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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, 'div');
        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, 'sub');
        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, 'add');

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

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":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","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":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"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":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"settings","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnLogic","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_settings","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

608060405234801561001057600080fd5b50604051602080610f5883398101604081815291518282018352600a82527f54696d7669546f6b656e0000000000000000000000000000000000000000000060208084019182528451808601909552600385527f544d56000000000000000000000000000000000000000000000000000000000090850152825191939160129161009d91600491906100ed565b5081516100b19060059060208501906100ed565b506006805460ff191660ff92909216919091179055505060038054600160a060020a031916600160a060020a0392909216919091179055610188565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061012e57805160ff191683800117855561015b565b8280016001018555821561015b579182015b8281111561015b578251825591602001919060010190610140565b5061016792915061016b565b5090565b61018591905b808211156101675760008155600101610171565b90565b610dc1806101976000396000f3006080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d3578063313ce567146101fd578063395093511461022857806340c10f191461024c57806342966c681461027057806370a082311461028a57806379cc6790146102ab57806395d89b41146102cf578063a457c2d7146102e4578063a9059cbb14610308578063dd62ed3e1461032c578063e06174e414610353578063f2fdca6514610384575b600080fd5b3480156100f657600080fd5b506100ff6103a8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a036004351660243561043e565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c16104bc565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a03600435811690602435166044356104c2565b34801561020957600080fd5b5061021261052f565b6040805160ff9092168252519081900360200190f35b34801561023457600080fd5b50610198600160a060020a0360043516602435610538565b34801561025857600080fd5b50610198600160a060020a03600435166024356105e8565b34801561027c57600080fd5b506102886004356106ba565b005b34801561029657600080fd5b506101c1600160a060020a0360043516610787565b3480156102b757600080fd5b50610288600160a060020a03600435166024356107a2565b3480156102db57600080fd5b506100ff610870565b3480156102f057600080fd5b50610198600160a060020a03600435166024356108d1565b34801561031457600080fd5b50610198600160a060020a036004351660243561091c565b34801561033857600080fd5b506101c1600160a060020a0360043581169060243516610929565b34801561035f57600080fd5b50610368610954565b60408051600160a060020a039092168252519081900360200190f35b34801561039057600080fd5b50610288600160a060020a0360043516602435610963565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104345780601f1061040957610100808354040283529160200191610434565b820191906000526020600020905b81548152906001019060200180831161041757829003601f168201915b5050505050905090565b6000600160a060020a038316151561045557600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a03831660009081526001602090815260408083203384529091528120546104f6908363ffffffff610a2d16565b600160a060020a0385166000908152600160209081526040808320338452909152902055610525848484610a8f565b5060019392505050565b60065460ff1690565b6000600160a060020a038316151561054f57600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610583908363ffffffff610b5c16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6003546040805160e060020a63306abccf0281523360048201529051600092600160a060020a03169163306abccf91602480830192602092919082900301818787803b15801561063757600080fd5b505af115801561064b573d6000803e3d6000fd5b505050506040513d602081101561066157600080fd5b505115156106a7576040805160e560020a62461bcd0281526020600482015260126024820152600080516020610d76833981519152604482015290519081900360640190fd5b6106b18383610bc0565b50600192915050565b6003546040805160e060020a63306abccf0281523360048201529051600160a060020a039092169163306abccf916024808201926020929091908290030181600087803b15801561070a57600080fd5b505af115801561071e573d6000803e3d6000fd5b505050506040513d602081101561073457600080fd5b5051151561077a576040805160e560020a62461bcd0281526020600482015260126024820152600080516020610d76833981519152604482015290519081900360640190fd5b6107843382610c6a565b50565b600160a060020a031660009081526020819052604090205490565b6003546040805160e060020a63306abccf0281523360048201529051600160a060020a039092169163306abccf916024808201926020929091908290030181600087803b1580156107f257600080fd5b505af1158015610806573d6000803e3d6000fd5b505050506040513d602081101561081c57600080fd5b50511515610862576040805160e560020a62461bcd0281526020600482015260126024820152600080516020610d76833981519152604482015290519081900360640190fd5b61086c8282610d13565b5050565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104345780601f1061040957610100808354040283529160200191610434565b6000600160a060020a03831615156108e857600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610583908363ffffffff610a2d16565b60006106b1338484610a8f565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600354600160a060020a031681565b6003546040805160e060020a63306abccf0281523360048201529051600160a060020a039092169163306abccf916024808201926020929091908290030181600087803b1580156109b357600080fd5b505af11580156109c7573d6000803e3d6000fd5b505050506040513d60208110156109dd57600080fd5b50511515610a23576040805160e560020a62461bcd0281526020600482015260126024820152600080516020610d76833981519152604482015290519081900360640190fd5b61086c8282610c6a565b60008083831115610a88576040805160e560020a62461bcd02815260206004820152600360248201527f7375620000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b5050900390565b600160a060020a0382161515610aa457600080fd5b600160a060020a038316600090815260208190526040902054610acd908263ffffffff610a2d16565b600160a060020a038085166000908152602081905260408082209390935590841681522054610b02908263ffffffff610b5c16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610bb9576040805160e560020a62461bcd02815260206004820152600360248201527f6164640000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b9392505050565b600160a060020a0382161515610bd557600080fd5b600254610be8908263ffffffff610b5c16565b600255600160a060020a038216600090815260208190526040902054610c14908263ffffffff610b5c16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382161515610c7f57600080fd5b600254610c92908263ffffffff610a2d16565b600255600160a060020a038216600090815260208190526040902054610cbe908263ffffffff610a2d16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a0382166000908152600160209081526040808320338452909152902054610d47908263ffffffff610a2d16565b600160a060020a038316600090815260016020908152604080832033845290915290205561086c8282610c6a5600596f752068617665206e6f206163636573730000000000000000000000000000a165627a7a723058209f504ecb5200e53d81abdc0fc63b52b8e15366330ed097f70f1a7fbf2e5e0dd10029000000000000000000000000680d335f7978e85de2a3168bd07c27b6ceaa7908

Deployed Bytecode

0x6080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d3578063313ce567146101fd578063395093511461022857806340c10f191461024c57806342966c681461027057806370a082311461028a57806379cc6790146102ab57806395d89b41146102cf578063a457c2d7146102e4578063a9059cbb14610308578063dd62ed3e1461032c578063e06174e414610353578063f2fdca6514610384575b600080fd5b3480156100f657600080fd5b506100ff6103a8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a036004351660243561043e565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c16104bc565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a03600435811690602435166044356104c2565b34801561020957600080fd5b5061021261052f565b6040805160ff9092168252519081900360200190f35b34801561023457600080fd5b50610198600160a060020a0360043516602435610538565b34801561025857600080fd5b50610198600160a060020a03600435166024356105e8565b34801561027c57600080fd5b506102886004356106ba565b005b34801561029657600080fd5b506101c1600160a060020a0360043516610787565b3480156102b757600080fd5b50610288600160a060020a03600435166024356107a2565b3480156102db57600080fd5b506100ff610870565b3480156102f057600080fd5b50610198600160a060020a03600435166024356108d1565b34801561031457600080fd5b50610198600160a060020a036004351660243561091c565b34801561033857600080fd5b506101c1600160a060020a0360043581169060243516610929565b34801561035f57600080fd5b50610368610954565b60408051600160a060020a039092168252519081900360200190f35b34801561039057600080fd5b50610288600160a060020a0360043516602435610963565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104345780601f1061040957610100808354040283529160200191610434565b820191906000526020600020905b81548152906001019060200180831161041757829003601f168201915b5050505050905090565b6000600160a060020a038316151561045557600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a03831660009081526001602090815260408083203384529091528120546104f6908363ffffffff610a2d16565b600160a060020a0385166000908152600160209081526040808320338452909152902055610525848484610a8f565b5060019392505050565b60065460ff1690565b6000600160a060020a038316151561054f57600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610583908363ffffffff610b5c16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6003546040805160e060020a63306abccf0281523360048201529051600092600160a060020a03169163306abccf91602480830192602092919082900301818787803b15801561063757600080fd5b505af115801561064b573d6000803e3d6000fd5b505050506040513d602081101561066157600080fd5b505115156106a7576040805160e560020a62461bcd0281526020600482015260126024820152600080516020610d76833981519152604482015290519081900360640190fd5b6106b18383610bc0565b50600192915050565b6003546040805160e060020a63306abccf0281523360048201529051600160a060020a039092169163306abccf916024808201926020929091908290030181600087803b15801561070a57600080fd5b505af115801561071e573d6000803e3d6000fd5b505050506040513d602081101561073457600080fd5b5051151561077a576040805160e560020a62461bcd0281526020600482015260126024820152600080516020610d76833981519152604482015290519081900360640190fd5b6107843382610c6a565b50565b600160a060020a031660009081526020819052604090205490565b6003546040805160e060020a63306abccf0281523360048201529051600160a060020a039092169163306abccf916024808201926020929091908290030181600087803b1580156107f257600080fd5b505af1158015610806573d6000803e3d6000fd5b505050506040513d602081101561081c57600080fd5b50511515610862576040805160e560020a62461bcd0281526020600482015260126024820152600080516020610d76833981519152604482015290519081900360640190fd5b61086c8282610d13565b5050565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104345780601f1061040957610100808354040283529160200191610434565b6000600160a060020a03831615156108e857600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610583908363ffffffff610a2d16565b60006106b1338484610a8f565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600354600160a060020a031681565b6003546040805160e060020a63306abccf0281523360048201529051600160a060020a039092169163306abccf916024808201926020929091908290030181600087803b1580156109b357600080fd5b505af11580156109c7573d6000803e3d6000fd5b505050506040513d60208110156109dd57600080fd5b50511515610a23576040805160e560020a62461bcd0281526020600482015260126024820152600080516020610d76833981519152604482015290519081900360640190fd5b61086c8282610c6a565b60008083831115610a88576040805160e560020a62461bcd02815260206004820152600360248201527f7375620000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b5050900390565b600160a060020a0382161515610aa457600080fd5b600160a060020a038316600090815260208190526040902054610acd908263ffffffff610a2d16565b600160a060020a038085166000908152602081905260408082209390935590841681522054610b02908263ffffffff610b5c16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610bb9576040805160e560020a62461bcd02815260206004820152600360248201527f6164640000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b9392505050565b600160a060020a0382161515610bd557600080fd5b600254610be8908263ffffffff610b5c16565b600255600160a060020a038216600090815260208190526040902054610c14908263ffffffff610b5c16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382161515610c7f57600080fd5b600254610c92908263ffffffff610a2d16565b600255600160a060020a038216600090815260208190526040902054610cbe908263ffffffff610a2d16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a0382166000908152600160209081526040808320338452909152902054610d47908263ffffffff610a2d16565b600160a060020a038316600090815260016020908152604080832033845290915290205561086c8282610c6a5600596f752068617665206e6f206163636573730000000000000000000000000000a165627a7a723058209f504ecb5200e53d81abdc0fc63b52b8e15366330ed097f70f1a7fbf2e5e0dd10029

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

000000000000000000000000680d335f7978e85de2a3168bd07c27b6ceaa7908

-----Decoded View---------------
Arg [0] : _settings (address): 0x680d335f7978e85DE2a3168bD07c27B6ceaa7908

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000680d335f7978e85de2a3168bd07c27b6ceaa7908


Deployed Bytecode Sourcemap

10786:257:1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10327:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10327:80:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;10327:80:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3558:238;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3558:238:1;-1:-1:-1;;;;;3558:238:1;;;;;;;;;;;;;;;;;;;;;;;;;1721:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1721:89:1;;;;;;;;;;;;;;;;;;;;4082:267;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4082:267:1;-1:-1:-1;;;;;4082:267:1;;;;;;;;;;;;10627:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10627:80:1;;;;;;;;;;;;;;;;;;;;;;;4820:362;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4820:362:1;-1:-1:-1;;;;;4820:362:1;;;;;;;9571:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9571:167:1;-1:-1:-1;;;;;9571:167:1;;;;;;;8450:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8450:89:1;;;;;;;2019:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2019:104:1;-1:-1:-1;;;;;2019:104:1;;;;;9114:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9114:105:1;-1:-1:-1;;;;;9114:105:1;;;;;;;10469:84;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10469:84:1;;;;5658:372;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5658:372:1;-1:-1:-1;;;;;5658:372:1;;;;;;;2785:137;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2785:137:1;-1:-1:-1;;;;;2785:137:1;;;;;;;2454:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2454:167:1;-1:-1:-1;;;;;2454:167:1;;;;;;;;;;993:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;993:24:1;;;;;;;;-1:-1:-1;;;;;993:24:1;;;;;;;;;;;;;;8760:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8760:102:1;-1:-1:-1;;;;;8760:102:1;;;;;;;10327:80;10395:5;10388:12;;;;;;;;-1:-1:-1;;10388:12:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10363:6;;10388:12;;10395:5;;10388:12;;10395:5;10388:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10327:80;:::o;3558:238::-;3623:4;-1:-1:-1;;;;;3647:21:1;;;;3639:30;;;;;;3689:10;3680:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;3680:29:1;;;;;;;;;;;;:37;;;3732:36;;;;;;;3680:29;;3689:10;3732:36;;;;;;;;;;;-1:-1:-1;3785:4:1;3558:238;;;;:::o;1721:89::-;1791:12;;1721:89;:::o;4082:267::-;-1:-1:-1;;;;;4248:14:1;;4199:4;4248:14;;;:8;:14;;;;;;;;4263:10;4248:26;;;;;;;;:37;;4279:5;4248:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;4219:14:1;;;;;;:8;:14;;;;;;;;4234:10;4219:26;;;;;;;:66;4295:26;4228:4;4311:2;4315:5;4295:9;:26::i;:::-;-1:-1:-1;4338:4:1;4082:267;;;;;:::o;10627:80::-;10691:9;;;;10627:80;:::o;4820:362::-;4930:4;-1:-1:-1;;;;;4958:21:1;;;;4950:30;;;;;;5042:10;5033:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;5033:29:1;;;;;;;;;;:45;;5067:10;5033:45;:33;:45;:::i;:::-;5000:10;4991:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;4991:29:1;;;;;;;;;;;;:88;;;5094:60;;;;;;4991:29;;5094:60;;;;;;;;;;;-1:-1:-1;5171:4:1;4820:362;;;;:::o;9571:167::-;1065:8;;:38;;;-1:-1:-1;;;;;1065:38:1;;1092:10;1065:38;;;;;;9674:4;;-1:-1:-1;;;;;1065:8:1;;:26;;:38;;;;;;;;;;;;;;9674:4;1065:8;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;1065:38:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1065:38:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1065:38:1;1057:69;;;;;;;-1:-1:-1;;;;;1057:69:1;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1057:69:1;;;;;;;;;;;;;;;9694:16;9700:2;9704:5;9694;:16::i;:::-;-1:-1:-1;9727:4:1;9571:167;;;;:::o;8450:89::-;1065:8;;:38;;;-1:-1:-1;;;;;1065:38:1;;1092:10;1065:38;;;;;;-1:-1:-1;;;;;1065:8:1;;;;:26;;:38;;;;;;;;;;;;;;;:8;;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;1065:38:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1065:38:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1065:38:1;1057:69;;;;;;;-1:-1:-1;;;;;1057:69:1;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1057:69:1;;;;;;;;;;;;;;;8508:24;8514:10;8526:5;8508;:24::i;:::-;8450:89;:::o;2019:104::-;-1:-1:-1;;;;;2100:16:1;2074:7;2100:16;;;;;;;;;;;;2019:104::o;9114:105::-;1065:8;;:38;;;-1:-1:-1;;;;;1065:38:1;;1092:10;1065:38;;;;;;-1:-1:-1;;;;;1065:8:1;;;;:26;;:38;;;;;;;;;;;;;;;:8;;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;1065:38:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1065:38:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1065:38:1;1057:69;;;;;;;-1:-1:-1;;;;;1057:69:1;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1057:69:1;;;;;;;;;;;;;;;9190:22;9200:4;9206:5;9190:9;:22::i;:::-;9114:105;;:::o;10469:84::-;10539:7;10532:14;;;;;;;;-1:-1:-1;;10532:14:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10507:6;;10532:14;;10539:7;;10532:14;;10539:7;10532:14;;;;;;;;;;;;;;;;;;;;;;;;5658:372;5773:4;-1:-1:-1;;;;;5801:21:1;;;;5793:30;;;;;;5885:10;5876:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;5876:29:1;;;;;;;;;;:50;;5910:15;5876:50;:33;:50;:::i;2785:137::-;2846:4;2862:32;2872:10;2884:2;2888:5;2862:9;:32::i;2454:167::-;-1:-1:-1;;;;;2590:15:1;;;2560:7;2590:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;2454:167::o;993:24::-;;;-1:-1:-1;;;;;993:24:1;;:::o;8760:102::-;1065:8;;:38;;;-1:-1:-1;;;;;1065:38:1;;1092:10;1065:38;;;;;;-1:-1:-1;;;;;1065:8:1;;;;:26;;:38;;;;;;;;;;;;;;;:8;;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;1065:38:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1065:38:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1065:38:1;1057:69;;;;;;;-1:-1:-1;;;;;1057:69:1;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1057:69:1;;;;;;;;;;;;;;;8837:18;8843:4;8849:5;8837;:18::i;1180:152:0:-;1238:7;;1265:6;;;;1257:22;;;;;-1:-1:-1;;;;;1257:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1301:5:0;;;1180:152::o;6244:256:1:-;-1:-1:-1;;;;;6331:16:1;;;;6323:25;;;;;;-1:-1:-1;;;;;6377:15:1;;:9;:15;;;;;;;;;;;:26;;6397:5;6377:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;6359:15:1;;;:9;:15;;;;;;;;;;;:44;;;;6429:13;;;;;;;:24;;6447:5;6429:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;6413:13:1;;;:9;:13;;;;;;;;;;;;:40;;;;6468:25;;;;;;;6413:13;;6468:25;;;;;;;;;;;;;6244:256;;;:::o;1403:152:0:-;1461:7;1492:5;;;1515:6;;;;1507:22;;;;;-1:-1:-1;;;;;1507:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1547:1;1403:152;-1:-1:-1;;;1403:152:0:o;6843:263:1:-;-1:-1:-1;;;;;6917:21:1;;;;6909:30;;;;;;6965:12;;:23;;6982:5;6965:23;:16;:23;:::i;:::-;6950:12;:38;-1:-1:-1;;;;;7019:18:1;;:9;:18;;;;;;;;;;;:29;;7042:5;7019:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;6998:18:1;;:9;:18;;;;;;;;;;;:50;;;;7063:36;;;;;;;6998:18;;:9;;7063:36;;;;;;;;;;6843:263;;:::o;7332:::-;-1:-1:-1;;;;;7406:21:1;;;;7398:30;;;;;;7454:12;;:23;;7471:5;7454:23;:16;:23;:::i;:::-;7439:12;:38;-1:-1:-1;;;;;7508:18:1;;:9;:18;;;;;;;;;;;:29;;7531:5;7508:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;7487:18:1;;:9;:18;;;;;;;;;;;:50;;;;7552:36;;;;;;;7487:9;;7552:36;;;;;;;;;;;7332:263;;:::o;7917:360::-;-1:-1:-1;;;;;8186:17:1;;;;;;:8;:17;;;;;;;;8204:10;8186:29;;;;;;;;:53;;8233:5;8186:53;:33;:53;:::i;:::-;-1:-1:-1;;;;;8154:17:1;;;;;;:8;:17;;;;;;;;8172:10;8154:29;;;;;;;:85;8249:21;8163:7;8264:5;8249;:21::i

Swarm Source

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