ETH Price: $3,131.58 (+1.90%)
Gas: 17 Gwei

Token

PointPay Token (PXP)
 

Overview

Max Total Supply

1,000,000,000 PXP

Holders

2,854 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$75,493,457.13

Circulating Supply Market Cap

$2,264,803.71

Other Info

Token Contract (WITH 3 Decimals)

Filtered by Token Holder
CoinList 1
Balance
3,422.366 PXP

Value
$258.37 ( ~0.0825046170985055 Eth) [0.0003%]
0xd1669ac6044269b59fa12c5822439f609ca54f41
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

PointPay is creating a fundamentally new product that combines three services in a single closed-loop ecosystem: PointPay Crypto Bank, PointPay Crypto Exchange platform and PointPay Multi-currency Wallet.

Market

Volume (24H):$454,784.39
Market Capitalization:$2,264,803.71
Circulating Supply:30,000,000.00 PXP
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PPToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2019-07-31
*/

pragma solidity ^0.4.24;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that revert on error
 */
library SafeMath {

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

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

    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 ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
  function totalSupply() external view returns (uint256);

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

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

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

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

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

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

  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}
/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract ERC20 is IERC20 {
  using SafeMath for uint256;

  mapping (address => uint256) private _balances;

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

  uint256 private _totalSupply;

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

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

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

  /**
  * @dev Transfer token for a specified address
  * @param to The address to transfer to.
  * @param value The amount to be transferred.
  */
  function transfer(address to, uint256 value) public returns (bool) {
    _transfer(msg.sender, to, value);
    return true;
  }

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

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

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

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

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

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

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

  /**
  * @dev Transfer token for a specified addresses
  * @param from The address to transfer from.
  * @param to The address to transfer to.
  * @param value The amount to be transferred.
  */
  function _transfer(address from, address to, uint256 value) internal {
    require(to != address(0));

    _balances[from] = _balances[from].sub(value);
    _balances[to] = _balances[to].add(value);
    emit Transfer(from, to, value);
  }

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

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

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

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

  /**
   * @dev Internal function that burns an amount of the token of a given
   * account, deducting from the sender's allowance for said account. Uses the
   * internal burn function.
   * @param account The account whose tokens will be burnt.
   * @param value The amount that will be burnt.
   */
  function _burnFrom(address account, uint256 value) internal {
    // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
    // this function needs to emit an event with the updated approval.
    _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(
      value);
    _burn(account, value);
  }
}
/**
 * @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);
  }
}
/**
 * @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 name, string symbol, uint8 decimals) public {
    _name = name;
    _symbol = symbol;
    _decimals = decimals;
  }

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

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

  /**
   * @return the number of decimals of the token.
   */
  function decimals() public view returns(uint8) {
    return _decimals;
  }
}
/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * 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 PPToken is ERC20, ERC20Detailed, ERC20Burnable {
    uint256 public constant INITIAL_SUPPLY = 1000000000000;

    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor () public ERC20Detailed("PointPay Token", "PXP", 3) {
        _mint(msg.sender, INITIAL_SUPPLY);
    }
    function getNow() public view returns(uint256) {
        return now;
    }
}

Contract Security Audit

Contract ABI

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

608060405234801561001057600080fd5b506040805190810160405280600e81526020017f506f696e7450617920546f6b656e0000000000000000000000000000000000008152506040805190810160405280600381526020017f5058500000000000000000000000000000000000000000000000000000000000815250600382600390805190602001906100959291906101af565b5081516100a99060049060208501906101af565b506005805460ff191660ff92909216919091179055506100d990503364e8d4a510006401000000006100de810204565b61024a565b600160a060020a03821615156100f357600080fd5b60025461010d90826401000000006107a261019682021704565b600255600160a060020a03821660009081526020819052604090205461014090826401000000006107a261019682021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156101a857600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106101f057805160ff191683800117855561021d565b8280016001018555821561021d579182015b8281111561021d578251825591602001919060010190610202565b5061022992915061022d565b5090565b61024791905b808211156102295760008155600101610233565b90565b6108f2806102596000396000f3006080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df578063095ea7b31461016957806318160ddd146101a157806323b872dd146101c85780632ff2e9dc146101f2578063313ce56714610207578063395093511461023257806342966c681461025657806370a082311461027057806379cc67901461029157806395d89b41146102b5578063a457c2d7146102ca578063a9059cbb146102ee578063bbe4fd5014610312578063dd62ed3e14610327575b600080fd5b3480156100eb57600080fd5b506100f461034e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012e578181015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017557600080fd5b5061018d600160a060020a03600435166024356103e4565b604080519115158252519081900360200190f35b3480156101ad57600080fd5b506101b6610462565b60408051918252519081900360200190f35b3480156101d457600080fd5b5061018d600160a060020a0360043581169060243516604435610468565b3480156101fe57600080fd5b506101b66104d5565b34801561021357600080fd5b5061021c6104de565b6040805160ff9092168252519081900360200190f35b34801561023e57600080fd5b5061018d600160a060020a03600435166024356104e7565b34801561026257600080fd5b5061026e600435610597565b005b34801561027c57600080fd5b506101b6600160a060020a03600435166105a4565b34801561029d57600080fd5b5061026e600160a060020a03600435166024356105bf565b3480156102c157600080fd5b506100f46105cd565b3480156102d657600080fd5b5061018d600160a060020a036004351660243561062e565b3480156102fa57600080fd5b5061018d600160a060020a0360043516602435610679565b34801561031e57600080fd5b506101b661068f565b34801561033357600080fd5b506101b6600160a060020a0360043581169060243516610693565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103da5780601f106103af576101008083540402835291602001916103da565b820191906000526020600020905b8154815290600101906020018083116103bd57829003601f168201915b5050505050905090565b6000600160a060020a03831615156103fb57600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a038316600090815260016020908152604080832033845290915281205461049c908363ffffffff6106be16565b600160a060020a03851660009081526001602090815260408083203384529091529020556104cb8484846106d5565b5060019392505050565b64e8d4a5100081565b60055460ff1690565b6000600160a060020a03831615156104fe57600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610532908363ffffffff6107a216565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6105a133826107bb565b50565b600160a060020a031660009081526020819052604090205490565b6105c98282610864565b5050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103da5780601f106103af576101008083540402835291602001916103da565b6000600160a060020a038316151561064557600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610532908363ffffffff6106be16565b60006106863384846106d5565b50600192915050565b4290565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600080838311156106ce57600080fd5b5050900390565b600160a060020a03821615156106ea57600080fd5b600160a060020a038316600090815260208190526040902054610713908263ffffffff6106be16565b600160a060020a038085166000908152602081905260408082209390935590841681522054610748908263ffffffff6107a216565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156107b457600080fd5b9392505050565b600160a060020a03821615156107d057600080fd5b6002546107e3908263ffffffff6106be16565b600255600160a060020a03821660009081526020819052604090205461080f908263ffffffff6106be16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a0382166000908152600160209081526040808320338452909152902054610898908263ffffffff6106be16565b600160a060020a03831660009081526001602090815260408083203384529091529020556105c982826107bb5600a165627a7a723058208708438e1e3366be6fd250dd6f101b6445ce7fac8908eec62277d5ab2746e8e10029

Deployed Bytecode

0x6080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df578063095ea7b31461016957806318160ddd146101a157806323b872dd146101c85780632ff2e9dc146101f2578063313ce56714610207578063395093511461023257806342966c681461025657806370a082311461027057806379cc67901461029157806395d89b41146102b5578063a457c2d7146102ca578063a9059cbb146102ee578063bbe4fd5014610312578063dd62ed3e14610327575b600080fd5b3480156100eb57600080fd5b506100f461034e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012e578181015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017557600080fd5b5061018d600160a060020a03600435166024356103e4565b604080519115158252519081900360200190f35b3480156101ad57600080fd5b506101b6610462565b60408051918252519081900360200190f35b3480156101d457600080fd5b5061018d600160a060020a0360043581169060243516604435610468565b3480156101fe57600080fd5b506101b66104d5565b34801561021357600080fd5b5061021c6104de565b6040805160ff9092168252519081900360200190f35b34801561023e57600080fd5b5061018d600160a060020a03600435166024356104e7565b34801561026257600080fd5b5061026e600435610597565b005b34801561027c57600080fd5b506101b6600160a060020a03600435166105a4565b34801561029d57600080fd5b5061026e600160a060020a03600435166024356105bf565b3480156102c157600080fd5b506100f46105cd565b3480156102d657600080fd5b5061018d600160a060020a036004351660243561062e565b3480156102fa57600080fd5b5061018d600160a060020a0360043516602435610679565b34801561031e57600080fd5b506101b661068f565b34801561033357600080fd5b506101b6600160a060020a0360043581169060243516610693565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103da5780601f106103af576101008083540402835291602001916103da565b820191906000526020600020905b8154815290600101906020018083116103bd57829003601f168201915b5050505050905090565b6000600160a060020a03831615156103fb57600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a038316600090815260016020908152604080832033845290915281205461049c908363ffffffff6106be16565b600160a060020a03851660009081526001602090815260408083203384529091529020556104cb8484846106d5565b5060019392505050565b64e8d4a5100081565b60055460ff1690565b6000600160a060020a03831615156104fe57600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610532908363ffffffff6107a216565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6105a133826107bb565b50565b600160a060020a031660009081526020819052604090205490565b6105c98282610864565b5050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103da5780601f106103af576101008083540402835291602001916103da565b6000600160a060020a038316151561064557600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610532908363ffffffff6106be16565b60006106863384846106d5565b50600192915050565b4290565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600080838311156106ce57600080fd5b5050900390565b600160a060020a03821615156106ea57600080fd5b600160a060020a038316600090815260208190526040902054610713908263ffffffff6106be16565b600160a060020a038085166000908152602081905260408082209390935590841681522054610748908263ffffffff6107a216565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156107b457600080fd5b9392505050565b600160a060020a03821615156107d057600080fd5b6002546107e3908263ffffffff6106be16565b600255600160a060020a03821660009081526020819052604090205461080f908263ffffffff6106be16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a0382166000908152600160209081526040808320338452909152902054610898908263ffffffff6106be16565b600160a060020a03831660009081526001602090815260408083203384529091529020556105c982826107bb5600a165627a7a723058208708438e1e3366be6fd250dd6f101b6445ce7fac8908eec62277d5ab2746e8e10029

Deployed Bytecode Sourcemap

11574:416:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10643:69;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10643:69: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;10643:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4876:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4876:226:0;-1:-1:-1;;;;;4876:226:0;;;;;;;;;;;;;;;;;;;;;;;;;3087:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3087:85:0;;;;;;;;;;;;;;;;;;;;5382:248;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5382:248:0;-1:-1:-1;;;;;5382:248:0;;;;;;;;;;;;11637:54;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11637:54:0;;;;10915:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10915:76:0;;;;;;;;;;;;;;;;;;;;;;;6092:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6092:343:0;-1:-1:-1;;;;;6092:343:0;;;;;;;9675:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9675:73:0;;;;;;;3376:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3376:100:0;-1:-1:-1;;;;;3376:100:0;;;;;9995:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9995:89:0;-1:-1:-1;;;;;9995:89:0;;;;;;;10771:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10771:73:0;;;;6902:353;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6902:353:0;-1:-1:-1;;;;;6902:353:0;;;;;;;4119:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4119:130:0;-1:-1:-1;;;;;4119:130:0;;;;;;;11911:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11911:76:0;;;;3801:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3801:159:0;-1:-1:-1;;;;;3801:159:0;;;;;;;;;;10643:69;10701:5;10694:12;;;;;;;;-1:-1:-1;;10694:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10679:6;;10694:12;;10701:5;;10694:12;;10701:5;10694:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10643:69;:::o;4876:226::-;4941:4;-1:-1:-1;;;;;4962:21:0;;;;4954:30;;;;;;5002:10;4993:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;4993:29:0;;;;;;;;;;;;:37;;;5042:36;;;;;;;4993:29;;5002:10;5042:36;;;;;;;;;;;-1:-1:-1;5092:4:0;4876:226;;;;:::o;3087:85::-;3154:12;;3087:85;:::o;5382:248::-;-1:-1:-1;;;;;5536:14:0;;5491:4;5536:14;;;:8;:14;;;;;;;;5551:10;5536:26;;;;;;;;:37;;5567:5;5536:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;5507:14:0;;;;;;:8;:14;;;;;;;;5522:10;5507:26;;;;;;;:66;5580:26;5516:4;5596:2;5600:5;5580:9;:26::i;:::-;-1:-1:-1;5620:4:0;5382:248;;;;;:::o;11637:54::-;11678:13;11637:54;:::o;10915:76::-;10976:9;;;;10915:76;:::o;6092:343::-;6197:4;-1:-1:-1;;;;;6221:21:0;;;;6213:30;;;;;;6302:10;6293:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6293:29:0;;;;;;;;;;:45;;6327:10;6293:45;:33;:45;:::i;:::-;6261:10;6252:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6252:29:0;;;;;;;;;;;;:87;;;6351:60;;;;;;6252:29;;6351:60;;;;;;;;;;;-1:-1:-1;6425:4:0;6092:343;;;;:::o;9675:73::-;9718:24;9724:10;9736:5;9718;:24::i;:::-;9675:73;:::o;3376:100::-;-1:-1:-1;;;;;3454:16:0;3431:7;3454:16;;;;;;;;;;;;3376:100::o;9995:89::-;10056:22;10066:4;10072:5;10056:9;:22::i;:::-;9995:89;;:::o;10771:73::-;10831:7;10824:14;;;;;;;;-1:-1:-1;;10824:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10809:6;;10824:14;;10831:7;;10824:14;;10831:7;10824:14;;;;;;;;;;;;;;;;;;;;;;;;6902:353;7012:4;-1:-1:-1;;;;;7036:21:0;;;;7028:30;;;;;;7117:10;7108:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7108:29:0;;;;;;;;;;:50;;7142:15;7108:50;:33;:50;:::i;4119:130::-;4180:4;4193:32;4203:10;4215:2;4219:5;4193:9;:32::i;:::-;-1:-1:-1;4239:4:0;4119:130;;;;:::o;11911:76::-;11976:3;11911:76;:::o;3801:159::-;-1:-1:-1;;;;;3930:15:0;;;3904:7;3930:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;3801:159::o;1117:136::-;1175:7;;1199:6;;;;1191:15;;;;;;-1:-1:-1;;1225:5:0;;;1117:136::o;7463:244::-;-1:-1:-1;;;;;7547:16:0;;;;7539:25;;;;;;-1:-1:-1;;;;;7591:15:0;;:9;:15;;;;;;;;;;;:26;;7611:5;7591:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;7573:15:0;;;:9;:15;;;;;;;;;;;:44;;;;7640:13;;;;;;;:24;;7658:5;7640:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;7624:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;7676:25;;;;;;;7624:13;;7676:25;;;;;;;;;;;;;7463:244;;;:::o;1321:136::-;1379:7;1407:5;;;1427:6;;;;1419:15;;;;;;1450:1;1321:136;-1:-1:-1;;;1321:136:0:o;8514:251::-;-1:-1:-1;;;;;8585:21:0;;;;8577:30;;;;;;8631:12;;:23;;8648:5;8631:23;:16;:23;:::i;:::-;8616:12;:38;-1:-1:-1;;;;;8682:18:0;;:9;:18;;;;;;;;;;;:29;;8705:5;8682:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;8661:18:0;;:9;:18;;;;;;;;;;;:50;;;;8723:36;;;;;;;8661:9;;8723:36;;;;;;;;;;;8514:251;;:::o;9080:342::-;-1:-1:-1;;;;;9340:17:0;;;;;;:8;:17;;;;;;;;9358:10;9340:29;;;;;;;;:48;;9382:5;9340:48;:33;:48;:::i;:::-;-1:-1:-1;;;;;9308:17:0;;;;;;:8;:17;;;;;;;;9326:10;9308:29;;;;;;;:80;9395:21;9317:7;9410:5;9395;:21::i

Swarm Source

bzzr://8708438e1e3366be6fd250dd6f101b6445ce7fac8908eec62277d5ab2746e8e1
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.