ETH Price: $2,678.08 (+1.62%)
Gas: 1 Gwei

Token

Quantfury Token (QTF)
 

Overview

Max Total Supply

100,000,000 QTF

Holders

569

Total Transfers

-

Market

Price

$5.50 @ 0.002054 ETH (+0.50%)

Onchain Market Cap

$550,000,000.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 8 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Quantfury makes trading of traditional and cryptocurrency markets free of any fees and always at real prices of global and crypto exchanges.

Profitability / Loss

Since Initial Offer Price
:$0.65 746.15%

Market

Volume (24H):$271.57
Market Capitalization:$0.00
Circulating Supply:0.00 QTF
Market Data Source: Coinmarketcap

IEO Information

ITO Start Date : Dec 2018
ITO End Date : Jul 2019
Total Cap : $65,000,000
Token Distribution Date : Jun 16, 2019
ITO Price  : $0.65
Country : British Virgin Islands

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
QTF

Compiler Version
v0.5.9+commit.e560f70d

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol

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

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.2;

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
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;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.5.2;



/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
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));
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.2;


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

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.5.2;

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

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

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @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.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     * @notice Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _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;
    }
}

// File: contracts/QTF.sol

pragma solidity 0.5.9;




contract QTF is ERC20, ERC20Detailed, Ownable {
    string private _name = "Quantfury Token";
    string private _symbol = "QTF";
    uint8 private _decimals = 8;
    //global transfer lock
    bool private _lockTransfer = false;

    //list of locked transfer holders
    mapping(address => bool) private _lockedList;

    modifier onlyPersonalUnlocked() {
        require(_lockedList[msg.sender]==false); //individual transfer lock
        _;
    }

    modifier onlyGlobalUnlocked() {
        require(_lockTransfer==false); //global transfer lock
        _;
    }

    constructor() ERC20Detailed(_name, _symbol, _decimals)
    public
    {
        _mint(address(msg.sender), 100000000*(10**uint256(_decimals)));
    }

    /**
     * @dev Show holder status of address
     * @param holder The address to query the balance of.
     * @return A boolean that indicates if the operation was successful.
     */
    function getPersonalLockStatus(address holder)
    public
    view
    returns (bool)
    {
        return _lockedList[holder];
    }

    /**
     * @dev Show global status
     * @return A boolean that indicates are transfers available or not.
     */
    function getGlobalLockStatus()
    public
    view
    returns (bool)
    {
        return _lockTransfer;
    }

    /**
     * @dev Transfer token to a specified address
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return A boolean that indicates if the operation was successful.
     */
    function transfer(address to, uint256 value)
    onlyPersonalUnlocked
    onlyGlobalUnlocked
    public
    returns (bool)
    {
        return super.transfer(to, value);
    }

    /**
     * @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)
    onlyPersonalUnlocked
    onlyGlobalUnlocked
    public
    returns (bool)
    {
        return super.approve(spender, value);
    }

    /**
     * @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)
    onlyPersonalUnlocked
    onlyGlobalUnlocked
    public
    returns (bool)
    {
        return super.increaseAllowance(spender, addedValue);
    }

    /**
     * @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)
    onlyPersonalUnlocked
    onlyGlobalUnlocked
    public
    returns (bool)
    {
        return super.decreaseAllowance(spender, subtractedValue);
    }

    /**
     * @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)
    onlyPersonalUnlocked
    onlyGlobalUnlocked
    public
    returns (bool)
    {
        return super.transferFrom(from, to, value);
    }

    /**
     * @dev Transfer tokens from one address to another for client.
     * @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 sendFromTo(address from, address to, uint256 value)
    onlyOwner
    public
    returns (bool)
    {
        super._transfer(from, to, value);
        return true;
    }

    /**
     * @dev Function to set status to holder
     * @param holder The address that will be locked in holder list.
     * @return A boolean that indicates if the operation was successful.
     */
    function setPersonalLockStatus(address holder, bool status)
    onlyOwner
    public
    returns (bool)
    {
        _lockedList[holder] = status;
        emit LockPersonal(msg.sender, holder, now, status);
        return true;
    }

    /**
     * @dev Function to lock/unlock all transfers
     * @param status The boolean variable that will be locked any transfers.
     * @return A boolean that indicates if the operation was successful.
     */
    function setGlobalLockStatus(bool status)
    onlyOwner
    public
    returns (bool)
    {
        _lockTransfer = status;
        emit LockGlobal(msg.sender, now, status);
        return true;
    }


    /**
     * @dev Function to recover token that was sent
     * @param _token The address of token contract from with was sent.
     * @param receiver The address of receiver of token.
     */
    function recoverSentTokens(address _token, address receiver)
    onlyOwner
    public  {
        IERC20 token = IERC20(_token);
        token.transfer(receiver, token.balanceOf(address(this)));
    }

    event LockPersonal(address indexed changedByAddress, address holder, uint256 time, bool status);
    event LockGlobal(address indexed changedByAddress, uint256 time, bool status);
}

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":false,"inputs":[{"name":"_token","type":"address"},{"name":"receiver","type":"address"}],"name":"recoverSentTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"holder","type":"address"}],"name":"getPersonalLockStatus","outputs":[{"name":"","type":"bool"}],"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":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":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":true,"inputs":[],"name":"getGlobalLockStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"sendFromTo","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"holder","type":"address"},{"name":"status","type":"bool"}],"name":"setPersonalLockStatus","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[{"name":"status","type":"bool"}],"name":"setGlobalLockStatus","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":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":"changedByAddress","type":"address"},{"indexed":false,"name":"holder","type":"address"},{"indexed":false,"name":"time","type":"uint256"},{"indexed":false,"name":"status","type":"bool"}],"name":"LockPersonal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"changedByAddress","type":"address"},{"indexed":false,"name":"time","type":"uint256"},{"indexed":false,"name":"status","type":"bool"}],"name":"LockGlobal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"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"}]

60806040526040518060400160405280600f81526020017f5175616e746675727920546f6b656e00000000000000000000000000000000008152506006908051906020019062000051929190620004f4565b506040518060400160405280600381526020017f5154460000000000000000000000000000000000000000000000000000000000815250600790805190602001906200009f929190620004f4565b5060088060006101000a81548160ff021916908360ff1602179055506000600860016101000a81548160ff021916908315150217905550348015620000e357600080fd5b5060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156200017e5780601f1062000152576101008083540402835291602001916200017e565b820191906000526020600020905b8154815290600101906020018083116200016057829003601f168201915b505050505060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156200021d5780601f10620001f1576101008083540402835291602001916200021d565b820191906000526020600020905b815481529060010190602001808311620001ff57829003601f168201915b5050505050600860009054906101000a900460ff1682600390805190602001906200024a929190620004f4565b50816004908051906020019062000263929190620004f4565b5080600560006101000a81548160ff021916908360ff16021790555050505033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36200036d33600860009054906101000a900460ff1660ff16600a0a6305f5e100026200037360201b60201c565b620005a3565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003ae57600080fd5b620003ca81600254620004d460201b620018e41790919060201c565b60028190555062000428816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620004d460201b620018e41790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080828401905083811015620004ea57600080fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200053757805160ff191683800117855562000568565b8280016001018555821562000568579182015b82811115620005675782518255916020019190600101906200054a565b5b5090506200057791906200057b565b5090565b620005a091905b808211156200059c57600081600090555060010162000582565b5090565b90565b61193880620005b36000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063a26e62321161007c578063a26e62321461060c578063a457c2d714610674578063a9059cbb146106da578063d476fc9a14610740578063dd62ed3e14610788578063f2fde38b1461080057610137565b80638da5cb5b146104755780638f32d59b146104bf578063902db251146104e157806395d89b41146105035780639bbd06eb1461058657610137565b8063313ce567116100ff578063313ce5671461032d578063358a1dfe1461035157806339509351146103ad57806370a0823114610413578063715018a61461046b57610137565b806306fdde031461013c578063095ea7b3146101bf5780630963e4951461022557806318160ddd1461028957806323b872dd146102a7575b600080fd5b610144610844565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108e6565b604051808215151515815260200191505060405180910390f35b6102876004803603604081101561023b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610976565b005b610291610b0b565b6040518082815260200191505060405180910390f35b610313600480360360608110156102bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b15565b604051808215151515815260200191505060405180910390f35b610335610ba7565b604051808260ff1660ff16815260200191505060405180910390f35b6103936004803603602081101561036757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bbe565b604051808215151515815260200191505060405180910390f35b6103f9600480360360408110156103c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c14565b604051808215151515815260200191505060405180910390f35b6104556004803603602081101561042957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca4565b6040518082815260200191505060405180910390f35b610473610cec565b005b61047d610dbe565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104c7610de8565b604051808215151515815260200191505060405180910390f35b6104e9610e40565b604051808215151515815260200191505060405180910390f35b61050b610e57565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561054b578082015181840152602081019050610530565b50505050905090810190601f1680156105785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105f26004803603606081101561059c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ef9565b604051808215151515815260200191505060405180910390f35b61065a6004803603604081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610f22565b604051808215151515815260200191505060405180910390f35b6106c06004803603604081101561068a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611024565b604051808215151515815260200191505060405180910390f35b610726600480360360408110156106f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110b4565b604051808215151515815260200191505060405180910390f35b61076e6004803603602081101561075657600080fd5b81019080803515159060200190929190505050611144565b604051808215151515815260200191505060405180910390f35b6107ea6004803603604081101561079e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d4565b6040518082815260200191505060405180910390f35b6108426004803603602081101561081657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061125b565b005b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b6000801515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461094457600080fd5b60001515600860019054906101000a900460ff1615151461096457600080fd5b61096e8383611278565b905092915050565b61097e610de8565b61098757600080fd5b60008290508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610a2657600080fd5b505afa158015610a3a573d6000803e3d6000fd5b505050506040513d6020811015610a5057600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610aca57600080fd5b505af1158015610ade573d6000803e3d6000fd5b505050506040513d6020811015610af457600080fd5b810190808051906020019092919050505050505050565b6000600254905090565b6000801515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610b7357600080fd5b60001515600860019054906101000a900460ff16151514610b9357600080fd5b610b9e84848461128f565b90509392505050565b6000600560009054906101000a900460ff16905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000801515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610c7257600080fd5b60001515600860019054906101000a900460ff16151514610c9257600080fd5b610c9c8383611340565b905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cf4610de8565b610cfd57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000600860019054906101000a900460ff16905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eef5780601f10610ec457610100808354040283529160200191610eef565b820191906000526020600020905b815481529060010190602001808311610ed257829003601f168201915b5050505050905090565b6000610f03610de8565b610f0c57600080fd5b610f178484846113e5565b600190509392505050565b6000610f2c610de8565b610f3557600080fd5b81600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167fa25b925e6af802a9d2c67d876c9a79a3423e0591a58c94334a20fbf5cd9862fb844285604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182151515158152602001935050505060405180910390a26001905092915050565b6000801515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461108257600080fd5b60001515600860019054906101000a900460ff161515146110a257600080fd5b6110ac83836115af565b905092915050565b6000801515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461111257600080fd5b60001515600860019054906101000a900460ff1615151461113257600080fd5b61113c8383611654565b905092915050565b600061114e610de8565b61115757600080fd5b81600860016101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f6fee9b43a92035e54c56f8bd4930934008b11957fccda246941d0efa9632c293428460405180838152602001821515151581526020019250505060405180910390a260019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611263610de8565b61126c57600080fd5b6112758161166b565b50565b6000611285338484611765565b6001905092915050565b600061129c8484846113e5565b611335843361133085600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118c490919063ffffffff16565b611765565b600190509392505050565b60006113db33846113d685600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e490919063ffffffff16565b611765565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141f57600080fd5b611470816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118c490919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611503816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600061164a338461164585600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118c490919063ffffffff16565b611765565b6001905092915050565b60006116613384846113e5565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116a557600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179f57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117d957600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000828211156118d357600080fd5b600082840390508091505092915050565b6000808284019050838110156118f957600080fd5b809150509291505056fea265627a7a723058201b4256fdcc1ea5e09a18b579d1a788b8c627dded27788a48bfaf5f4896bd593564736f6c63430005090032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063a26e62321161007c578063a26e62321461060c578063a457c2d714610674578063a9059cbb146106da578063d476fc9a14610740578063dd62ed3e14610788578063f2fde38b1461080057610137565b80638da5cb5b146104755780638f32d59b146104bf578063902db251146104e157806395d89b41146105035780639bbd06eb1461058657610137565b8063313ce567116100ff578063313ce5671461032d578063358a1dfe1461035157806339509351146103ad57806370a0823114610413578063715018a61461046b57610137565b806306fdde031461013c578063095ea7b3146101bf5780630963e4951461022557806318160ddd1461028957806323b872dd146102a7575b600080fd5b610144610844565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108e6565b604051808215151515815260200191505060405180910390f35b6102876004803603604081101561023b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610976565b005b610291610b0b565b6040518082815260200191505060405180910390f35b610313600480360360608110156102bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b15565b604051808215151515815260200191505060405180910390f35b610335610ba7565b604051808260ff1660ff16815260200191505060405180910390f35b6103936004803603602081101561036757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bbe565b604051808215151515815260200191505060405180910390f35b6103f9600480360360408110156103c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c14565b604051808215151515815260200191505060405180910390f35b6104556004803603602081101561042957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca4565b6040518082815260200191505060405180910390f35b610473610cec565b005b61047d610dbe565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104c7610de8565b604051808215151515815260200191505060405180910390f35b6104e9610e40565b604051808215151515815260200191505060405180910390f35b61050b610e57565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561054b578082015181840152602081019050610530565b50505050905090810190601f1680156105785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105f26004803603606081101561059c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ef9565b604051808215151515815260200191505060405180910390f35b61065a6004803603604081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610f22565b604051808215151515815260200191505060405180910390f35b6106c06004803603604081101561068a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611024565b604051808215151515815260200191505060405180910390f35b610726600480360360408110156106f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110b4565b604051808215151515815260200191505060405180910390f35b61076e6004803603602081101561075657600080fd5b81019080803515159060200190929190505050611144565b604051808215151515815260200191505060405180910390f35b6107ea6004803603604081101561079e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d4565b6040518082815260200191505060405180910390f35b6108426004803603602081101561081657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061125b565b005b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b6000801515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461094457600080fd5b60001515600860019054906101000a900460ff1615151461096457600080fd5b61096e8383611278565b905092915050565b61097e610de8565b61098757600080fd5b60008290508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610a2657600080fd5b505afa158015610a3a573d6000803e3d6000fd5b505050506040513d6020811015610a5057600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610aca57600080fd5b505af1158015610ade573d6000803e3d6000fd5b505050506040513d6020811015610af457600080fd5b810190808051906020019092919050505050505050565b6000600254905090565b6000801515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610b7357600080fd5b60001515600860019054906101000a900460ff16151514610b9357600080fd5b610b9e84848461128f565b90509392505050565b6000600560009054906101000a900460ff16905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000801515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610c7257600080fd5b60001515600860019054906101000a900460ff16151514610c9257600080fd5b610c9c8383611340565b905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cf4610de8565b610cfd57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000600860019054906101000a900460ff16905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eef5780601f10610ec457610100808354040283529160200191610eef565b820191906000526020600020905b815481529060010190602001808311610ed257829003601f168201915b5050505050905090565b6000610f03610de8565b610f0c57600080fd5b610f178484846113e5565b600190509392505050565b6000610f2c610de8565b610f3557600080fd5b81600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167fa25b925e6af802a9d2c67d876c9a79a3423e0591a58c94334a20fbf5cd9862fb844285604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182151515158152602001935050505060405180910390a26001905092915050565b6000801515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461108257600080fd5b60001515600860019054906101000a900460ff161515146110a257600080fd5b6110ac83836115af565b905092915050565b6000801515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461111257600080fd5b60001515600860019054906101000a900460ff1615151461113257600080fd5b61113c8383611654565b905092915050565b600061114e610de8565b61115757600080fd5b81600860016101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f6fee9b43a92035e54c56f8bd4930934008b11957fccda246941d0efa9632c293428460405180838152602001821515151581526020019250505060405180910390a260019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611263610de8565b61126c57600080fd5b6112758161166b565b50565b6000611285338484611765565b6001905092915050565b600061129c8484846113e5565b611335843361133085600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118c490919063ffffffff16565b611765565b600190509392505050565b60006113db33846113d685600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e490919063ffffffff16565b611765565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141f57600080fd5b611470816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118c490919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611503816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600061164a338461164585600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118c490919063ffffffff16565b611765565b6001905092915050565b60006116613384846113e5565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116a557600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179f57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117d957600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000828211156118d357600080fd5b600082840390508091505092915050565b6000808284019050838110156118f957600080fd5b809150509291505056fea265627a7a723058201b4256fdcc1ea5e09a18b579d1a788b8c627dded27788a48bfaf5f4896bd593564736f6c63430005090032

Deployed Bytecode Sourcemap

14172:6611:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14172:6611:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11395:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11395:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16584:191;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16584:191:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20388:204;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20388:204:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3796:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18579:211;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18579:211:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11711:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15119:139;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15119:139:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17301:221;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17301:221:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4106:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4106:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13340:140;;;:::i;:::-;;12550:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12885:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15389:117;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11545:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11545:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19096:186;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19096:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19498:242;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19498:242:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18053:231;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18053:231:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15754:183;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15754:183:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19969:208;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19969:208:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4551:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4551:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13657:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13657:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11395:83;11432:13;11465:5;11458:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11395:83;:::o;16584:191::-;16709:4;14582:5;14557:30;;:11;:23;14569:10;14557:23;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;14549:39;;;;;;14707:5;14692:20;;:13;;;;;;;;;;;:20;;;14684:29;;;;;;16738;16752:7;16761:5;16738:13;:29::i;:::-;16731:36;;16584:191;;;;:::o;20388:204::-;12762:9;:7;:9::i;:::-;12754:18;;;;;;20488:12;20510:6;20488:29;;20528:5;:14;;;20543:8;20553:5;:15;;;20577:4;20553:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20553:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20553:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20553:30:0;;;;;;;;;;;;;;;;20528:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20528:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20528:56:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20528:56:0;;;;;;;;;;;;;;;;;12783:1;20388:204;;:::o;3796:91::-;3840:7;3867:12;;3860:19;;3796:91;:::o;18579:211::-;18718:4;14582:5;14557:30;;:11;:23;14569:10;14557:23;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;14549:39;;;;;;14707:5;14692:20;;:13;;;;;;;;;;;:20;;;14684:29;;;;;;18747:35;18766:4;18772:2;18776:5;18747:18;:35::i;:::-;18740:42;;18579:211;;;;;:::o;11711:83::-;11752:5;11777:9;;;;;;;;;;;11770:16;;11711:83;:::o;15119:139::-;15202:4;15231:11;:19;15243:6;15231:19;;;;;;;;;;;;;;;;;;;;;;;;;15224:26;;15119:139;;;:::o;17301:221::-;17441:4;14582:5;14557:30;;:11;:23;14569:10;14557:23;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;14549:39;;;;;;14707:5;14692:20;;:13;;;;;;;;;;;:20;;;14684:29;;;;;;17470:44;17494:7;17503:10;17470:23;:44::i;:::-;17463:51;;17301:221;;;;:::o;4106:106::-;4161:7;4188:9;:16;4198:5;4188:16;;;;;;;;;;;;;;;;4181:23;;4106:106;;;:::o;13340:140::-;12762:9;:7;:9::i;:::-;12754:18;;;;;;13439:1;13402:40;;13423:6;;;;;;;;;;;13402:40;;;;;;;;;;;;13470:1;13453:6;;:19;;;;;;;;;;;;;;;;;;13340:140::o;12550:79::-;12588:7;12615:6;;;;;;;;;;;12608:13;;12550:79;:::o;12885:92::-;12925:4;12963:6;;;;;;;;;;;12949:20;;:10;:20;;;12942:27;;12885:92;:::o;15389:117::-;15456:4;15485:13;;;;;;;;;;;15478:20;;15389:117;:::o;11545:87::-;11584:13;11617:7;11610:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11545:87;:::o;19096:186::-;19198:4;12762:9;:7;:9::i;:::-;12754:18;;;;;;19220:32;19236:4;19242:2;19246:5;19220:15;:32::i;:::-;19270:4;19263:11;;19096:186;;;;;:::o;19498:242::-;19599:4;12762:9;:7;:9::i;:::-;12754:18;;;;;;19643:6;19621:11;:19;19633:6;19621:19;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;19678:10;19665:45;;;19690:6;19698:3;19703:6;19665:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19728:4;19721:11;;19498:242;;;;:::o;18053:231::-;18198:4;14582:5;14557:30;;:11;:23;14569:10;14557:23;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;14549:39;;;;;;14707:5;14692:20;;:13;;;;;;;;;;;:20;;;14684:29;;;;;;18227:49;18251:7;18260:15;18227:23;:49::i;:::-;18220:56;;18053:231;;;;:::o;15754:183::-;15875:4;14582:5;14557:30;;:11;:23;14569:10;14557:23;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;14549:39;;;;;;14707:5;14692:20;;:13;;;;;;;;;;;:20;;;14684:29;;;;;;15904:25;15919:2;15923:5;15904:14;:25::i;:::-;15897:32;;15754:183;;;;:::o;19969:208::-;20052:4;12762:9;:7;:9::i;:::-;12754:18;;;;;;20090:6;20074:13;;:22;;;;;;;;;;;;;;;;;;20123:10;20112:35;;;20135:3;20140:6;20112:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;20165:4;20158:11;;19969:208;;;:::o;4551:131::-;4623:7;4650:8;:15;4659:5;4650:15;;;;;;;;;;;;;;;:24;4666:7;4650:24;;;;;;;;;;;;;;;;4643:31;;4551:131;;;;:::o;13657:109::-;12762:9;:7;:9::i;:::-;12754:18;;;;;;13730:28;13749:8;13730:18;:28::i;:::-;13657:109;:::o;5643:148::-;5708:4;5725:36;5734:10;5746:7;5755:5;5725:8;:36::i;:::-;5779:4;5772:11;;5643:148;;;;:::o;6264:228::-;6343:4;6360:26;6370:4;6376:2;6380:5;6360:9;:26::i;:::-;6397:65;6406:4;6412:10;6424:37;6455:5;6424:8;:14;6433:4;6424:14;;;;;;;;;;;;;;;:26;6439:10;6424:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;6397:8;:65::i;:::-;6480:4;6473:11;;6264:228;;;;;:::o;7018:203::-;7098:4;7115:76;7124:10;7136:7;7145:45;7179:10;7145:8;:20;7154:10;7145:20;;;;;;;;;;;;;;;:29;7166:7;7145:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;7115:8;:76::i;:::-;7209:4;7202:11;;7018:203;;;;:::o;8192:262::-;8294:1;8280:16;;:2;:16;;;;8272:25;;;;;;8328:26;8348:5;8328:9;:15;8338:4;8328:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;8310:9;:15;8320:4;8310:15;;;;;;;;;;;;;;;:44;;;;8381:24;8399:5;8381:9;:13;8391:2;8381:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;8365:9;:13;8375:2;8365:13;;;;;;;;;;;;;;;:40;;;;8436:2;8421:25;;8430:4;8421:25;;;8440:5;8421:25;;;;;;;;;;;;;;;;;;8192:262;;;:::o;7752:213::-;7837:4;7854:81;7863:10;7875:7;7884:50;7918:15;7884:8;:20;7893:10;7884:20;;;;;;;;;;;;;;;:29;7905:7;7884:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;7854:8;:81::i;:::-;7953:4;7946:11;;7752:213;;;;:::o;4856:140::-;4917:4;4934:32;4944:10;4956:2;4960:5;4934:9;:32::i;:::-;4984:4;4977:11;;4856:140;;;;:::o;13916:187::-;14010:1;13990:22;;:8;:22;;;;13982:31;;;;;;14058:8;14029:38;;14050:6;;;;;;;;;;;14029:38;;;;;;;;;;;;14087:8;14078:6;;:17;;;;;;;;;;;;;;;;;;13916:187;:::o;9851:254::-;9963:1;9944:21;;:7;:21;;;;9936:30;;;;;;10002:1;9985:19;;:5;:19;;;;9977:28;;;;;;10045:5;10018:8;:15;10027:5;10018:15;;;;;;;;;;;;;;;:24;10034:7;10018:24;;;;;;;;;;;;;;;:32;;;;10082:7;10066:31;;10075:5;10066:31;;;10091:5;10066:31;;;;;;;;;;;;;;;;;;9851:254;;;:::o;2162:150::-;2220:7;2253:1;2248;:6;;2240:15;;;;;;2266:9;2282:1;2278;:5;2266:17;;2303:1;2296:8;;;2162:150;;;;:::o;2400:::-;2458:7;2478:9;2494:1;2490;:5;2478:17;;2519:1;2514;:6;;2506:15;;;;;;2541:1;2534:8;;;2400:150;;;;:::o

Swarm Source

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