ETH Price: $3,436.37 (-1.48%)
Gas: 9 Gwei

Token

TauschToken (TUC)
 

Overview

Max Total Supply

5,000,000,000 TUC

Holders

3,359

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 10 Decimals)

Balance
35 TUC

Value
$0.00
0x9e69d9185791f005a72dfaa228494d47ae5ca9b8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

TauschBloc is a commercial data exchange platform where the consumers, online shopping malls, and brand all participate.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TauschToken

Compiler Version
v0.5.2+commit.1df8f40c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-05-27
*/

pragma solidity ^0.5.2;

/**
 * @title ERC20 interface
 * @dev see https://eips.ethereum.org/EIPS/eip-20
 */
interface IERC20 {
    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);

    function totalSupply() external view returns (uint256);

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

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

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

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


library SafeMath {
    /**
     * @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 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 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 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 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;
    }
}


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 A 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 to 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) {
        _approve(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) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][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) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][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) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        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 Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0));
        require(owner != address(0));

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, 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 {
        _burn(account, value);
        _approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
    }
}


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


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 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 account whose tokens will be burned.
     * @param value uint256 The amount of token to be burned.
     */
    function burnFrom(address from, uint256 value) public {
        _burnFrom(from, value);
    }
}


contract ERC20Detailed is IERC20 {
    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;
    }
}

contract TauschToken is ERC20Mintable, ERC20Burnable, ERC20Detailed {
    
    string private  _name = "TauschToken"; 
    string private  _symbol = "TUC"; 
    uint8 private  _decimals = 10;
    
    uint256 public constant INITIAL_SUPPLY = 50 * (10 ** 18);
    
    address account = msg.sender; 

    constructor() 
        ERC20Detailed(_name, _symbol, _decimals) 
        ERC20Burnable() 
        ERC20Mintable()
        public { 
            _mint(account, INITIAL_SUPPLY); 
        } 
}

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":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":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":"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":"","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":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

60c0604052600b60808190527f546175736368546f6b656e00000000000000000000000000000000000000000060a090815262000040916007919062000429565b506040805180820190915260038082527f54554300000000000000000000000000000000000000000000000000000000006020909201918252620000879160089162000429565b5060098054600a60ff199091161761010060a860020a0319166101003302179055348015620000b557600080fd5b506007805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620001405780601f10620001145761010080835404028352916020019162000140565b820191906000526020600020905b8154815290600101906020018083116200012257829003601f168201915b505060088054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815295509193509150830182828015620001d25780601f10620001a657610100808354040283529160200191620001d2565b820191906000526020600020905b815481529060010190602001808311620001b457829003601f168201915b505060095460ff169250620001f491503390506401000000006200026b810204565b82516200020990600490602086019062000429565b5081516200021f90600590602085019062000429565b506006805460ff191660ff92909216919091179055505060095462000265906101009004600160a060020a03166802b5e3af16b1880000640100000000620002bd810204565b620004ce565b6200028660038264010000000062000ac36200037c82021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b600160a060020a0382161515620002d357600080fd5b600254620002f090826401000000006200084b620003d782021704565b600255600160a060020a0382166000908152602081905260409020546200032690826401000000006200084b620003d782021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03811615156200039257600080fd5b620003a78282640100000000620003f1810204565b15620003b257600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600082820183811015620003ea57600080fd5b9392505050565b6000600160a060020a03821615156200040957600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046c57805160ff19168380011785556200049c565b828001600101855582156200049c579182015b828111156200049c5782518255916020019190600101906200047f565b50620004aa929150620004ae565b5090565b620004cb91905b80821115620004aa5760008155600101620004b5565b90565b610b8980620004de6000396000f3fe608060405234801561001057600080fd5b5060043610610133576000357c01000000000000000000000000000000000000000000000000000000009004806370a08231116100bf578063986502751161008e5780639865027514610362578063a457c2d71461036a578063a9059cbb14610396578063aa271e1a146103c2578063dd62ed3e146103e857610133565b806370a08231146102e257806379cc67901461030857806395d89b4114610334578063983b2d561461033c57610133565b80632ff2e9dc116101065780632ff2e9dc14610245578063313ce5671461024d578063395093511461026b57806340c10f191461029757806342966c68146102c357610133565b806306fdde0314610138578063095ea7b3146101b557806318160ddd146101f557806323b872dd1461020f575b600080fd5b610140610416565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017a578181015183820152602001610162565b50505050905090810190601f1680156101a75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e1600480360360408110156101cb57600080fd5b50600160a060020a0381351690602001356104ac565b604080519115158252519081900360200190f35b6101fd6104c2565b60408051918252519081900360200190f35b6101e16004803603606081101561022557600080fd5b50600160a060020a038135811691602081013590911690604001356104c8565b6101fd61051f565b61025561052c565b6040805160ff9092168252519081900360200190f35b6101e16004803603604081101561028157600080fd5b50600160a060020a038135169060200135610535565b6101e1600480360360408110156102ad57600080fd5b50600160a060020a038135169060200135610571565b6102e0600480360360208110156102d957600080fd5b5035610591565b005b6101fd600480360360208110156102f857600080fd5b5035600160a060020a031661059e565b6102e06004803603604081101561031e57600080fd5b50600160a060020a0381351690602001356105b9565b6101406105c7565b6102e06004803603602081101561035257600080fd5b5035600160a060020a0316610628565b6102e0610645565b6101e16004803603604081101561038057600080fd5b50600160a060020a038135169060200135610650565b6101e1600480360360408110156103ac57600080fd5b50600160a060020a03813516906020013561068c565b6101e1600480360360208110156103d857600080fd5b5035600160a060020a0316610699565b6101fd600480360360408110156103fe57600080fd5b50600160a060020a03813581169160200135166106b2565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a25780601f10610477576101008083540402835291602001916104a2565b820191906000526020600020905b81548152906001019060200180831161048557829003601f168201915b5050505050905090565b60006104b93384846106dd565b50600192915050565b60025490565b60006104d5848484610769565b600160a060020a038416600090815260016020908152604080832033808552925290912054610515918691610510908663ffffffff61083616565b6106dd565b5060019392505050565b6802b5e3af16b188000081565b60065460ff1690565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104b9918590610510908663ffffffff61084b16565b600061057c33610699565b151561058757600080fd5b6104b98383610864565b61059b338261090e565b50565b600160a060020a031660009081526020819052604090205490565b6105c382826109b7565b5050565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a25780601f10610477576101008083540402835291602001916104a2565b61063133610699565b151561063c57600080fd5b61059b816109fc565b61064e33610a44565b565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104b9918590610510908663ffffffff61083616565b60006104b9338484610769565b60006106ac60038363ffffffff610a8c16565b92915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a03821615156106f257600080fd5b600160a060020a038316151561070757600080fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038216151561077e57600080fd5b600160a060020a0383166000908152602081905260409020546107a7908263ffffffff61083616565b600160a060020a0380851660009081526020819052604080822093909355908416815220546107dc908263ffffffff61084b16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561084557600080fd5b50900390565b60008282018381101561085d57600080fd5b9392505050565b600160a060020a038216151561087957600080fd5b60025461088c908263ffffffff61084b16565b600255600160a060020a0382166000908152602081905260409020546108b8908263ffffffff61084b16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216151561092357600080fd5b600254610936908263ffffffff61083616565b600255600160a060020a038216600090815260208190526040902054610962908263ffffffff61083616565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6109c1828261090e565b600160a060020a0382166000908152600160209081526040808320338085529252909120546105c3918491610510908563ffffffff61083616565b610a0d60038263ffffffff610ac316565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610a5560038263ffffffff610b1116565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0382161515610aa357600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0381161515610ad857600080fd5b610ae28282610a8c565b15610aec57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a0381161515610b2657600080fd5b610b308282610a8c565b1515610b3b57600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916905556fea165627a7a7230582095e5a09cdfed8da1bac35d1d47481d840772845c664fae262383213bca56847c0029

Deployed Bytecode

0x608060405234801561001057600080fd5b5060043610610133576000357c01000000000000000000000000000000000000000000000000000000009004806370a08231116100bf578063986502751161008e5780639865027514610362578063a457c2d71461036a578063a9059cbb14610396578063aa271e1a146103c2578063dd62ed3e146103e857610133565b806370a08231146102e257806379cc67901461030857806395d89b4114610334578063983b2d561461033c57610133565b80632ff2e9dc116101065780632ff2e9dc14610245578063313ce5671461024d578063395093511461026b57806340c10f191461029757806342966c68146102c357610133565b806306fdde0314610138578063095ea7b3146101b557806318160ddd146101f557806323b872dd1461020f575b600080fd5b610140610416565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017a578181015183820152602001610162565b50505050905090810190601f1680156101a75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e1600480360360408110156101cb57600080fd5b50600160a060020a0381351690602001356104ac565b604080519115158252519081900360200190f35b6101fd6104c2565b60408051918252519081900360200190f35b6101e16004803603606081101561022557600080fd5b50600160a060020a038135811691602081013590911690604001356104c8565b6101fd61051f565b61025561052c565b6040805160ff9092168252519081900360200190f35b6101e16004803603604081101561028157600080fd5b50600160a060020a038135169060200135610535565b6101e1600480360360408110156102ad57600080fd5b50600160a060020a038135169060200135610571565b6102e0600480360360208110156102d957600080fd5b5035610591565b005b6101fd600480360360208110156102f857600080fd5b5035600160a060020a031661059e565b6102e06004803603604081101561031e57600080fd5b50600160a060020a0381351690602001356105b9565b6101406105c7565b6102e06004803603602081101561035257600080fd5b5035600160a060020a0316610628565b6102e0610645565b6101e16004803603604081101561038057600080fd5b50600160a060020a038135169060200135610650565b6101e1600480360360408110156103ac57600080fd5b50600160a060020a03813516906020013561068c565b6101e1600480360360208110156103d857600080fd5b5035600160a060020a0316610699565b6101fd600480360360408110156103fe57600080fd5b50600160a060020a03813581169160200135166106b2565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a25780601f10610477576101008083540402835291602001916104a2565b820191906000526020600020905b81548152906001019060200180831161048557829003601f168201915b5050505050905090565b60006104b93384846106dd565b50600192915050565b60025490565b60006104d5848484610769565b600160a060020a038416600090815260016020908152604080832033808552925290912054610515918691610510908663ffffffff61083616565b6106dd565b5060019392505050565b6802b5e3af16b188000081565b60065460ff1690565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104b9918590610510908663ffffffff61084b16565b600061057c33610699565b151561058757600080fd5b6104b98383610864565b61059b338261090e565b50565b600160a060020a031660009081526020819052604090205490565b6105c382826109b7565b5050565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a25780601f10610477576101008083540402835291602001916104a2565b61063133610699565b151561063c57600080fd5b61059b816109fc565b61064e33610a44565b565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104b9918590610510908663ffffffff61083616565b60006104b9338484610769565b60006106ac60038363ffffffff610a8c16565b92915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a03821615156106f257600080fd5b600160a060020a038316151561070757600080fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038216151561077e57600080fd5b600160a060020a0383166000908152602081905260409020546107a7908263ffffffff61083616565b600160a060020a0380851660009081526020819052604080822093909355908416815220546107dc908263ffffffff61084b16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561084557600080fd5b50900390565b60008282018381101561085d57600080fd5b9392505050565b600160a060020a038216151561087957600080fd5b60025461088c908263ffffffff61084b16565b600255600160a060020a0382166000908152602081905260409020546108b8908263ffffffff61084b16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216151561092357600080fd5b600254610936908263ffffffff61083616565b600255600160a060020a038216600090815260208190526040902054610962908263ffffffff61083616565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6109c1828261090e565b600160a060020a0382166000908152600160209081526040808320338085529252909120546105c3918491610510908563ffffffff61083616565b610a0d60038263ffffffff610ac316565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610a5560038263ffffffff610b1116565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0382161515610aa357600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0381161515610ad857600080fd5b610ae28282610a8c565b15610aec57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a0381161515610b2657600080fd5b610b308282610a8c565b1515610b3b57600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916905556fea165627a7a7230582095e5a09cdfed8da1bac35d1d47481d840772845c664fae262383213bca56847c0029

Deployed Bytecode Sourcemap

13402:510:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13402:510:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12996:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;12996:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4734:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4734:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2887:91;;;:::i;:::-;;;;;;;;;;;;;;;;5355:228;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5355:228:0;;;;;;;;;;;;;;;;;:::i;13609:56::-;;;:::i;13312:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6109:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6109:203:0;;;;;;;;:::i;11899:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11899:131:0;;;;;;;;:::i;12199:79::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12199:79:0;;:::i;:::-;;3197:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3197:106:0;-1:-1:-1;;;;;3197:106:0;;:::i;12532:95::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12532:95:0;;;;;;;;:::i;13146:87::-;;;:::i;11147:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11147:92:0;-1:-1:-1;;;;;11147:92:0;;:::i;11247:77::-;;;:::i;6843:213::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6843:213:0;;;;;;;;:::i;3947:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3947:140:0;;;;;;;;:::i;11030:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11030:109:0;-1:-1:-1;;;;;11030:109:0;;:::i;3642:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3642:131:0;;;;;;;;;;:::i;12996:83::-;13066:5;13059:12;;;;;;;;-1:-1:-1;;13059:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13033:13;;13059:12;;13066:5;;13059:12;;13066:5;13059:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12996:83;:::o;4734:148::-;4799:4;4816:36;4825:10;4837:7;4846:5;4816:8;:36::i;:::-;-1:-1:-1;4870:4:0;4734:148;;;;:::o;2887:91::-;2958:12;;2887:91;:::o;5355:228::-;5434:4;5451:26;5461:4;5467:2;5471:5;5451:9;:26::i;:::-;-1:-1:-1;;;;;5515:14:0;;;;;;:8;:14;;;;;;;;5503:10;5515:26;;;;;;;;;5488:65;;5497:4;;5515:37;;5546:5;5515:37;:30;:37;:::i;:::-;5488:8;:65::i;:::-;-1:-1:-1;5571:4:0;5355:228;;;;;:::o;13609:56::-;13650:15;13609:56;:::o;13312:83::-;13378:9;;;;13312:83;:::o;6109:203::-;6215:10;6189:4;6236:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6236:29:0;;;;;;;;;;6189:4;;6206:76;;6227:7;;6236:45;;6270:10;6236:45;:33;:45;:::i;11899:131::-;11967:4;10981:20;10990:10;10981:8;:20::i;:::-;10973:29;;;;;;;;11984:16;11990:2;11994:5;11984;:16::i;12199:79::-;12246:24;12252:10;12264:5;12246;:24::i;:::-;12199:79;:::o;3197:106::-;-1:-1:-1;;;;;3279:16:0;3252:7;3279:16;;;;;;;;;;;;3197:106::o;12532:95::-;12597:22;12607:4;12613:5;12597:9;:22::i;:::-;12532:95;;:::o;13146:87::-;13218:7;13211:14;;;;;;;;-1:-1:-1;;13211:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13185:13;;13211:14;;13218:7;;13211:14;;13218:7;13211:14;;;;;;;;;;;;;;;;;;;;;;;;11147:92;10981:20;10990:10;10981:8;:20::i;:::-;10973:29;;;;;;;;11212:19;11223:7;11212:10;:19::i;11247:77::-;11291:25;11305:10;11291:13;:25::i;:::-;11247:77::o;6843:213::-;6954:10;6928:4;6975:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6975:29:0;;;;;;;;;;6928:4;;6945:81;;6966:7;;6975:50;;7009:15;6975:50;:33;:50;:::i;3947:140::-;4008:4;4025:32;4035:10;4047:2;4051:5;4025:9;:32::i;11030:109::-;11086:4;11110:21;:8;11123:7;11110:21;:12;:21;:::i;:::-;11103:28;11030:109;-1:-1:-1;;11030:109:0:o;3642:131::-;-1:-1:-1;;;;;3741:15:0;;;3714:7;3741:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;3642:131::o;8942:254::-;-1:-1:-1;;;;;9035:21:0;;;;9027:30;;;;;;-1:-1:-1;;;;;9076:19:0;;;;9068:28;;;;;;-1:-1:-1;;;;;9109:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;9157:31;;;;;;;;;;;;;;;;;8942:254;;;:::o;7283:262::-;-1:-1:-1;;;;;7371:16:0;;;;7363:25;;;;;;-1:-1:-1;;;;;7419:15:0;;:9;:15;;;;;;;;;;;:26;;7439:5;7419:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;7401:15:0;;;:9;:15;;;;;;;;;;;:44;;;;7472:13;;;;;;;:24;;7490:5;7472:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;7456:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;7512:25;;;;;;;7456:13;;7512:25;;;;;;;;;;;;;7283:262;;;:::o;1904:150::-;1962:7;1990:6;;;;1982:15;;;;;;-1:-1:-1;2020:5:0;;;1904:150::o;2142:::-;2200:7;2232:5;;;2256:6;;;;2248:15;;;;;;2283:1;2142:150;-1:-1:-1;;;2142:150:0:o;7897:269::-;-1:-1:-1;;;;;7972:21:0;;;;7964:30;;;;;;8022:12;;:23;;8039:5;8022:23;:16;:23;:::i;:::-;8007:12;:38;-1:-1:-1;;;;;8077:18:0;;:9;:18;;;;;;;;;;;:29;;8100:5;8077:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;8056:18:0;;:9;:18;;;;;;;;;;;:50;;;;8122:36;;;;;;;8056:18;;:9;;8122:36;;;;;;;;;;7897:269;;:::o;8400:::-;-1:-1:-1;;;;;8475:21:0;;;;8467:30;;;;;;8525:12;;:23;;8542:5;8525:23;:16;:23;:::i;:::-;8510:12;:38;-1:-1:-1;;;;;8580:18:0;;:9;:18;;;;;;;;;;;:29;;8603:5;8580:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;8559:18:0;;:9;:18;;;;;;;;;;;:50;;;;8625:36;;;;;;;8559:9;;8625:36;;;;;;;;;;;8400:269;;:::o;9595:182::-;9666:21;9672:7;9681:5;9666;:21::i;:::-;-1:-1:-1;;;;;9728:17:0;;;;;;:8;:17;;;;;;;;9716:10;9728:29;;;;;;;;;9698:71;;9707:7;;9728:40;;9762:5;9728:40;:33;:40;:::i;11332:122::-;11389:21;:8;11402:7;11389:21;:12;:21;:::i;:::-;11426:20;;-1:-1:-1;;;;;11426:20:0;;;;;;;;11332:122;:::o;11462:130::-;11522:24;:8;11538:7;11522:24;:15;:24;:::i;:::-;11562:22;;-1:-1:-1;;;;;11562:22:0;;;;;;;;11462:130;:::o;10493:165::-;10565:4;-1:-1:-1;;;;;10590:21:0;;;;10582:30;;;;;;-1:-1:-1;;;;;;10630:20:0;:11;:20;;;;;;;;;;;;;;;10493:165::o;9945:186::-;-1:-1:-1;;;;;10022:21:0;;;;10014:30;;;;;;10064:18;10068:4;10074:7;10064:3;:18::i;:::-;10063:19;10055:28;;;;;;-1:-1:-1;;;;;10096:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;10096:27:0;10119:4;10096:27;;;9945:186::o;10210:189::-;-1:-1:-1;;;;;10290:21:0;;;;10282:30;;;;;;10331:18;10335:4;10341:7;10331:3;:18::i;:::-;10323:27;;;;;;;;-1:-1:-1;;;;;10363:20:0;10386:5;10363:20;;;;;;;;;;;:28;;-1:-1:-1;;10363:28:0;;;10210:189::o

Swarm Source

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