ETH Price: $3,312.43 (+6.31%)
Gas: 4 Gwei

Token

yffs.finance (YFFS)
 

Overview

Max Total Supply

59,973.70680986617841376 YFFS

Holders

1,076 (0.00%)

Market

Price

$0.21 @ 0.000065 ETH (+0.02%)

Onchain Market Cap

$12,848.89

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
NYAN.Finance: NYAN Token
Balance
0.43 YFFS

Value
$0.09 ( ~2.71703475497388E-05 Eth) [0.0007%]
0xc9ce70a381910d0a90b30d408cc9c7705ee882de
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

YFFS uses the latest in multi-party computing (MPC) and threshold signature cryptography (TSS) research for swap. It aims to offer vaults for lending and staking platform.

Market

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

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
YFFStoken

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity ^0.4.23;


library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws 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 a / b;
  }

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

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


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

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

  mapping(address => uint256) balances;

  uint256 totalSupply_;

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

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

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

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

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

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

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


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

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

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

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

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

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

}

/**
 * @title MultiOwnable
 */
contract MultiOwnable {
  address public root;
  mapping (address => address) public owners; // owner => parent of owner
  
  /**
  * @dev The Ownable constructor sets the original `owner` of the contract to the sender
  * account.
  */
  constructor() public {
    root = msg.sender;
    owners[root] = root;
  }
  
  /**
  * @dev Throws if called by any account other than the owner.
  */
  modifier onlyOwner() {
    require(owners[msg.sender] != 0);
    _;
  }
  
  /**
  * @dev Adding new owners
  */
  function newOwner(address _owner) onlyOwner external returns (bool) {
    require(_owner != 0);
    owners[_owner] = msg.sender;
    return true;
  }
  
  /**
    * @dev Deleting owners
    */
  function deleteOwner(address _owner) onlyOwner external returns (bool) {
    require(owners[_owner] == msg.sender || (owners[_owner] != 0 && msg.sender == root));
    owners[_owner] = 0;
    return true;
  }
}


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

  event Burn(address indexed burner, uint256 value);

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

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _value);
  }
}


/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract Blacklisted is MultiOwnable {

  mapping(address => bool) public blacklist;

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

  /**
   * @dev Adds single address to blacklist.
   * @param _villain Address to be added to the blacklist
   */
  function addToBlacklist(address _villain) external onlyOwner {
    blacklist[_villain] = true;
  }

  /**
   * @dev Adds list of addresses to blacklist. Not overloaded due to limitations with truffle testing.
   * @param _villains Addresses to be added to the blacklist
   */
  function addManyToBlacklist(address[] _villains) external onlyOwner {
    for (uint256 i = 0; i < _villains.length; i++) {
      blacklist[_villains[i]] = true;
    }
  }

  /**
   * @dev Removes single address from blacklist.
   * @param _villain Address to be removed to the blacklist
   */
  function removeFromBlacklist(address _villain) external onlyOwner {
    blacklist[_villain] = false;
  }
}


/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, MultiOwnable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
}


contract YFFStoken is MintableToken, BurnableToken, Blacklisted {

  string public constant name = "yffs.finance"; // solium-disable-line uppercase
  string public constant symbol = "YFFS"; // solium-disable-line uppercase
  uint8 public constant decimals = 18; // solium-disable-line uppercase, // 18 decimals is the strongly suggested default, avoid changing it

  uint256 public constant INITIAL_SUPPLY = 60 * 1000 * (10 ** uint256(decimals)); 

  bool public isUnlocked = false;
  
  /**
   * @dev Constructor that gives msg.sender all of existing tokens.
   */
  constructor(address _wallet) public {
    totalSupply_ = INITIAL_SUPPLY;
    balances[_wallet] = INITIAL_SUPPLY;
    emit Transfer(address(0), _wallet, INITIAL_SUPPLY);
  }

  modifier onlyTransferable() {
    require(isUnlocked || owners[msg.sender] != 0);
    _;
  }

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

  function transfer(address _to, uint256 _value) public onlyTransferable notBlacklisted returns (bool) {
      return super.transfer(_to, _value);
  }
  
  function unlockTransfer() public onlyOwner {
      isUnlocked = true;
  }
  
  function lockTransfer() public onlyOwner {
      isUnlocked = false;
  }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"owners","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"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":"lockTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[{"name":"_villains","type":"address[]"}],"name":"addManyToBlacklist","outputs":[],"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":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","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":false,"inputs":[{"name":"_villain","type":"address"}],"name":"addToBlacklist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_villain","type":"address"}],"name":"removeFromBlacklist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isUnlocked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"newOwner","outputs":[{"name":"","type":"bool"}],"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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unlockTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"deleteOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","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":true,"inputs":[],"name":"root","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blacklist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_wallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526005805460ff1990811690915560078054909116905534801561002657600080fd5b50604051602080611197833981016040818152915160038054600160a060020a0319908116331791829055600160a060020a039182166000818152600460209081528782208054909416909217909255690cb49b44ba602d800000600181905592841680835282825286832084905592855294519294919390927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506110bc806100db6000396000f30060806040526004361061015e5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663022914a7811461016357806305d2035b146101a057806306fdde03146101c9578063095ea7b31461025357806318160ddd146102775780631a9aea0a1461029e57806323b872dd146102b55780632815f50f146102df5780632ff2e9dc146102ff578063313ce5671461031457806340c10f191461033f57806342966c681461036357806344337ea11461037b578063537df3b61461039c57806366188463146103bd57806370a08231146103e15780637d64bcb4146104025780638380edb714610417578063859524541461042c57806395d89b411461044d578063a9059cbb14610462578063bf6d9abd14610486578063cd5c4c701461049b578063d73dd623146104bc578063dd62ed3e146104e0578063ebf0c71714610507578063f9f92be41461051c575b600080fd5b34801561016f57600080fd5b50610184600160a060020a036004351661053d565b60408051600160a060020a039092168252519081900360200190f35b3480156101ac57600080fd5b506101b5610558565b604080519115158252519081900360200190f35b3480156101d557600080fd5b506101de610561565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610218578181015183820152602001610200565b50505050905090810190601f1680156102455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025f57600080fd5b506101b5600160a060020a0360043516602435610598565b34801561028357600080fd5b5061028c6105fe565b60408051918252519081900360200190f35b3480156102aa57600080fd5b506102b3610604565b005b3480156102c157600080fd5b506101b5600160a060020a0360043581169060243516604435610634565b3480156102eb57600080fd5b506102b3600480356024810191013561069a565b34801561030b57600080fd5b5061028c61071a565b34801561032057600080fd5b50610329610728565b6040805160ff9092168252519081900360200190f35b34801561034b57600080fd5b506101b5600160a060020a036004351660243561072d565b34801561036f57600080fd5b506102b3600435610828565b34801561038757600080fd5b506102b3600160a060020a0360043516610835565b3480156103a857600080fd5b506102b3600160a060020a036004351661087d565b3480156103c957600080fd5b506101b5600160a060020a03600435166024356108c2565b3480156103ed57600080fd5b5061028c600160a060020a03600435166109b2565b34801561040e57600080fd5b506101b56109cd565b34801561042357600080fd5b506101b5610a3d565b34801561043857600080fd5b506101b5600160a060020a0360043516610a46565b34801561045957600080fd5b506101de610ab9565b34801561046e57600080fd5b506101b5600160a060020a0360043516602435610af0565b34801561049257600080fd5b506102b3610b54565b3480156104a757600080fd5b506101b5600160a060020a0360043516610b87565b3480156104c857600080fd5b506101b5600160a060020a0360043516602435610c44565b3480156104ec57600080fd5b5061028c600160a060020a0360043581169060243516610cdd565b34801561051357600080fd5b50610184610d08565b34801561052857600080fd5b506101b5600160a060020a0360043516610d17565b600460205260009081526040902054600160a060020a031681565b60055460ff1681565b60408051808201909152600c81527f796666732e66696e616e63650000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b33600090815260046020526040902054600160a060020a0316151561062857600080fd5b6007805460ff19169055565b60075460009060ff168061065f575033600090815260046020526040902054600160a060020a031615155b151561066a57600080fd5b3360009081526006602052604090205460ff161561068757600080fd5b610692848484610d2c565b949350505050565b33600090815260046020526040812054600160a060020a031615156106be57600080fd5b5060005b81811015610715576001600660008585858181106106dc57fe5b60209081029290920135600160a060020a0316835250810191909152604001600020805460ff19169115159190911790556001016106c2565b505050565b690cb49b44ba602d80000081565b601281565b33600090815260046020526040812054600160a060020a0316151561075157600080fd5b60055460ff161561076157600080fd5b600154610774908363ffffffff610e9116565b600155600160a060020a0383166000908152602081905260409020546107a0908363ffffffff610e9116565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206110718339815191529181900360200190a350600192915050565b6108323382610ea0565b50565b33600090815260046020526040902054600160a060020a0316151561085957600080fd5b600160a060020a03166000908152600660205260409020805460ff19166001179055565b33600090815260046020526040902054600160a060020a031615156108a157600080fd5b600160a060020a03166000908152600660205260409020805460ff19169055565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561091757336000908152600260209081526040808320600160a060020a038816845290915281205561094c565b610927818463ffffffff610f8f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b33600090815260046020526040812054600160a060020a031615156109f157600080fd5b60055460ff1615610a0157600080fd5b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60075460ff1681565b33600090815260046020526040812054600160a060020a03161515610a6a57600080fd5b600160a060020a0382161515610a7f57600080fd5b50600160a060020a03166000908152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff191633179055600190565b60408051808201909152600481527f5946465300000000000000000000000000000000000000000000000000000000602082015281565b60075460009060ff1680610b1b575033600090815260046020526040902054600160a060020a031615155b1515610b2657600080fd5b3360009081526006602052604090205460ff1615610b4357600080fd5b610b4d8383610fa1565b9392505050565b33600090815260046020526040902054600160a060020a03161515610b7857600080fd5b6007805460ff19166001179055565b33600090815260046020526040812054600160a060020a03161515610bab57600080fd5b600160a060020a0382811660009081526004602052604090205416331480610c015750600160a060020a038083166000908152600460205260409020541615801590610c015750600354600160a060020a031633145b1515610c0c57600080fd5b50600160a060020a03166000908152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19169055600190565b336000908152600260209081526040808320600160a060020a0386168452909152812054610c78908363ffffffff610e9116565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a031681565b60066020526000908152604090205460ff1681565b6000600160a060020a0383161515610d4357600080fd5b600160a060020a038416600090815260208190526040902054821115610d6857600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610d9857600080fd5b600160a060020a038416600090815260208190526040902054610dc1908363ffffffff610f8f16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610df6908363ffffffff610e9116565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610e38908363ffffffff610f8f16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611071833981519152929181900390910190a35060019392505050565b600082820183811015610b4d57fe5b600160a060020a038216600090815260208190526040902054811115610ec557600080fd5b600160a060020a038216600090815260208190526040902054610eee908263ffffffff610f8f16565b600160a060020a038316600090815260208190526040902055600154610f1a908263ffffffff610f8f16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206110718339815191529181900360200190a35050565b600082821115610f9b57fe5b50900390565b6000600160a060020a0383161515610fb857600080fd5b33600090815260208190526040902054821115610fd457600080fd5b33600090815260208190526040902054610ff4908363ffffffff610f8f16565b3360009081526020819052604080822092909255600160a060020a03851681522054611026908363ffffffff610e9116565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206110718339815191529281900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820e9fda637382eacca52be6653d86832f61783dec8a782d58de7eb307470d6c00b0029000000000000000000000000489b689850999f751760a38d03693bd979c4a690

Deployed Bytecode

0x60806040526004361061015e5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663022914a7811461016357806305d2035b146101a057806306fdde03146101c9578063095ea7b31461025357806318160ddd146102775780631a9aea0a1461029e57806323b872dd146102b55780632815f50f146102df5780632ff2e9dc146102ff578063313ce5671461031457806340c10f191461033f57806342966c681461036357806344337ea11461037b578063537df3b61461039c57806366188463146103bd57806370a08231146103e15780637d64bcb4146104025780638380edb714610417578063859524541461042c57806395d89b411461044d578063a9059cbb14610462578063bf6d9abd14610486578063cd5c4c701461049b578063d73dd623146104bc578063dd62ed3e146104e0578063ebf0c71714610507578063f9f92be41461051c575b600080fd5b34801561016f57600080fd5b50610184600160a060020a036004351661053d565b60408051600160a060020a039092168252519081900360200190f35b3480156101ac57600080fd5b506101b5610558565b604080519115158252519081900360200190f35b3480156101d557600080fd5b506101de610561565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610218578181015183820152602001610200565b50505050905090810190601f1680156102455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025f57600080fd5b506101b5600160a060020a0360043516602435610598565b34801561028357600080fd5b5061028c6105fe565b60408051918252519081900360200190f35b3480156102aa57600080fd5b506102b3610604565b005b3480156102c157600080fd5b506101b5600160a060020a0360043581169060243516604435610634565b3480156102eb57600080fd5b506102b3600480356024810191013561069a565b34801561030b57600080fd5b5061028c61071a565b34801561032057600080fd5b50610329610728565b6040805160ff9092168252519081900360200190f35b34801561034b57600080fd5b506101b5600160a060020a036004351660243561072d565b34801561036f57600080fd5b506102b3600435610828565b34801561038757600080fd5b506102b3600160a060020a0360043516610835565b3480156103a857600080fd5b506102b3600160a060020a036004351661087d565b3480156103c957600080fd5b506101b5600160a060020a03600435166024356108c2565b3480156103ed57600080fd5b5061028c600160a060020a03600435166109b2565b34801561040e57600080fd5b506101b56109cd565b34801561042357600080fd5b506101b5610a3d565b34801561043857600080fd5b506101b5600160a060020a0360043516610a46565b34801561045957600080fd5b506101de610ab9565b34801561046e57600080fd5b506101b5600160a060020a0360043516602435610af0565b34801561049257600080fd5b506102b3610b54565b3480156104a757600080fd5b506101b5600160a060020a0360043516610b87565b3480156104c857600080fd5b506101b5600160a060020a0360043516602435610c44565b3480156104ec57600080fd5b5061028c600160a060020a0360043581169060243516610cdd565b34801561051357600080fd5b50610184610d08565b34801561052857600080fd5b506101b5600160a060020a0360043516610d17565b600460205260009081526040902054600160a060020a031681565b60055460ff1681565b60408051808201909152600c81527f796666732e66696e616e63650000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b33600090815260046020526040902054600160a060020a0316151561062857600080fd5b6007805460ff19169055565b60075460009060ff168061065f575033600090815260046020526040902054600160a060020a031615155b151561066a57600080fd5b3360009081526006602052604090205460ff161561068757600080fd5b610692848484610d2c565b949350505050565b33600090815260046020526040812054600160a060020a031615156106be57600080fd5b5060005b81811015610715576001600660008585858181106106dc57fe5b60209081029290920135600160a060020a0316835250810191909152604001600020805460ff19169115159190911790556001016106c2565b505050565b690cb49b44ba602d80000081565b601281565b33600090815260046020526040812054600160a060020a0316151561075157600080fd5b60055460ff161561076157600080fd5b600154610774908363ffffffff610e9116565b600155600160a060020a0383166000908152602081905260409020546107a0908363ffffffff610e9116565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206110718339815191529181900360200190a350600192915050565b6108323382610ea0565b50565b33600090815260046020526040902054600160a060020a0316151561085957600080fd5b600160a060020a03166000908152600660205260409020805460ff19166001179055565b33600090815260046020526040902054600160a060020a031615156108a157600080fd5b600160a060020a03166000908152600660205260409020805460ff19169055565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561091757336000908152600260209081526040808320600160a060020a038816845290915281205561094c565b610927818463ffffffff610f8f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b33600090815260046020526040812054600160a060020a031615156109f157600080fd5b60055460ff1615610a0157600080fd5b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60075460ff1681565b33600090815260046020526040812054600160a060020a03161515610a6a57600080fd5b600160a060020a0382161515610a7f57600080fd5b50600160a060020a03166000908152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff191633179055600190565b60408051808201909152600481527f5946465300000000000000000000000000000000000000000000000000000000602082015281565b60075460009060ff1680610b1b575033600090815260046020526040902054600160a060020a031615155b1515610b2657600080fd5b3360009081526006602052604090205460ff1615610b4357600080fd5b610b4d8383610fa1565b9392505050565b33600090815260046020526040902054600160a060020a03161515610b7857600080fd5b6007805460ff19166001179055565b33600090815260046020526040812054600160a060020a03161515610bab57600080fd5b600160a060020a0382811660009081526004602052604090205416331480610c015750600160a060020a038083166000908152600460205260409020541615801590610c015750600354600160a060020a031633145b1515610c0c57600080fd5b50600160a060020a03166000908152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19169055600190565b336000908152600260209081526040808320600160a060020a0386168452909152812054610c78908363ffffffff610e9116565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a031681565b60066020526000908152604090205460ff1681565b6000600160a060020a0383161515610d4357600080fd5b600160a060020a038416600090815260208190526040902054821115610d6857600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610d9857600080fd5b600160a060020a038416600090815260208190526040902054610dc1908363ffffffff610f8f16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610df6908363ffffffff610e9116565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610e38908363ffffffff610f8f16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611071833981519152929181900390910190a35060019392505050565b600082820183811015610b4d57fe5b600160a060020a038216600090815260208190526040902054811115610ec557600080fd5b600160a060020a038216600090815260208190526040902054610eee908263ffffffff610f8f16565b600160a060020a038316600090815260208190526040902055600154610f1a908263ffffffff610f8f16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206110718339815191529181900360200190a35050565b600082821115610f9b57fe5b50900390565b6000600160a060020a0383161515610fb857600080fd5b33600090815260208190526040902054821115610fd457600080fd5b33600090815260208190526040902054610ff4908363ffffffff610f8f16565b3360009081526020819052604080822092909255600160a060020a03851681522054611026908363ffffffff610e9116565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206110718339815191529281900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820e9fda637382eacca52be6653d86832f61783dec8a782d58de7eb307470d6c00b0029

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

000000000000000000000000489b689850999f751760a38d03693bd979c4a690

-----Decoded View---------------
Arg [0] : _wallet (address): 0x489B689850999F751760a38d03693Bd979C4A690

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000489b689850999f751760a38d03693bd979c4a690


Deployed Bytecode Sourcemap

11589:1370:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7319:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7319:42:0;-1:-1:-1;;;;;7319:42:0;;;;;;;;;-1:-1:-1;;;;;7319:42:0;;;;;;;;;;;;;;10683:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10683:35:0;;;;;;;;;;;;;;;;;;;;;;11660:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11660:44: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;11660:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4957:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4957:192:0;-1:-1:-1;;;;;4957:192:0;;;;;;;1830:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1830:85:0;;;;;;;;;;;;;;;;;;;;12880:74;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12880:74:0;;;;;;12453:180;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12453:180:0;-1:-1:-1;;;;;12453:180:0;;;;;;;;;;;;9830:174;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9830:174:0;;;;;;;;;;;;11962:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11962:78:0;;;;11818:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11818:35:0;;;;;;;;;;;;;;;;;;;;;;;11036:280;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11036:280:0;-1:-1:-1;;;;;11036:280:0;;;;;;;8534:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8534:75:0;;;;;9544:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9544:100:0;-1:-1:-1;;;;;9544:100:0;;;;;10135:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10135:106:0;-1:-1:-1;;;;;10135:106:0;;;;;6813:412;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6813:412:0;-1:-1:-1;;;;;6813:412:0;;;;;;;2614:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2614:109:0;-1:-1:-1;;;;;2614:109:0;;;;;11436:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11436:144:0;;;;12048:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12048:30:0;;;;7800:153;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7800:153:0;-1:-1:-1;;;;;7800:153:0;;;;;11742:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11742:38:0;;;;12639:150;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12639:150:0;-1:-1:-1;;;;;12639:150:0;;;;;;;12797:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12797:75:0;;;;8004:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8004:211:0;-1:-1:-1;;;;;8004:211:0;;;;;6073:266;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6073:266:0;-1:-1:-1;;;;;6073:266:0;;;;;;;5476:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5476:128:0;-1:-1:-1;;;;;5476:128:0;;;;;;;;;;7295:19;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7295:19:0;;;;9209:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9209:41:0;-1:-1:-1;;;;;9209:41:0;;;;;7319:42;;;;;;;;;;;;-1:-1:-1;;;;;7319:42:0;;:::o;10683:35::-;;;;;;:::o;11660:44::-;;;;;;;;;;;;;;;;;;;:::o;4957:192::-;5045:10;5024:4;5037:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5037:29:0;;;;;;;;;;;:38;;;5087;;;;;;;5024:4;;5037:29;;5045:10;;5087:38;;;;;;;;-1:-1:-1;5139:4:0;4957:192;;;;:::o;1830:85::-;1897:12;;1830:85;:::o;12880:74::-;7720:10;7713:18;;;;:6;:18;;;;;;-1:-1:-1;;;;;7713:18:0;:23;;7705:32;;;;;;12930:10;:18;;-1:-1:-1;;12930:18:0;;;12880:74::o;12453:180::-;12395:10;;12567:4;;12395:10;;;:37;;-1:-1:-1;12416:10:0;12409:18;;;;:6;:18;;;;;;-1:-1:-1;;;;;12409:18:0;:23;;12395:37;12387:46;;;;;;;;9385:10;9375:21;;;;:9;:21;;;;;;;;:30;9367:39;;;;;;12589:38;12608:5;12615:3;12620:6;12589:18;:38::i;:::-;12582:45;12453:180;-1:-1:-1;;;;12453:180:0:o;9830:174::-;7720:10;9910:9;7713:18;;;:6;:18;;;;;;-1:-1:-1;;;;;7713:18:0;:23;;7705:32;;;;;;-1:-1:-1;9922:1:0;9905:94;9925:20;;;9905:94;;;9987:4;9961:9;:23;9971:9;;9981:1;9971:12;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9971:12:0;9961:23;;-1:-1:-1;9961:23:0;;;;;;;;-1:-1:-1;9961:23:0;:30;;-1:-1:-1;;9961:30:0;;;;;;;;;;-1:-1:-1;9947:3:0;9905:94;;;9830:174;;;:::o;11962:78::-;12003:37;11962:78;:::o;11818:35::-;11851:2;11818:35;:::o;11036:280::-;7720:10;11114:4;7713:18;;;:6;:18;;;;;;-1:-1:-1;;;;;7713:18:0;:23;;7705:32;;;;;;10762:15;;;;10761:16;10753:25;;;;;;11142:12;;:25;;11159:7;11142:25;:16;:25;:::i;:::-;11127:12;:40;-1:-1:-1;;;;;11190:13:0;;:8;:13;;;;;;;;;;;:26;;11208:7;11190:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;11174:13:0;;:8;:13;;;;;;;;;;;;:42;;;;11228:18;;;;;;;11174:13;;11228:18;;;;;;;;;11258:34;;;;;;;;-1:-1:-1;;;;;11258:34:0;;;11275:1;;-1:-1:-1;;;;;;;;;;;11258:34:0;;;;;;;;-1:-1:-1;11306:4:0;11036:280;;;;:::o;8534:75::-;8578:25;8584:10;8596:6;8578:5;:25::i;:::-;8534:75;:::o;9544:100::-;7720:10;7713:18;;;;:6;:18;;;;;;-1:-1:-1;;;;;7713:18:0;:23;;7705:32;;;;;;-1:-1:-1;;;;;9612:19:0;;;;;:9;:19;;;;;:26;;-1:-1:-1;;9612:26:0;9634:4;9612:26;;;9544:100::o;10135:106::-;7720:10;7713:18;;;;:6;:18;;;;;;-1:-1:-1;;;;;7713:18:0;:23;;7705:32;;;;;;-1:-1:-1;;;;;10208:19:0;10230:5;10208:19;;;:9;:19;;;;;:27;;-1:-1:-1;;10208:27:0;;;10135:106::o;6813:412::-;6933:10;6896:4;6925:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6925:29:0;;;;;;;;;;6965:27;;;6961:168;;;7011:10;7035:1;7003:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7003:29:0;;;;;;;;;:33;6961:168;;;7091:30;:8;7104:16;7091:30;:12;:30;:::i;:::-;7067:10;7059:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7059:29:0;;;;;;;;;:62;6961:168;7149:10;7171:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7140:61:0;;7171:29;;;;;;;;;;;7140:61;;;;;;;;;7149:10;7140:61;;;;;;;;;;;-1:-1:-1;7215:4:0;;6813:412;-1:-1:-1;;;6813:412:0:o;2614:109::-;-1:-1:-1;;;;;2701:16:0;2670:15;2701:16;;;;;;;;;;;;2614:109::o;11436:144::-;7720:10;11495:4;7713:18;;;:6;:18;;;;;;-1:-1:-1;;;;;7713:18:0;:23;;7705:32;;;;;;10762:15;;;;10761:16;10753:25;;;;;;11508:15;:22;;-1:-1:-1;;11508:22:0;11526:4;11508:22;;;11542:14;;;;11508:15;;11542:14;-1:-1:-1;11570:4:0;11436:144;:::o;12048:30::-;;;;;;:::o;7800:153::-;7720:10;7862:4;7713:18;;;:6;:18;;;;;;-1:-1:-1;;;;;7713:18:0;:23;;7705:32;;;;;;-1:-1:-1;;;;;7883:11:0;;;;7875:20;;;;;;-1:-1:-1;;;;;;7902:14:0;;;;;:6;:14;;;;;:27;;-1:-1:-1;;7902:27:0;7919:10;7902:27;;;-1:-1:-1;;7800:153:0:o;11742:38::-;;;;;;;;;;;;;;;;;;;:::o;12639:150::-;12395:10;;12734:4;;12395:10;;;:37;;-1:-1:-1;12416:10:0;12409:18;;;;:6;:18;;;;;;-1:-1:-1;;;;;12409:18:0;:23;;12395:37;12387:46;;;;;;;;9385:10;9375:21;;;;:9;:21;;;;;;;;:30;9367:39;;;;;;12756:27;12771:3;12776:6;12756:14;:27::i;:::-;12749:34;12639:150;-1:-1:-1;;;12639:150:0:o;12797:75::-;7720:10;7713:18;;;;:6;:18;;;;;;-1:-1:-1;;;;;7713:18:0;:23;;7705:32;;;;;;12849:10;:17;;-1:-1:-1;;12849:17:0;12862:4;12849:17;;;12797:75::o;8004:211::-;7720:10;8069:4;7713:18;;;:6;:18;;;;;;-1:-1:-1;;;;;7713:18:0;:23;;7705:32;;;;;;-1:-1:-1;;;;;8090:14:0;;;;;;;:6;:14;;;;;;;8108:10;8090:28;;:75;;-1:-1:-1;;;;;;8123:14:0;;;;;;;:6;:14;;;;;;;:19;;;;:41;;-1:-1:-1;8160:4:0;;-1:-1:-1;;;;;8160:4:0;8146:10;:18;8123:41;8082:84;;;;;;;;-1:-1:-1;;;;;;8173:14:0;8190:1;8173:14;;;:6;:14;;;;;:18;;-1:-1:-1;;8173:18:0;;;-1:-1:-1;;8004:211:0:o;6073:266::-;6204:10;6151:4;6196:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6196:29:0;;;;;;;;;;:46;;6230:11;6196:46;:33;:46;:::i;:::-;6172:10;6164:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6164:29:0;;;;;;;;;;;;:78;;;6254:61;;;;;;6164:29;;6254:61;;;;;;;;;;;-1:-1:-1;6329:4:0;6073:266;;;;:::o;5476:128::-;-1:-1:-1;;;;;5573:15:0;;;5550:7;5573:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5476:128::o;7295:19::-;;;-1:-1:-1;;;;;7295:19:0;;:::o;9209:41::-;;;;;;;;;;;;;;;:::o;3868:454::-;3950:4;-1:-1:-1;;;;;3971:17:0;;;;3963:26;;;;;;-1:-1:-1;;;;;4014:15:0;;:8;:15;;;;;;;;;;;4004:25;;;3996:34;;;;;;-1:-1:-1;;;;;4055:14:0;;;;;;:7;:14;;;;;;;;4070:10;4055:26;;;;;;;;4045:36;;;4037:45;;;;;;-1:-1:-1;;;;;4109:15:0;;:8;:15;;;;;;;;;;;:27;;4129:6;4109:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4091:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4159:13;;;;;;;:25;;4177:6;4159:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4143:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4220:14;;;;;:7;:14;;;;;4235:10;4220:26;;;;;;;:38;;4251:6;4220:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4191:14:0;;;;;;;:7;:14;;;;;;;;4206:10;4191:26;;;;;;;;:67;;;;4270:28;;;;;;;;;;;4191:14;;-1:-1:-1;;;;;;;;;;;4270:28:0;;;;;;;;;;-1:-1:-1;4312:4:0;3868:454;;;;;:::o;962:133::-;1020:7;1048:5;;;1067:6;;;;1060:14;;;8615:447;-1:-1:-1;;;;;8694:14:0;;:8;:14;;;;;;;;;;;8684:24;;;8676:33;;;;;;-1:-1:-1;;;;;8908:14:0;;:8;:14;;;;;;;;;;;:26;;8927:6;8908:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;8891:14:0;;:8;:14;;;;;;;;;;:43;8956:12;;:24;;8973:6;8956:24;:16;:24;:::i;:::-;8941:12;:39;8992:18;;;;;;;;-1:-1:-1;;;;;8992:18:0;;;;;;;;;;;;;9022:34;;;;;;;;9045:1;;-1:-1:-1;;;;;9022:34:0;;;-1:-1:-1;;;;;;;;;;;9022:34:0;;;;;;;;8615:447;;:::o;782:113::-;840:7;863:6;;;;856:14;;;;-1:-1:-1;884:5:0;;;782:113::o;2076:329::-;2139:4;-1:-1:-1;;;;;2160:17:0;;;;2152:26;;;;;;2212:10;2203:8;:20;;;;;;;;;;;2193:30;;;2185:39;;;;;;2265:10;2256:8;:20;;;;;;;;;;;:32;;2281:6;2256:32;:24;:32;:::i;:::-;2242:10;2233:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;2311:13:0;;;;;;:25;;2329:6;2311:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2295:13:0;;:8;:13;;;;;;;;;;;;:41;;;;2348:33;;;;;;;2295:13;;2357:10;;-1:-1:-1;;;;;;;;;;;2348:33:0;;;;;;;;;-1:-1:-1;2395:4:0;2076:329;;;;:::o

Swarm Source

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