ETH Price: $2,927.49 (-2.51%)
Gas: 5 Gwei

Token

TKNT (TKNT)
 

Overview

Max Total Supply

1,000,000,000 TKNT

Holders

3,414 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000001 ETH (-0.01%)

Onchain Market Cap

$2,992,202.60

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

TKNT is a platform that provides Defi services with its utility token (TKNT) with Bet-mining features. It aims to bring a variety of Defi products such as lending, staking and swaps.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TKNTToken

Compiler Version
v0.5.8+commit.23d335f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-13
*/

/**
 *Submitted for verification at Etherscan.io on 2019-12-16
*/

/**
 *Submitted for verification at Etherscan.io on 2018-09-01
*/

pragma solidity 0.5.8; 

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

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    function totalSupply() public view returns (uint256);
    function balanceOf(address who) public view returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot 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-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
// File: openzeppelin-solidity/contracts/token/ERC20/BasicToken.sol

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) balances;

    uint256 totalSupply_;

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

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[msg.sender]);

        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

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

}

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

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev 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) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @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 Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

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

/**
 * @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 public 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() public {
    owner = msg.sender;
  }

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

  /**
   * @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 {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

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

/**
 * @title Capped token
 * @dev Mintable token with a token cap.
 */
contract CappedToken is StandardToken, Ownable{

    uint256 public cap;
    address public distributionContract;
    
    constructor(uint256 _cap, address _distributionContract) public {
        require(_cap > 0);
        cap = _cap;
        totalSupply_ = _cap;
        distributionContract = _distributionContract;
        balances[_distributionContract] = _cap;
    }

}

// File: openzeppelin-solidity/contracts/lifecycle/Pausable.sol

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
    event Pause();
    event Unpause();

    bool public paused = false;


    /**
    * @dev Modifier to make a function callable only when the contract is not paused.
    */
    modifier whenNotPaused() {
        require(!paused);
        _;
    }

    /**
    * @dev Modifier to make a function callable only when the contract is paused.
    */
    modifier whenPaused() {
        require(paused);
        _;
    }

    /**
    * @dev called by the owner to pause, triggers stopped state
    */
    function pause() onlyOwner whenNotPaused public {
        paused = true;
        emit Pause();
    }

    /**
    * @dev called by the owner to unpause, returns to normal state
    */
    function unpause() onlyOwner whenPaused public {
        paused = false;
        emit Unpause();
    }
}

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

/**
 * @title Pausable token
 * @dev StandardToken modified with pausable transfers.
 **/
contract PausableToken is StandardToken, Pausable {

    function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
        return super.transfer(_to, _value);
    }

    function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
        return super.transferFrom(_from, _to, _value);
    }

    function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
        return super.approve(_spender, _value);
    }

    function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
        return super.increaseApproval(_spender, _addedValue);
    }

    function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
        return super.decreaseApproval(_spender, _subtractedValue);
    }
}


// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <https://www.gnu.org/licenses/>.



contract TKNTToken is PausableToken, CappedToken {
    string public name = "TKNT";
    string public symbol = "TKNT";
    uint8 public decimals = 18;
    address public distributionContractAddress = 0xaaD926324e0E9C6b254049c00Fd16EBA9b034ad5;
    //                1 billion <---------|   |-----------------> 10^18
    uint256 constant TOTAL_CAP = 1000000000 * 1 ether;

    // FIXME: Here we've wanted to use constructor() keyword instead,
    // but solium/solhint lint softwares don't parse it properly as of
    // April 2018.
    constructor() public CappedToken(TOTAL_CAP, distributionContractAddress) {
        distributionContractAddress;
    }
}

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":true,"inputs":[],"name":"distributionContractAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"distributionContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","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":"pause","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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","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":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60038054600160a01b60ff021916905560c0604052600460808190527f544b4e540000000000000000000000000000000000000000000000000000000060a090815261004e9160069190610141565b506040805180820190915260048082527f544b4e5400000000000000000000000000000000000000000000000000000000602090920191825261009391600791610141565b5060088054601260ff1990911617610100600160a81b03191674aad926324e0e9c6b254049c00fd16eba9b034ad5001790553480156100d157600080fd5b50600854600380546001600160a01b031916331790556b033b2e3c9fd0803ce8000000906001600160a01b036101009091041660048290556001829055600580546001600160a01b039092166001600160a01b0319909216821790556000908152602081905260409020556101dc565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061018257805160ff19168380011785556101af565b828001600101855582156101af579182015b828111156101af578251825591602001919060010190610194565b506101bb9291506101bf565b5090565b6101d991905b808211156101bb57600081556001016101c5565b90565b610cfc806101eb6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad57806395d89b411161007157806395d89b41146102f9578063a9059cbb14610301578063d73dd6231461032d578063dd62ed3e14610359578063f2fde38b1461038757610121565b80635c975abb1461028f578063661884631461029757806370a08231146102c35780638456cb59146102e95780638da5cb5b146102f157610121565b806323b872dd116100f457806323b872dd14610221578063313ce56714610257578063355274ea146102755780633f4ba83a1461027d5780635a4528c21461028757610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e35780631ba66f2b146101fd575b600080fd5b61012e6103ad565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b03813516906020013561043b565b604080519115158252519081900360200190f35b6101eb610466565b60408051918252519081900360200190f35b61020561046c565b604080516001600160a01b039092168252519081900360200190f35b6101cf6004803603606081101561023757600080fd5b506001600160a01b03813581169160208101359091169060400135610480565b61025f6104ad565b6040805160ff9092168252519081900360200190f35b6101eb6104b6565b6102856104bc565b005b610205610524565b6101cf610533565b6101cf600480360360408110156102ad57600080fd5b506001600160a01b038135169060200135610543565b6101eb600480360360208110156102d957600080fd5b50356001600160a01b0316610567565b610285610582565b6102056105f1565b61012e610600565b6101cf6004803603604081101561031757600080fd5b506001600160a01b03813516906020013561065b565b6101cf6004803603604081101561034357600080fd5b506001600160a01b03813516906020013561067f565b6101eb6004803603604081101561036f57600080fd5b506001600160a01b03813581169160200135166106a3565b6102856004803603602081101561039d57600080fd5b50356001600160a01b03166106ce565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b505050505081565b600354600090600160a01b900460ff161561045557600080fd5b61045f8383610754565b9392505050565b60015490565b60085461010090046001600160a01b031681565b600354600090600160a01b900460ff161561049a57600080fd5b6104a58484846107ba565b949350505050565b60085460ff1681565b60045481565b6003546001600160a01b031633146104d357600080fd5b600354600160a01b900460ff166104e957600080fd5b60038054600160a01b60ff02191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6005546001600160a01b031681565b600354600160a01b900460ff1681565b600354600090600160a01b900460ff161561055d57600080fd5b61045f838361092f565b6001600160a01b031660009081526020819052604090205490565b6003546001600160a01b0316331461059957600080fd5b600354600160a01b900460ff16156105b057600080fd5b60038054600160a01b60ff021916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6003546001600160a01b031681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104335780601f1061040857610100808354040283529160200191610433565b600354600090600160a01b900460ff161561067557600080fd5b61045f8383610a1f565b600354600090600160a01b900460ff161561069957600080fd5b61045f8383610afe565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b031633146106e557600080fd5b6001600160a01b0381166106f857600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60006001600160a01b0383166107cf57600080fd5b6001600160a01b0384166000908152602081905260409020548211156107f457600080fd5b6001600160a01b038416600090815260026020908152604080832033845290915290205482111561082457600080fd5b6001600160a01b03841660009081526020819052604090205461084d908363ffffffff610b9716565b6001600160a01b038086166000908152602081905260408082209390935590851681522054610882908363ffffffff610bd916565b6001600160a01b038085166000908152602081815260408083209490945591871681526002825282812033825290915220546108c4908363ffffffff610b9716565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b3360009081526002602090815260408083206001600160a01b038616845290915281205480831115610984573360009081526002602090815260408083206001600160a01b03881684529091528120556109b9565b610994818463ffffffff610b9716565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60006001600160a01b038316610a3457600080fd5b33600090815260208190526040902054821115610a5057600080fd5b33600090815260208190526040902054610a70908363ffffffff610b9716565b33600090815260208190526040808220929092556001600160a01b03851681522054610aa2908363ffffffff610bd916565b6001600160a01b038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b3360009081526002602090815260408083206001600160a01b0386168452909152812054610b32908363ffffffff610bd916565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600061045f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c36565b60008282018381101561045f5760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610cc857604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c8d578181015183820152602001610c75565b50505050905090810190601f168015610cba5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea165627a7a723058202db0d5a58c251aba7051dbf7ab34d5f1ddb9a802766df3ae23d1afce774bce6a0029

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad57806395d89b411161007157806395d89b41146102f9578063a9059cbb14610301578063d73dd6231461032d578063dd62ed3e14610359578063f2fde38b1461038757610121565b80635c975abb1461028f578063661884631461029757806370a08231146102c35780638456cb59146102e95780638da5cb5b146102f157610121565b806323b872dd116100f457806323b872dd14610221578063313ce56714610257578063355274ea146102755780633f4ba83a1461027d5780635a4528c21461028757610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e35780631ba66f2b146101fd575b600080fd5b61012e6103ad565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b03813516906020013561043b565b604080519115158252519081900360200190f35b6101eb610466565b60408051918252519081900360200190f35b61020561046c565b604080516001600160a01b039092168252519081900360200190f35b6101cf6004803603606081101561023757600080fd5b506001600160a01b03813581169160208101359091169060400135610480565b61025f6104ad565b6040805160ff9092168252519081900360200190f35b6101eb6104b6565b6102856104bc565b005b610205610524565b6101cf610533565b6101cf600480360360408110156102ad57600080fd5b506001600160a01b038135169060200135610543565b6101eb600480360360208110156102d957600080fd5b50356001600160a01b0316610567565b610285610582565b6102056105f1565b61012e610600565b6101cf6004803603604081101561031757600080fd5b506001600160a01b03813516906020013561065b565b6101cf6004803603604081101561034357600080fd5b506001600160a01b03813516906020013561067f565b6101eb6004803603604081101561036f57600080fd5b506001600160a01b03813581169160200135166106a3565b6102856004803603602081101561039d57600080fd5b50356001600160a01b03166106ce565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b505050505081565b600354600090600160a01b900460ff161561045557600080fd5b61045f8383610754565b9392505050565b60015490565b60085461010090046001600160a01b031681565b600354600090600160a01b900460ff161561049a57600080fd5b6104a58484846107ba565b949350505050565b60085460ff1681565b60045481565b6003546001600160a01b031633146104d357600080fd5b600354600160a01b900460ff166104e957600080fd5b60038054600160a01b60ff02191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6005546001600160a01b031681565b600354600160a01b900460ff1681565b600354600090600160a01b900460ff161561055d57600080fd5b61045f838361092f565b6001600160a01b031660009081526020819052604090205490565b6003546001600160a01b0316331461059957600080fd5b600354600160a01b900460ff16156105b057600080fd5b60038054600160a01b60ff021916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6003546001600160a01b031681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104335780601f1061040857610100808354040283529160200191610433565b600354600090600160a01b900460ff161561067557600080fd5b61045f8383610a1f565b600354600090600160a01b900460ff161561069957600080fd5b61045f8383610afe565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b031633146106e557600080fd5b6001600160a01b0381166106f857600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60006001600160a01b0383166107cf57600080fd5b6001600160a01b0384166000908152602081905260409020548211156107f457600080fd5b6001600160a01b038416600090815260026020908152604080832033845290915290205482111561082457600080fd5b6001600160a01b03841660009081526020819052604090205461084d908363ffffffff610b9716565b6001600160a01b038086166000908152602081905260408082209390935590851681522054610882908363ffffffff610bd916565b6001600160a01b038085166000908152602081815260408083209490945591871681526002825282812033825290915220546108c4908363ffffffff610b9716565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b3360009081526002602090815260408083206001600160a01b038616845290915281205480831115610984573360009081526002602090815260408083206001600160a01b03881684529091528120556109b9565b610994818463ffffffff610b9716565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60006001600160a01b038316610a3457600080fd5b33600090815260208190526040902054821115610a5057600080fd5b33600090815260208190526040902054610a70908363ffffffff610b9716565b33600090815260208190526040808220929092556001600160a01b03851681522054610aa2908363ffffffff610bd916565b6001600160a01b038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b3360009081526002602090815260408083206001600160a01b0386168452909152812054610b32908363ffffffff610bd916565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600061045f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c36565b60008282018381101561045f5760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610cc857604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c8d578181015183820152602001610c75565b50505050905090810190601f168015610cba5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea165627a7a723058202db0d5a58c251aba7051dbf7ab34d5f1ddb9a802766df3ae23d1afce774bce6a0029

Deployed Bytecode Sourcemap

16503:669:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16503:669:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16559:27;;;:::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;16559:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15305:144;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15305:144:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6486:91;;;:::i;:::-;;;;;;;;;;;;;;;;16662:87;;;:::i;:::-;;;;-1:-1:-1;;;;;16662:87:0;;;;;;;;;;;;;;15131:166;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15131:166:0;;;;;;;;;;;;;;;;;:::i;16629:26::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13372:18;;;:::i;14648:105::-;;;:::i;:::-;;13397:35;;;:::i;13973:26::-;;;:::i;15642:187::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15642:187:0;;;;;;;;:::i;7326:107::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7326:107:0;-1:-1:-1;;;;;7326:107:0;;:::i;14452:103::-;;;:::i;12369:20::-;;;:::i;16593:29::-;;;:::i;14987:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14987:136:0;;;;;;;;:::i;15457:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15457:177:0;;;;;;;;:::i;10328:128::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10328:128:0;;;;;;;;;;:::i;12984:178::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12984:178:0;-1:-1:-1;;;;;12984:178:0;;:::i;16559:27::-;;;;;;;;;;;;;;;-1:-1:-1;;16559:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15305:144::-;14159:6;;15386:4;;-1:-1:-1;;;14159:6:0;;;;14158:7;14150:16;;;;;;15410:31;15424:8;15434:6;15410:13;:31::i;:::-;15403:38;15305:144;-1:-1:-1;;;15305:144:0:o;6486:91::-;6557:12;;6486:91;:::o;16662:87::-;;;;;;-1:-1:-1;;;;;16662:87:0;;:::o;15131:166::-;14159:6;;15227:4;;-1:-1:-1;;;14159:6:0;;;;14158:7;14150:16;;;;;;15251:38;15270:5;15277:3;15282:6;15251:18;:38::i;:::-;15244:45;15131:166;-1:-1:-1;;;;15131:166:0:o;16629:26::-;;;;;;:::o;13372:18::-;;;;:::o;14648:105::-;12797:5;;-1:-1:-1;;;;;12797:5:0;12783:10;:19;12775:28;;;;;;14335:6;;-1:-1:-1;;;14335:6:0;;;;14327:15;;;;;;14706:6;:14;;-1:-1:-1;;;;;;14706:14:0;;;14736:9;;;;14715:5;;14736:9;14648:105::o;13397:35::-;;;-1:-1:-1;;;;;13397:35:0;;:::o;13973:26::-;;;-1:-1:-1;;;13973:26:0;;;;;:::o;15642:187::-;14159:6;;15739:12;;-1:-1:-1;;;14159:6:0;;;;14158:7;14150:16;;;;;;15771:50;15794:8;15804:16;15771:22;:50::i;7326:107::-;-1:-1:-1;;;;;7409:16:0;7382:7;7409:16;;;;;;;;;;;;7326:107::o;14452:103::-;12797:5;;-1:-1:-1;;;;;12797:5:0;12783:10;:19;12775:28;;;;;;14159:6;;-1:-1:-1;;;14159:6:0;;;;14158:7;14150:16;;;;;;14511:6;:13;;-1:-1:-1;;;;;;14511:13:0;-1:-1:-1;;;14511:13:0;;;14540:7;;;;14511:13;;14540:7;14452:103::o;12369:20::-;;;-1:-1:-1;;;;;12369:20:0;;:::o;16593:29::-;;;;;;;;;;;;;;;-1:-1:-1;;16593:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14987:136;14159:6;;15064:4;;-1:-1:-1;;;14159:6:0;;;;14158:7;14150:16;;;;;;15088:27;15103:3;15108:6;15088:14;:27::i;15457:177::-;14159:6;;15549:12;;-1:-1:-1;;;14159:6:0;;;;14158:7;14150:16;;;;;;15581:45;15604:8;15614:11;15581:22;:45::i;10328:128::-;-1:-1:-1;;;;;10425:15:0;;;10402:7;10425:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;10328:128::o;12984:178::-;12797:5;;-1:-1:-1;;;;;12797:5:0;12783:10;:19;12775:28;;;;;;-1:-1:-1;;;;;13061:22:0;;13053:31;;;;;;13117:5;;13096:37;;-1:-1:-1;;;;;13096:37:0;;;;13117:5;;13096:37;;13117:5;;13096:37;13140:5;:16;;-1:-1:-1;;;;;;13140:16:0;-1:-1:-1;;;;;13140:16:0;;;;;;;;;;12984:178::o;9809:192::-;9897:10;9876:4;9889:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9889:29:0;;;;;;;;;;;:38;;;9939;;;;;;;9876:4;;9889:29;;9897:10;;9939:38;;;;;;;;-1:-1:-1;9991:4:0;9809:192;;;;:::o;8720:454::-;8802:4;-1:-1:-1;;;;;8823:17:0;;8815:26;;;;;;-1:-1:-1;;;;;8866:15:0;;:8;:15;;;;;;;;;;;8856:25;;;8848:34;;;;;;-1:-1:-1;;;;;8907:14:0;;;;;;:7;:14;;;;;;;;8922:10;8907:26;;;;;;;;8897:36;;;8889:45;;;;;;-1:-1:-1;;;;;8961:15:0;;:8;:15;;;;;;;;;;;:27;;8981:6;8961:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;8943:15:0;;;:8;:15;;;;;;;;;;;:45;;;;9011:13;;;;;;;:25;;9029:6;9011:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;8995:13:0;;;:8;:13;;;;;;;;;;;:41;;;;9072:14;;;;;:7;:14;;;;;9087:10;9072:26;;;;;;;:38;;9103:6;9072:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;9043:14:0;;;;;;;:7;:14;;;;;;;;9058:10;9043:26;;;;;;;;:67;;;;9122:28;;;;;;;;;;;9043:14;;9122:28;;;;;;;;;;;-1:-1:-1;9164:4:0;8720:454;;;;;:::o;11665:412::-;11785:10;11748:4;11777:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11777:29:0;;;;;;;;;;11817:27;;;11813:168;;;11863:10;11887:1;11855:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11855:29:0;;;;;;;;;:33;11813:168;;;11943:30;:8;11956:16;11943:30;:12;:30;:::i;:::-;11919:10;11911:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11911:29:0;;;;;;;;;:62;11813:168;12001:10;12023:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11992:61:0;;12023:29;;;;;;;;;;;11992:61;;;;;;;;;12001:10;11992:61;;;;;;;;;;;-1:-1:-1;12067:4:0;;11665:412;-1:-1:-1;;;11665:412:0:o;6750:355::-;6813:4;-1:-1:-1;;;;;6838:17:0;;6830:26;;;;;;6894:10;6885:8;:20;;;;;;;;;;;6875:30;;;6867:39;;;;;;6951:10;6942:8;:20;;;;;;;;;;;:32;;6967:6;6942:32;:24;:32;:::i;:::-;6928:10;6919:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;7001:13:0;;;;;;:25;;7019:6;7001:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6985:13:0;;:8;:13;;;;;;;;;;;;:41;;;;7042:33;;;;;;;6985:13;;7051:10;;7042:33;;;;;;;;;;-1:-1:-1;7093:4:0;6750:355;;;;:::o;10925:266::-;11056:10;11003:4;11048:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11048:29:0;;;;;;;;;;:46;;11082:11;11048:46;:33;:46;:::i;:::-;11024:10;11016:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11016:29:0;;;;;;;;;;;;:78;;;11106:61;;;;;;11016:29;;11106:61;;;;;;;;;;;-1:-1:-1;11181:4:0;10925:266;;;;:::o;1967:136::-;2025:7;2052:43;2056:1;2059;2052:43;;;;;;;;;;;;;;;;;:3;:43::i;1511:181::-;1569:7;1601:5;;;1625:6;;;;1617:46;;;;;-1:-1:-1;;;;;1617:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;2440:192;2526:7;2562:12;2554:6;;;;2546:29;;;;-1:-1:-1;;;;;2546:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2546:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2598:5:0;;;2440:192::o

Swarm Source

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