ETH Price: $2,667.48 (+1.22%)
Gas: 1 Gwei

Token

PARQ (PARQ)
 

Overview

Max Total Supply

1,000,000,000 PARQ

Holders

1,444

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,884 PARQ

Value
$0.00
0x56d2a689f4e8c4c4a62a72eb3a287ab93a065cb8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PARQ

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

pragma solidity ^0.4.24;


// ----------------------------------------------------------------------------
// PARQ token contract
//
// Symbol                              : PARQ
// Name                                : PARQ Token
// Total initial supply                : 1.000.000.000 (1B tokens)
// Total initial supply incl. decimals : 1000000000,000000000000000000 (1B tokens including decimals)
// Decimals                            : 18
// ----------------------------------------------------------------------------

/**
 * @title Standard ERC20 IERC20 token
 *
 * @dev Implementation of the basic standard token.
 * normally imported by: import "openzeppelin-solidity/contracts/token/ERC20/IERC20.sol";
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by OpenZeppelin: https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/IERC20.sol
 */
interface IERC20 {
  function totalSupply() external view returns (uint256);

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

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

  function transfer(address to, uint256 value) external returns (bool);

  function approve(address spender, uint256 value)
    external returns (bool);

  function transferFrom(address from, address to, uint256 value)
    external returns (bool);

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

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


/**
 * @title SafeMath
 *
 * @dev Math operations with safety checks that revert on error
 * normally imported by: import "openzeppelin-solidity/contracts/math/SafeMath.sol";
 * Originally based on code by OpenZeppelin: https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/math/SafeMath.sol
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, reverts on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b);

    return c;
  }

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

    return c;
  }

  /**
  * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a);
    uint256 c = a - b;

    return c;
  }

  /**
  * @dev Adds two numbers, reverts on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a);

    return c;
  }

  /**
  * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
  * reverts when dividing by zero.
  */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0);
    return a % b;
  }
}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard ERC-20 token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by OpenZeppelin: https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/ERC20.sol
 */
contract ERC20 is IERC20 {
  using SafeMath for uint256;

  mapping (address => uint256) private _balances;

  mapping (address => mapping (address => uint256)) private _allowed;

  uint256 private _totalSupply;

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

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

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param owner address The address which owns the funds.
   * @param spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(
    address owner,
    address spender
   )
    public
    view
    returns (uint256)
  {
    return _allowed[owner][spender];
  }

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

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

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param spender The address which will spend the funds.
   * @param value The amount of tokens to be spent.
   */
  function approve(address spender, uint256 value) public returns (bool) {
    require(spender != address(0));

    _allowed[msg.sender][spender] = value;
    emit Approval(msg.sender, spender, value);
    return true;
  }

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

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

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed_[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param spender The address which will spend the funds.
   * @param addedValue The amount of tokens to increase the allowance by.
   */
  function increaseAllowance(
    address spender,
    uint256 addedValue
  )
    public
    returns (bool)
  {
    require(spender != address(0));

    _allowed[msg.sender][spender] = (
      _allowed[msg.sender][spender].add(addedValue));
    emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed_[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param spender The address which will spend the funds.
   * @param subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseAllowance(
    address spender,
    uint256 subtractedValue
  )
    public
    returns (bool)
  {
    require(spender != address(0));

    _allowed[msg.sender][spender] = (
      _allowed[msg.sender][spender].sub(subtractedValue));
    emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
    return true;
  }

  /**
   * @dev Internal function that mints an amount of the token and assigns it to
   * an account. This encapsulates the modification of balances such that the
   * proper events are emitted.
   * @param account The account that will receive the created tokens.
   * @param amount The amount that will be created.
   */
  function _mint(address account, uint256 amount) internal {
    require(account != 0);
    _totalSupply = _totalSupply.add(amount);
    _balances[account] = _balances[account].add(amount);
    emit Transfer(address(0), account, amount);
  }

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

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

  /**
   * @dev Internal function that burns an amount of the token of a given
   * account, deducting from the sender's allowance for said account. Uses the
   * internal burn function.
   * @param account The account whose tokens will be burnt.
   * @param amount The amount that will be burnt.
   */
  function _burnFrom(address account, uint256 amount) internal {
    require(amount <= _allowed[account][msg.sender]);

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


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 * Originally based on code by OpenZeppelin: https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/ownership/Ownable.sol
 */
contract Ownable {
  address private _owner;

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

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

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

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

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

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

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

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


/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract ERC20Burnable is ERC20 {

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

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

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


/**
 * @title Standard ERC20 PARQ token
 *
 * @dev Implementation of the basic standard token.
 * Originally based on code by OpenZeppelin: https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/examples/SimpleToken.sol
 */

contract PARQ is ERC20, Ownable, ERC20Burnable {
  string public constant name = "PARQ";
  string public constant symbol = "PARQ";
  uint8 public constant decimals = 18;
  uint256 public constant initialSupply = 1000000000 * (10 ** uint256(decimals));
  /**
   * @dev Constructor that gives msg.sender all of existing tokens.
   */
  constructor() public {
    _mint(msg.sender, initialSupply);
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":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":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"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"}]

608060405234801561001057600080fd5b5060038054600160a060020a03191633908117909155610045906b033b2e3c9fd0803ce800000064010000000061004a810204565b61011b565b600160a060020a038216151561005f57600080fd5b60025461007990826401000000006108fe61010282021704565b600255600160a060020a0382166000908152602081905260409020546100ac90826401000000006108fe61010282021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008282018381101561011457600080fd5b9392505050565b610b2b8061012a6000396000f3006080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610100578063095ea7b31461018a57806318160ddd146101c257806323b872dd146101e9578063313ce56714610213578063378dc3dc1461023e578063395093511461025357806342966c681461027757806370a0823114610291578063715018a6146102b257806379cc6790146102c75780638da5cb5b146102eb5780638f32d59b1461031c57806395d89b4114610100578063a457c2d714610331578063a9059cbb14610355578063dd62ed3e14610379578063f2fde38b146103a0575b600080fd5b34801561010c57600080fd5b506101156103c1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014f578181015183820152602001610137565b50505050905090810190601f16801561017c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019657600080fd5b506101ae600160a060020a03600435166024356103f8565b604080519115158252519081900360200190f35b3480156101ce57600080fd5b506101d7610476565b60408051918252519081900360200190f35b3480156101f557600080fd5b506101ae600160a060020a036004358116906024351660443561047c565b34801561021f57600080fd5b506102286105f1565b6040805160ff9092168252519081900360200190f35b34801561024a57600080fd5b506101d76105f6565b34801561025f57600080fd5b506101ae600160a060020a0360043516602435610606565b34801561028357600080fd5b5061028f6004356106b6565b005b34801561029d57600080fd5b506101d7600160a060020a03600435166106c3565b3480156102be57600080fd5b5061028f6106de565b3480156102d357600080fd5b5061028f600160a060020a0360043516602435610748565b3480156102f757600080fd5b50610300610756565b60408051600160a060020a039092168252519081900360200190f35b34801561032857600080fd5b506101ae610765565b34801561033d57600080fd5b506101ae600160a060020a0360043516602435610776565b34801561036157600080fd5b506101ae600160a060020a03600435166024356107c1565b34801561038557600080fd5b506101d7600160a060020a03600435811690602435166108a0565b3480156103ac57600080fd5b5061028f600160a060020a03600435166108cb565b60408051808201909152600481527f5041525100000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561040f57600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a0383166000908152602081905260408120548211156104a157600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020548211156104d157600080fd5b600160a060020a03831615156104e657600080fd5b600160a060020a03841660009081526020819052604090205461050f908363ffffffff6108e716565b600160a060020a038086166000908152602081905260408082209390935590851681522054610544908363ffffffff6108fe16565b600160a060020a03808516600090815260208181526040808320949094559187168152600182528281203382529091522054610586908363ffffffff6108e716565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b6b033b2e3c9fd0803ce800000081565b6000600160a060020a038316151561061d57600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610651908363ffffffff6108fe16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6106c03382610917565b50565b600160a060020a031660009081526020819052604090205490565b6106e6610765565b15156106f157600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b6107528282610921565b5050565b600354600160a060020a031690565b600354600160a060020a0316331490565b6000600160a060020a038316151561078d57600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610651908363ffffffff6108e716565b336000908152602081905260408120548211156107dd57600080fd5b600160a060020a03831615156107f257600080fd5b33600090815260208190526040902054610812908363ffffffff6108e716565b3360009081526020819052604080822092909255600160a060020a03851681522054610844908363ffffffff6108fe16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6108d3610765565b15156108de57600080fd5b6106c0816109b3565b600080838311156108f757600080fd5b5050900390565b60008282018381101561091057600080fd5b9392505050565b6107528282610a31565b600160a060020a038216600090815260016020908152604080832033845290915290205481111561095157600080fd5b600160a060020a0382166000908152600160209081526040808320338452909152902054610985908263ffffffff6108e716565b600160a060020a03831660009081526001602090815260408083203384529091529020556107528282610917565b600160a060020a03811615156109c857600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382161515610a4657600080fd5b600160a060020a038216600090815260208190526040902054811115610a6b57600080fd5b600254610a7e908263ffffffff6108e716565b600255600160a060020a038216600090815260208190526040902054610aaa908263ffffffff6108e716565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350505600a165627a7a7230582035ea87af4c206790f2f19c74ee7bf23aefc75d4ac2f66b102f8c391752accba50029

Deployed Bytecode

0x6080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610100578063095ea7b31461018a57806318160ddd146101c257806323b872dd146101e9578063313ce56714610213578063378dc3dc1461023e578063395093511461025357806342966c681461027757806370a0823114610291578063715018a6146102b257806379cc6790146102c75780638da5cb5b146102eb5780638f32d59b1461031c57806395d89b4114610100578063a457c2d714610331578063a9059cbb14610355578063dd62ed3e14610379578063f2fde38b146103a0575b600080fd5b34801561010c57600080fd5b506101156103c1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014f578181015183820152602001610137565b50505050905090810190601f16801561017c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019657600080fd5b506101ae600160a060020a03600435166024356103f8565b604080519115158252519081900360200190f35b3480156101ce57600080fd5b506101d7610476565b60408051918252519081900360200190f35b3480156101f557600080fd5b506101ae600160a060020a036004358116906024351660443561047c565b34801561021f57600080fd5b506102286105f1565b6040805160ff9092168252519081900360200190f35b34801561024a57600080fd5b506101d76105f6565b34801561025f57600080fd5b506101ae600160a060020a0360043516602435610606565b34801561028357600080fd5b5061028f6004356106b6565b005b34801561029d57600080fd5b506101d7600160a060020a03600435166106c3565b3480156102be57600080fd5b5061028f6106de565b3480156102d357600080fd5b5061028f600160a060020a0360043516602435610748565b3480156102f757600080fd5b50610300610756565b60408051600160a060020a039092168252519081900360200190f35b34801561032857600080fd5b506101ae610765565b34801561033d57600080fd5b506101ae600160a060020a0360043516602435610776565b34801561036157600080fd5b506101ae600160a060020a03600435166024356107c1565b34801561038557600080fd5b506101d7600160a060020a03600435811690602435166108a0565b3480156103ac57600080fd5b5061028f600160a060020a03600435166108cb565b60408051808201909152600481527f5041525100000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561040f57600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a0383166000908152602081905260408120548211156104a157600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020548211156104d157600080fd5b600160a060020a03831615156104e657600080fd5b600160a060020a03841660009081526020819052604090205461050f908363ffffffff6108e716565b600160a060020a038086166000908152602081905260408082209390935590851681522054610544908363ffffffff6108fe16565b600160a060020a03808516600090815260208181526040808320949094559187168152600182528281203382529091522054610586908363ffffffff6108e716565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b6b033b2e3c9fd0803ce800000081565b6000600160a060020a038316151561061d57600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610651908363ffffffff6108fe16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6106c03382610917565b50565b600160a060020a031660009081526020819052604090205490565b6106e6610765565b15156106f157600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b6107528282610921565b5050565b600354600160a060020a031690565b600354600160a060020a0316331490565b6000600160a060020a038316151561078d57600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610651908363ffffffff6108e716565b336000908152602081905260408120548211156107dd57600080fd5b600160a060020a03831615156107f257600080fd5b33600090815260208190526040902054610812908363ffffffff6108e716565b3360009081526020819052604080822092909255600160a060020a03851681522054610844908363ffffffff6108fe16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6108d3610765565b15156108de57600080fd5b6106c0816109b3565b600080838311156108f757600080fd5b5050900390565b60008282018381101561091057600080fd5b9392505050565b6107528282610a31565b600160a060020a038216600090815260016020908152604080832033845290915290205481111561095157600080fd5b600160a060020a0382166000908152600160209081526040808320338452909152902054610985908263ffffffff6108e716565b600160a060020a03831660009081526001602090815260408083203384529091529020556107528282610917565b600160a060020a03811615156109c857600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382161515610a4657600080fd5b600160a060020a038216600090815260208190526040902054811115610a6b57600080fd5b600254610a7e908263ffffffff6108e716565b600255600160a060020a038216600090815260208190526040902054610aaa908263ffffffff6108e716565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350505600a165627a7a7230582035ea87af4c206790f2f19c74ee7bf23aefc75d4ac2f66b102f8c391752accba50029

Deployed Bytecode Sourcemap

13803:411:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13855:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13855:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;13855:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6116:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6116:226:0;-1:-1:-1;;;;;6116:226:0;;;;;;;;;;;;;;;;;;;;;;;;;4133:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4133:85:0;;;;;;;;;;;;;;;;;;;;6622:475;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6622:475:0;-1:-1:-1;;;;;6622:475:0;;;;;;;;;;;;13939:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13939:35:0;;;;;;;;;;;;;;;;;;;;;;;13979:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13979:78:0;;;;7559:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7559:343:0;-1:-1:-1;;;;;7559:343:0;;;;;;;12932:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12932:73:0;;;;;;;4422:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4422:100:0;-1:-1:-1;;;;;4422:100:0;;;;;11976:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11976:116:0;;;;13252:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13252:89:0;-1:-1:-1;;;;;13252:89:0;;;;;;;11317:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11317:72:0;;;;;;;;-1:-1:-1;;;;;11317:72:0;;;;;;;;;;;;;;11619:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11619:85:0;;;;8369:353;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8369:353:0;-1:-1:-1;;;;;8369:353:0;;;;;;;5165:324;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5165:324:0;-1:-1:-1;;;;;5165:324:0;;;;;;;4847:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4847:159:0;-1:-1:-1;;;;;4847:159:0;;;;;;;;;;12259:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12259:103:0;-1:-1:-1;;;;;12259:103:0;;;;;13855:36;;;;;;;;;;;;;;;;;;;:::o;6116:226::-;6181:4;-1:-1:-1;;;;;6202:21:0;;;;6194:30;;;;;;6242:10;6233:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6233:29:0;;;;;;;;;;;;:37;;;6282:36;;;;;;;6233:29;;6242:10;6282:36;;;;;;;;;;;-1:-1:-1;6332:4:0;6116:226;;;;:::o;4133:85::-;4200:12;;4133:85;:::o;6622:475::-;-1:-1:-1;;;;;6764:15:0;;6731:4;6764:15;;;;;;;;;;;6755:24;;;6747:33;;;;;;-1:-1:-1;;;;;6804:14:0;;;;;;:8;:14;;;;;;;;6819:10;6804:26;;;;;;;;6795:35;;;6787:44;;;;;;-1:-1:-1;;;;;6846:16:0;;;;6838:25;;;;;;-1:-1:-1;;;;;6890:15:0;;:9;:15;;;;;;;;;;;:26;;6910:5;6890:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;6872:15:0;;;:9;:15;;;;;;;;;;;:44;;;;6939:13;;;;;;;:24;;6957:5;6939:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;6923:13:0;;;:9;:13;;;;;;;;;;;:40;;;;6999:14;;;;;:8;:14;;;;;7014:10;6999:26;;;;;;;:37;;7030:5;6999:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;6970:14:0;;;;;;;:8;:14;;;;;;;;6985:10;6970:26;;;;;;;;:66;;;;7048:25;;;;;;;;;;;6970:14;;7048:25;;;;;;;;;;;-1:-1:-1;7087:4:0;6622:475;;;;;:::o;13939:35::-;13972:2;13939:35;:::o;13979:78::-;14019:38;13979:78;:::o;7559:343::-;7664:4;-1:-1:-1;;;;;7688:21:0;;;;7680:30;;;;;;7769:10;7760:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7760:29:0;;;;;;;;;;:45;;7794:10;7760:45;:33;:45;:::i;:::-;7728:10;7719:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7719:29:0;;;;;;;;;;;;:87;;;7818:60;;;;;;7719:29;;7818:60;;;;;;;;;;;-1:-1:-1;7892:4:0;7559:343;;;;:::o;12932:73::-;12975:24;12981:10;12993:5;12975;:24::i;:::-;12932:73;:::o;4422:100::-;-1:-1:-1;;;;;4500:16:0;4477:7;4500:16;;;;;;;;;;;;4422:100::o;11976:116::-;11510:9;:7;:9::i;:::-;11502:18;;;;;;;;12053:6;;12034:26;;-1:-1:-1;;;;;12053:6:0;;;;12034:26;;12053:6;;12034:26;12067:6;:19;;-1:-1:-1;;12067:19:0;;;11976:116::o;13252:89::-;13313:22;13323:4;13329:5;13313:9;:22::i;:::-;13252:89;;:::o;11317:72::-;11377:6;;-1:-1:-1;;;;;11377:6:0;11317:72;:::o;11619:85::-;11692:6;;-1:-1:-1;;;;;11692:6:0;11678:10;:20;;11619:85::o;8369:353::-;8479:4;-1:-1:-1;;;;;8503:21:0;;;;8495:30;;;;;;8584:10;8575:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;8575:29:0;;;;;;;;;;:50;;8609:15;8575:50;:33;:50;:::i;5165:324::-;5266:10;5226:4;5256:21;;;;;;;;;;;5247:30;;;5239:39;;;;;;-1:-1:-1;;;;;5293:16:0;;;;5285:25;;;;;;5353:10;5343:9;:21;;;;;;;;;;;:32;;5369:5;5343:32;:25;:32;:::i;:::-;5329:10;5319:9;:21;;;;;;;;;;;:56;;;;-1:-1:-1;;;;;5398:13:0;;;;;;:24;;5416:5;5398:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;5382:13:0;;:9;:13;;;;;;;;;;;;:40;;;;5434:31;;;;;;;5382:13;;5443:10;;5434:31;;;;;;;;;;-1:-1:-1;5479:4:0;5165:324;;;;:::o;4847:159::-;-1:-1:-1;;;;;4976:15:0;;;4950:7;4976:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;4847:159::o;12259:103::-;11510:9;:7;:9::i;:::-;11502:18;;;;;;;;12328:28;12347:8;12328:18;:28::i;2947:136::-;3005:7;;3029:6;;;;3021:15;;;;;;-1:-1:-1;;3055:5:0;;;2947:136::o;3151:::-;3209:7;3237:5;;;3257:6;;;;3249:15;;;;;;3280:1;3151:136;-1:-1:-1;;;3151:136:0:o;13465:88::-;13524:23;13536:3;13541:5;13524:11;:23::i;10130:402::-;-1:-1:-1;;;;;10216:17:0;;;;;;:8;:17;;;;;;;;10234:10;10216:29;;;;;;;;10206:39;;;10198:48;;;;;;-1:-1:-1;;;;;10448:17:0;;;;;;:8;:17;;;;;;;;10466:10;10448:29;;;;;;;;:49;;10490:6;10448:49;:33;:49;:::i;:::-;-1:-1:-1;;;;;10416:17:0;;;;;;:8;:17;;;;;;;;10434:10;10416:29;;;;;;;:81;10504:22;10425:7;10519:6;10504:5;:22::i;12502:173::-;-1:-1:-1;;;;;12572:22:0;;;;12564:31;;;;;;12628:6;;12607:38;;-1:-1:-1;;;;;12607:38:0;;;;12628:6;;12607:38;;12628:6;;12607:38;12652:6;:17;;-1:-1:-1;;12652:17:0;-1:-1:-1;;;;;12652:17:0;;;;;;;;;;12502:173::o;9524:290::-;-1:-1:-1;;;;;9596:12:0;;;;9588:21;;;;;;-1:-1:-1;;;;;9634:18:0;;:9;:18;;;;;;;;;;;9624:28;;;9616:37;;;;;;9677:12;;:24;;9694:6;9677:24;:16;:24;:::i;:::-;9662:12;:39;-1:-1:-1;;;;;9729:18:0;;:9;:18;;;;;;;;;;;:30;;9752:6;9729:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;9708:18:0;;:9;:18;;;;;;;;;;;:51;;;;9771:37;;;;;;;9708:9;;9771:37;;;;;;;;;;;9524:290;;:::o

Swarm Source

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