ETH Price: $3,400.08 (-0.53%)
Gas: 18 Gwei

Token

PUBLX (PUBLX)
 

Overview

Max Total Supply

100,000,000,000 PUBLX

Holders

580 ( 0.345%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
123,252.184133450282694169 PUBLX

Value
$0.00
0x0201f1600d065fcc68da5f88422225ddd5834c78
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A new gateway to the web, built for and by the entire web ecosystem, creating a web economy that rewards all its participants.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PUBLX

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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 Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
  struct Role {
    mapping (address => bool) bearer;
  }

  /**
   * @dev give an account access to this role
   */
  function add(Role storage role, address account) internal {
    require(account != address(0));
    require(!has(role, account));

    role.bearer[account] = true;
  }

  /**
   * @dev remove an account's access to this role
   */
  function remove(Role storage role, address account) internal {
    require(account != address(0));
    require(has(role, account));

    role.bearer[account] = false;
  }

  /**
   * @dev check if an account has this role
   * @return bool
   */
  function has(Role storage role, address account)
    internal
    view
    returns (bool)
  {
    require(account != address(0));
    return role.bearer[account];
  }
}


contract PauserRole {
  using Roles for Roles.Role;

  event PauserAdded(address indexed account);
  event PauserRemoved(address indexed account);

  Roles.Role private pausers;

  constructor() internal {
    _addPauser(msg.sender);
  }

  modifier onlyPauser() {
    require(isPauser(msg.sender));
    _;
  }

  function isPauser(address account) public view returns (bool) {
    return pausers.has(account);
  }

  function addPauser(address account) public onlyPauser {
    _addPauser(account);
  }

  function renouncePauser() public {
    _removePauser(msg.sender);
  }

  function _addPauser(address account) internal {
    pausers.add(account);
    emit PauserAdded(account);
  }

  function _removePauser(address account) internal {
    pausers.remove(account);
    emit PauserRemoved(account);
  }
}


/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is PauserRole {
  event Paused(address account);
  event Unpaused(address account);

  bool private _paused;

  constructor() internal {
    _paused = false;
  }

  /**
   * @return true if the contract is paused, false otherwise.
   */
  function paused() public view returns(bool) {
    return _paused;
  }

  /**
   * @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() public onlyPauser whenNotPaused {
    _paused = true;
    emit Paused(msg.sender);
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() public onlyPauser whenPaused {
    _paused = false;
    emit Unpaused(msg.sender);
  }
}

/**
 * @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 Pausable token
 * @dev ERC20 modified with pausable transfers.
 **/
contract ERC20Pausable is ERC20, 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 increaseAllowance(
    address spender,
    uint addedValue
  )
    public
    whenNotPaused
    returns (bool success)
  {
    return super.increaseAllowance(spender, addedValue);
  }

  function decreaseAllowance(
    address spender,
    uint subtractedValue
  )
    public
    whenNotPaused
    returns (bool success)
  {
    return super.decreaseAllowance(spender, subtractedValue);
  }
}

/**
 * @title PUBLCEntity
 *
 * A standard PUBLC contract for validation and versioning purposes
 */
contract PUBLCEntity {
    string private _name;
    string private _version;

    /**
     * Constructor for PUBLCEntity contract
     * @param name The name of the contract
     * @param version The version of the contract
     */
    constructor(string name, string version) public {
        _name = name;
        _version = version;
    }

    /**
     * Validates the contract's name and version
     * @param name The new PUBLCEntity's name to validate
     * @param version The new PUBLCEntity's version to validate
     */
    function validate(string name, string version) public view {
        require(uint(keccak256(abi.encodePacked(_name))) == uint(keccak256(abi.encodePacked(name))));
        require(uint(keccak256(abi.encodePacked(_version))) == uint(keccak256(abi.encodePacked(version))));
    }

    function name() public view returns (string) { return _name; }
    function version() public view returns (string) { return _version; }
}


/**
 * @title PUBLX
 *
 * The contract of PUBLC platform's token
 */
contract PUBLX is ERC20Pausable {
    string public constant name = 'PUBLX';
    string public constant symbol = 'PUBLX';
    uint8 public constant decimals = 18;
    uint256 public constant INITIAL_SUPPLY = 100e9 * 10 ** uint256(decimals);

     /**
      * Constructor for PUBLX token
      * @param reserveAddress The address of the reserve account which receives the initial supply of tokens minted by the token contract.
      */
    constructor(address reserveAddress) public {
        PUBLCEntity(reserveAddress).validate("Reserve", "1.0.0");
        _mint(reserveAddress, INITIAL_SUPPLY);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"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":"renouncePauser","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":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","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":"success","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"},{"inputs":[{"name":"reserveAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","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"}]

608060405234801561001057600080fd5b5060405160208062000d6d833981016040525161003533640100000000610140810204565b6004805460ff19168155604080517f02749450000000000000000000000000000000000000000000000000000000008152918201819052600760448301527f5265736572766500000000000000000000000000000000000000000000000000606483015260806024830152600560848301527f312e302e3000000000000000000000000000000000000000000000000000000060a483015251600160a060020a0383169163027494509160c480830192600092919082900301818387803b1580156100ff57600080fd5b505af1158015610113573d6000803e3d6000fd5b5061013a92508391506c01431e0fae6d7217caa0000000905064010000000061018f810204565b506102ee565b6101586003826401000000006109f561024782021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600160a060020a03821615156101a457600080fd5b6002546101be908264010000000061099761029e82021704565b600255600160a060020a0382166000908152602081905260409020546101f1908264010000000061099761029e82021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038116151561025c57600080fd5b61026f82826401000000006102b7810204565b1561027957600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156102b057600080fd5b9392505050565b6000600160a060020a03821615156102ce57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610a6f80620002fe6000396000f3006080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610100578063095ea7b31461018a57806318160ddd146101c257806323b872dd146101e95780632ff2e9dc14610213578063313ce5671461022857806339509351146102535780633f4ba83a1461027757806346fbf68e1461028e5780635c975abb146102af5780636ef8d66d146102c457806370a08231146102d957806382dc1ec4146102fa5780638456cb591461031b57806395d89b4114610100578063a457c2d714610330578063a9059cbb14610354578063dd62ed3e14610378575b600080fd5b34801561010c57600080fd5b5061011561039f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014f578181015183820152602001610137565b50505050905090810190601f16801561017c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019657600080fd5b506101ae600160a060020a03600435166024356103d6565b604080519115158252519081900360200190f35b3480156101ce57600080fd5b506101d76103fa565b60408051918252519081900360200190f35b3480156101f557600080fd5b506101ae600160a060020a0360043581169060243516604435610400565b34801561021f57600080fd5b506101d7610426565b34801561023457600080fd5b5061023d610437565b6040805160ff9092168252519081900360200190f35b34801561025f57600080fd5b506101ae600160a060020a036004351660243561043c565b34801561028357600080fd5b5061028c610459565b005b34801561029a57600080fd5b506101ae600160a060020a03600435166104bd565b3480156102bb57600080fd5b506101ae6104d6565b3480156102d057600080fd5b5061028c6104df565b3480156102e557600080fd5b506101d7600160a060020a03600435166104ea565b34801561030657600080fd5b5061028c600160a060020a0360043516610505565b34801561032757600080fd5b5061028c610525565b34801561033c57600080fd5b506101ae600160a060020a036004351660243561058b565b34801561036057600080fd5b506101ae600160a060020a03600435166024356105a8565b34801561038457600080fd5b506101d7600160a060020a03600435811690602435166105c5565b60408051808201909152600581527f5055424c58000000000000000000000000000000000000000000000000000000602082015281565b60045460009060ff16156103e957600080fd5b6103f383836105f0565b9392505050565b60025490565b60045460009060ff161561041357600080fd5b61041e84848461066e565b949350505050565b6c01431e0fae6d7217caa000000081565b601281565b60045460009060ff161561044f57600080fd5b6103f383836106db565b610462336104bd565b151561046d57600080fd5b60045460ff16151561047e57600080fd5b6004805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006104d060038363ffffffff61078b16565b92915050565b60045460ff1690565b6104e8336107c2565b565b600160a060020a031660009081526020819052604090205490565b61050e336104bd565b151561051957600080fd5b6105228161080a565b50565b61052e336104bd565b151561053957600080fd5b60045460ff161561054957600080fd5b6004805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60045460009060ff161561059e57600080fd5b6103f38383610852565b60045460009060ff16156105bb57600080fd5b6103f3838361089d565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000600160a060020a038316151561060757600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a03831660009081526001602090815260408083203384529091528120546106a2908363ffffffff6108b316565b600160a060020a03851660009081526001602090815260408083203384529091529020556106d18484846108ca565b5060019392505050565b6000600160a060020a03831615156106f257600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610726908363ffffffff61099716565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6000600160a060020a03821615156107a257600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6107d360038263ffffffff6109a916565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61081b60038263ffffffff6109f516565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000600160a060020a038316151561086957600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610726908363ffffffff6108b316565b60006108aa3384846108ca565b50600192915050565b600080838311156108c357600080fd5b5050900390565b600160a060020a03821615156108df57600080fd5b600160a060020a038316600090815260208190526040902054610908908263ffffffff6108b316565b600160a060020a03808516600090815260208190526040808220939093559084168152205461093d908263ffffffff61099716565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156103f357600080fd5b600160a060020a03811615156109be57600080fd5b6109c8828261078b565b15156109d357600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0381161515610a0a57600080fd5b610a14828261078b565b15610a1e57600080fd5b600160a060020a0316600090815260209190915260409020805460ff191660011790555600a165627a7a72305820ab9210ad10fc860ebd9a1cb50e33210de9ed96c43150245316f0a7dae0baacbb00290000000000000000000000007758a09f10349f759686a0eeb79b84d054d0a5b4

Deployed Bytecode

0x6080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610100578063095ea7b31461018a57806318160ddd146101c257806323b872dd146101e95780632ff2e9dc14610213578063313ce5671461022857806339509351146102535780633f4ba83a1461027757806346fbf68e1461028e5780635c975abb146102af5780636ef8d66d146102c457806370a08231146102d957806382dc1ec4146102fa5780638456cb591461031b57806395d89b4114610100578063a457c2d714610330578063a9059cbb14610354578063dd62ed3e14610378575b600080fd5b34801561010c57600080fd5b5061011561039f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014f578181015183820152602001610137565b50505050905090810190601f16801561017c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019657600080fd5b506101ae600160a060020a03600435166024356103d6565b604080519115158252519081900360200190f35b3480156101ce57600080fd5b506101d76103fa565b60408051918252519081900360200190f35b3480156101f557600080fd5b506101ae600160a060020a0360043581169060243516604435610400565b34801561021f57600080fd5b506101d7610426565b34801561023457600080fd5b5061023d610437565b6040805160ff9092168252519081900360200190f35b34801561025f57600080fd5b506101ae600160a060020a036004351660243561043c565b34801561028357600080fd5b5061028c610459565b005b34801561029a57600080fd5b506101ae600160a060020a03600435166104bd565b3480156102bb57600080fd5b506101ae6104d6565b3480156102d057600080fd5b5061028c6104df565b3480156102e557600080fd5b506101d7600160a060020a03600435166104ea565b34801561030657600080fd5b5061028c600160a060020a0360043516610505565b34801561032757600080fd5b5061028c610525565b34801561033c57600080fd5b506101ae600160a060020a036004351660243561058b565b34801561036057600080fd5b506101ae600160a060020a03600435166024356105a8565b34801561038457600080fd5b506101d7600160a060020a03600435811690602435166105c5565b60408051808201909152600581527f5055424c58000000000000000000000000000000000000000000000000000000602082015281565b60045460009060ff16156103e957600080fd5b6103f383836105f0565b9392505050565b60025490565b60045460009060ff161561041357600080fd5b61041e84848461066e565b949350505050565b6c01431e0fae6d7217caa000000081565b601281565b60045460009060ff161561044f57600080fd5b6103f383836106db565b610462336104bd565b151561046d57600080fd5b60045460ff16151561047e57600080fd5b6004805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006104d060038363ffffffff61078b16565b92915050565b60045460ff1690565b6104e8336107c2565b565b600160a060020a031660009081526020819052604090205490565b61050e336104bd565b151561051957600080fd5b6105228161080a565b50565b61052e336104bd565b151561053957600080fd5b60045460ff161561054957600080fd5b6004805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60045460009060ff161561059e57600080fd5b6103f38383610852565b60045460009060ff16156105bb57600080fd5b6103f3838361089d565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000600160a060020a038316151561060757600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a03831660009081526001602090815260408083203384529091528120546106a2908363ffffffff6108b316565b600160a060020a03851660009081526001602090815260408083203384529091529020556106d18484846108ca565b5060019392505050565b6000600160a060020a03831615156106f257600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610726908363ffffffff61099716565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6000600160a060020a03821615156107a257600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6107d360038263ffffffff6109a916565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61081b60038263ffffffff6109f516565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000600160a060020a038316151561086957600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610726908363ffffffff6108b316565b60006108aa3384846108ca565b50600192915050565b600080838311156108c357600080fd5b5050900390565b600160a060020a03821615156108df57600080fd5b600160a060020a038316600090815260208190526040902054610908908263ffffffff6108b316565b600160a060020a03808516600090815260208190526040808220939093559084168152205461093d908263ffffffff61099716565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156103f357600080fd5b600160a060020a03811615156109be57600080fd5b6109c8828261078b565b15156109d357600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0381161515610a0a57600080fd5b610a14828261078b565b15610a1e57600080fd5b600160a060020a0316600090815260209190915260409020805460ff191660011790555600a165627a7a72305820ab9210ad10fc860ebd9a1cb50e33210de9ed96c43150245316f0a7dae0baacbb0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007758a09f10349f759686a0eeb79b84d054d0a5b4

-----Decoded View---------------
Arg [0] : reserveAddress (address): 0x7758A09f10349f759686A0eeB79B84D054d0A5b4

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007758a09f10349f759686a0eeb79b84d054d0a5b4


Deployed Bytecode Sourcemap

14650:618:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14689:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14689:37: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;14689:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12884:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12884:167:0;-1:-1:-1;;;;;12884:167:0;;;;;;;;;;;;;;;;;;;;;;;;;6042:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6042:85:0;;;;;;;;;;;;;;;;;;;;12686:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12686:192:0;-1:-1:-1;;;;;12686:192:0;;;;;;;;;;;;14821:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14821:72:0;;;;14779:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14779:35:0;;;;;;;;;;;;;;;;;;;;;;;13057:202;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13057:202:0;-1:-1:-1;;;;;13057:202:0;;;;;;;4550:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4550:108:0;;;;;;2963:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2963:102:0;-1:-1:-1;;;;;2963:102:0;;;;;3872:71;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3872:71:0;;;;3163;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3163:71:0;;;;6331:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6331:100:0;-1:-1:-1;;;;;6331:100:0;;;;;3071:86;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3071:86:0;-1:-1:-1;;;;;3071:86:0;;;;;4357:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4357:106:0;;;;13265:212;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13265:212:0;-1:-1:-1;;;;;13265:212:0;;;;;;;12521:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12521:159:0;-1:-1:-1;;;;;12521:159:0;;;;;;;6756;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6756:159:0;-1:-1:-1;;;;;6756:159:0;;;;;;;;;;14689:37;;;;;;;;;;;;;;;;;;;:::o;12884:167::-;4090:7;;12993:4;;4090:7;;4089:8;4081:17;;;;;;13016:29;13030:7;13039:5;13016:13;:29::i;:::-;13009:36;12884:167;-1:-1:-1;;;12884:167:0:o;6042:85::-;6109:12;;6042:85;:::o;12686:192::-;4090:7;;12814:4;;4090:7;;4089:8;4081:17;;;;;;12837:35;12856:4;12862:2;12866:5;12837:18;:35::i;:::-;12830:42;12686:192;-1:-1:-1;;;;12686:192:0:o;14821:72::-;14862:31;14821:72;:::o;14779:35::-;14812:2;14779:35;:::o;13057:202::-;4090:7;;13178:12;;4090:7;;4089:8;4081:17;;;;;;13209:44;13233:7;13242:10;13209:23;:44::i;4550:108::-;2922:20;2931:10;2922:8;:20::i;:::-;2914:29;;;;;;;;4251:7;;;;4243:16;;;;;;;;4605:7;:15;;-1:-1:-1;;4605:15:0;;;4632:20;;;4641:10;4632:20;;;;;;;;;;;;;4550:108::o;2963:102::-;3019:4;3039:20;:7;3051;3039:20;:11;:20;:::i;:::-;3032:27;2963:102;-1:-1:-1;;2963:102:0:o;3872:71::-;3930:7;;;;3872:71;:::o;3163:::-;3203:25;3217:10;3203:13;:25::i;:::-;3163:71::o;6331:100::-;-1:-1:-1;;;;;6409:16:0;6386:7;6409:16;;;;;;;;;;;;6331:100::o;3071:86::-;2922:20;2931:10;2922:8;:20::i;:::-;2914:29;;;;;;;;3132:19;3143:7;3132:10;:19::i;:::-;3071:86;:::o;4357:106::-;2922:20;2931:10;2922:8;:20::i;:::-;2914:29;;;;;;;;4090:7;;;;4089:8;4081:17;;;;;;4413:7;:14;;-1:-1:-1;;4413:14:0;4423:4;4413:14;;;4439:18;;;4446:10;4439:18;;;;;;;;;;;;;4357:106::o;13265:212::-;4090:7;;13391:12;;4090:7;;4089:8;4081:17;;;;;;13422:49;13446:7;13455:15;13422:23;:49::i;12521:159::-;4090:7;;12626:4;;4090:7;;4089:8;4081:17;;;;;;12649:25;12664:2;12668:5;12649:14;:25::i;6756:159::-;-1:-1:-1;;;;;6885:15:0;;;6859:7;6885:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;6756:159::o;7831:226::-;7896:4;-1:-1:-1;;;;;7917:21:0;;;;7909:30;;;;;;7957:10;7948:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7948:29:0;;;;;;;;;;;;:37;;;7997:36;;;;;;;7948:29;;7957:10;7997:36;;;;;;;;;;;-1:-1:-1;8047:4:0;7831:226;;;;:::o;8337:248::-;-1:-1:-1;;;;;8491:14:0;;8446:4;8491:14;;;:8;:14;;;;;;;;8506:10;8491:26;;;;;;;;:37;;8522:5;8491:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;8462:14:0;;;;;;:8;:14;;;;;;;;8477:10;8462:26;;;;;;;:66;8535:26;8471:4;8551:2;8555:5;8535:9;:26::i;:::-;-1:-1:-1;8575:4:0;8337:248;;;;;:::o;9047:343::-;9152:4;-1:-1:-1;;;;;9176:21:0;;;;9168:30;;;;;;9257:10;9248:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9248:29:0;;;;;;;;;;:45;;9282:10;9248:45;:33;:45;:::i;:::-;9216:10;9207:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9207:29:0;;;;;;;;;;;;:87;;;9306:60;;;;;;9207:29;;9306:60;;;;;;;;;;;-1:-1:-1;9380:4:0;9047:343;;;;:::o;2450:173::-;2537:4;-1:-1:-1;;;;;2561:21:0;;;;2553:30;;;;;;-1:-1:-1;;;;;;2597:20:0;:11;:20;;;;;;;;;;;;;;;2450:173::o;3357:119::-;3413:23;:7;3428;3413:23;:14;:23;:::i;:::-;3448:22;;-1:-1:-1;;;;;3448:22:0;;;;;;;;3357:119;:::o;3240:111::-;3293:20;:7;3305;3293:20;:11;:20;:::i;:::-;3325;;-1:-1:-1;;;;;3325:20:0;;;;;;;;3240:111;:::o;9857:353::-;9967:4;-1:-1:-1;;;;;9991:21:0;;;;9983:30;;;;;;10072:10;10063:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10063:29:0;;;;;;;;;;:50;;10097:15;10063:50;:33;:50;:::i;7074:130::-;7135:4;7148:32;7158:10;7170:2;7174:5;7148:9;:32::i;:::-;-1:-1:-1;7194:4:0;7074:130;;;;:::o;1119:136::-;1177:7;;1201:6;;;;1193:15;;;;;;-1:-1:-1;;1227:5:0;;;1119:136::o;10418:244::-;-1:-1:-1;;;;;10502:16:0;;;;10494:25;;;;;;-1:-1:-1;;;;;10546:15:0;;:9;:15;;;;;;;;;;;:26;;10566:5;10546:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;10528:15:0;;;:9;:15;;;;;;;;;;;:44;;;;10595:13;;;;;;;:24;;10613:5;10595:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;10579:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;10631:25;;;;;;;10579:13;;10631:25;;;;;;;;;;;;;10418:244;;;:::o;1323:136::-;1381:7;1409:5;;;1429:6;;;;1421:15;;;;;2191:175;-1:-1:-1;;;;;2267:21:0;;;;2259:30;;;;;;2304:18;2308:4;2314:7;2304:3;:18::i;:::-;2296:27;;;;;;;;-1:-1:-1;;;;;2332:20:0;2355:5;2332:20;;;;;;;;;;;:28;;-1:-1:-1;;2332:28:0;;;2191:175::o;1948:172::-;-1:-1:-1;;;;;2021:21:0;;;;2013:30;;;;;;2059:18;2063:4;2069:7;2059:3;:18::i;:::-;2058:19;2050:28;;;;;;-1:-1:-1;;;;;2087:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;2087:27:0;2110:4;2087:27;;;1948:172::o

Swarm Source

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