ETH Price: $2,738.74 (+1.70%)

Token

tiger (TG)
 

Overview

Max Total Supply

210,000,000 TG

Holders

723

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
204,980,747.2 TG

Value
$0.00
0xd160c2767651df3b6bd4bc6c8e5f3a2c2031b4bd
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xDf028B08...20108a50c
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
AIMToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-11-04
*/

pragma solidity ^0.4.20;

/**
 * 使用安全计算法进行加减乘除运算
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
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;
    require(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)
  {
    require(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;
    require(c >= a);
    return c;
  }
}

contract Ownable
{
  address public owner;


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


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


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

}

/**
 * 合约管理员可以在紧急情况下暂停合约,停止转账行为
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable
{
  event Pause();
  event Unpause();

  bool public paused = false;


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

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

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

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

}

/**
 * @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 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 Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic
{
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

  string public name;

  string public symbol;

  /**
  * @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] -= _value;
    balances[_to] += _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 Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 */
contract StandardToken is ERC20, BasicToken
{

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


  /**
   * 方法调用者将from账户中的代币转入to账户中
   * @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;
  }

  /**
   * 方法调用者允许spender操作自己账户中value数量的代币
   * @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;
  }

  /**
   * 查看spender还可以操作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];
  }

  /**
   * 调用者增加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;
  }

  /**
   * 调用者减少spender可操作的代币数量
   * @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 Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
 */
contract MintableToken is StandardToken, Ownable
{
  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;
  }
}

/**
 * 设置增发的上限
 * @title Capped token
 * @dev Mintable token with a token cap.
 */
contract CappedToken is MintableToken {

  uint256 public cap;

  constructor(uint256 _cap) public
  {
    require(_cap > 0);
    cap = _cap;
  }

  /**
   * @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)
  {
    require(totalSupply_.add(_amount) <= cap);

    return super.mint(_to, _amount);
  }

}

// 暂停合约会影响以下方法的调用
contract PausableToken is StandardToken, Pausable
{

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

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

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

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

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

  // 批量转账
  function batchTransfer(address[] _receivers, uint256 _value) public whenNotPaused returns (bool)
  {
    uint receiverCount = _receivers.length;
    uint256 amount = _value.mul(uint256(receiverCount));
    /* require(receiverCount > 0 && receiverCount <= 20); */
    require(receiverCount > 0);
    require(_value > 0 && balances[msg.sender] >= amount);

    balances[msg.sender] = balances[msg.sender].sub(amount);
    for (uint i = 0; i < receiverCount; i++)
    {
        balances[_receivers[i]] = balances[_receivers[i]].add(_value);
        emit Transfer(msg.sender, _receivers[i], _value);
    }
    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 {
    require(_value <= balances[msg.sender]);
    // 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

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

contract AIMToken is CappedToken,PausableToken,BurnableToken {

    uint8 public constant decimals = 18;

    uint256 private TOKEN_INITIAL;

   /**
    * CappedToken基类构造函数的参数依赖于派生合约,作为派生合约构造函数定义头的一部分
    */
   constructor(string _name,string _symbol,uint256 _TOKEN_CAP,uint256 _TOKEN_INITIAL) public CappedToken(_TOKEN_CAP * (10 ** uint256(decimals)))
   {
      require(_TOKEN_INITIAL > 0);
      require(_TOKEN_CAP >= _TOKEN_INITIAL);

      TOKEN_INITIAL = _TOKEN_INITIAL * (10 ** uint256(decimals));

      totalSupply_ = TOKEN_INITIAL;

      name = _name;

      symbol = _symbol;

      balances[msg.sender] = TOKEN_INITIAL;

      emit Transfer(address(0), msg.sender, TOKEN_INITIAL);

  }
}

Contract Security Audit

Contract ABI

[{"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":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"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":false,"inputs":[{"name":"_receivers","type":"address[]"},{"name":"_value","type":"uint256"}],"name":"batchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_TOKEN_CAP","type":"uint256"},{"name":"_TOKEN_INITIAL","type":"uint256"}],"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":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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"}]

60806040526005805460a060020a60ff02191690556007805460ff191690553480156200002b57600080fd5b506040516200125e3803806200125e8339810160409081528151602083015191830151606084015160058054600160a060020a0319163317905591840193929092019190670de0b6b3a76400008202600081116200008857600080fd5b600655600081116200009957600080fd5b80821015620000a757600080fd5b670de0b6b3a7640000810260088190556001558351620000cf9060029060208701906200013a565b508251620000e59060039060208601906200013a565b5060085433600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350505050620001df565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200017d57805160ff1916838001178555620001ad565b82800160010185558215620001ad579182015b82811115620001ad57825182559160200191906001019062000190565b50620001bb929150620001bf565b5090565b620001dc91905b80821115620001bb5760008155600101620001c6565b90565b61106f80620001ef6000396000f3006080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461012c57806306fdde0314610155578063095ea7b3146101df57806318160ddd1461020357806323b872dd1461022a578063313ce56714610254578063355274ea1461027f5780633f4ba83a1461029457806340c10f19146102ab57806342966c68146102cf5780635c975abb146102e757806366188463146102fc57806370a08231146103205780637d64bcb41461034157806383f12fec146103565780638456cb59146103ad5780638da5cb5b146103c257806395d89b41146103f3578063a9059cbb14610408578063d73dd6231461042c578063dd62ed3e14610450578063f2fde38b14610477575b600080fd5b34801561013857600080fd5b50610141610498565b604080519115158252519081900360200190f35b34801561016157600080fd5b5061016a6104a8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a457818101518382015260200161018c565b50505050905090810190601f1680156101d15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101eb57600080fd5b50610141600160a060020a0360043516602435610533565b34801561020f57600080fd5b50610218610557565b60408051918252519081900360200190f35b34801561023657600080fd5b50610141600160a060020a036004358116906024351660443561055d565b34801561026057600080fd5b50610269610583565b6040805160ff9092168252519081900360200190f35b34801561028b57600080fd5b50610218610588565b3480156102a057600080fd5b506102a961058e565b005b3480156102b757600080fd5b50610141600160a060020a03600435166024356105eb565b3480156102db57600080fd5b506102a9600435610647565b3480156102f357600080fd5b50610141610725565b34801561030857600080fd5b50610141600160a060020a036004351660243561072e565b34801561032c57600080fd5b50610218600160a060020a036004351661074b565b34801561034d57600080fd5b50610141610766565b34801561036257600080fd5b50604080516020600480358082013583810280860185019096528085526101419536959394602494938501929182918501908490808284375094975050933594506107ea9350505050565b3480156103b957600080fd5b506102a961096a565b3480156103ce57600080fd5b506103d76109c9565b60408051600160a060020a039092168252519081900360200190f35b3480156103ff57600080fd5b5061016a6109d8565b34801561041457600080fd5b50610141600160a060020a0360043516602435610a33565b34801561043857600080fd5b50610141600160a060020a0360043516602435610a50565b34801561045c57600080fd5b50610218600160a060020a0360043581169060243516610a6d565b34801561048357600080fd5b506102a9600160a060020a0360043516610a98565b60055460a060020a900460ff1681565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561052b5780601f106105005761010080835404028352916020019161052b565b820191906000526020600020905b81548152906001019060200180831161050e57829003601f168201915b505050505081565b60075460009060ff161561054657600080fd5b6105508383610aea565b9392505050565b60015490565b60075460009060ff161561057057600080fd5b61057b848484610b50565b949350505050565b601281565b60065481565b600554600160a060020a031633146105a557600080fd5b60075460ff1615156105b657600080fd5b6007805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600554600090600160a060020a0316331461060557600080fd5b60055460a060020a900460ff161561061c57600080fd5b600654600154610632908463ffffffff610cb516565b111561063d57600080fd5b6105508383610cd2565b3360009081526020819052604081205482111561066357600080fd5b5033600081815260208190526040902054610684908363ffffffff610dca16565b600160a060020a0382166000908152602081905260409020556001546106b0908363ffffffff610dca16565b600155604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518381529051600091600160a060020a038416916000805160206110248339815191529181900360200190a35050565b60075460ff1681565b60075460009060ff161561074157600080fd5b6105508383610ddf565b600160a060020a031660009081526020819052604090205490565b600554600090600160a060020a0316331461078057600080fd5b60055460a060020a900460ff161561079757600080fd5b6005805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60075460009081908190819060ff161561080357600080fd5b85519250610817858463ffffffff610ecf16565b91506000831161082657600080fd5b6000851180156108455750336000908152602081905260409020548211155b151561085057600080fd5b33600090815260208190526040902054610870908363ffffffff610dca16565b3360009081526020819052604081209190915590505b8281101561095e576108d28560008089858151811015156108a357fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff610cb516565b60008088848151811015156108e357fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055855186908290811061091457fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020611024833981519152876040518082815260200191505060405180910390a3600101610886565b50600195945050505050565b600554600160a060020a0316331461098157600080fd5b60075460ff161561099157600080fd5b6007805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600554600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561052b5780601f106105005761010080835404028352916020019161052b565b60075460009060ff1615610a4657600080fd5b6105508383610efd565b60075460009060ff1615610a6357600080fd5b6105508383610f8a565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600554600160a060020a03163314610aaf57600080fd5b600160a060020a03811615610ae7576005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a0383161515610b6757600080fd5b600160a060020a038416600090815260208190526040902054821115610b8c57600080fd5b600160a060020a0384166000908152600460209081526040808320338452909152902054821115610bbc57600080fd5b600160a060020a038416600090815260208190526040902054610be5908363ffffffff610dca16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610c1a908363ffffffff610cb516565b600160a060020a03808516600090815260208181526040808320949094559187168152600482528281203382529091522054610c5c908363ffffffff610dca16565b600160a060020a0380861660008181526004602090815260408083203384528252918290209490945580518681529051928716939192600080516020611024833981519152929181900390910190a35060019392505050565b600082820183811015610cc757600080fd5b8091505b5092915050565b600554600090600160a060020a03163314610cec57600080fd5b60055460a060020a900460ff1615610d0357600080fd5b600154610d16908363ffffffff610cb516565b600155600160a060020a038316600090815260208190526040902054610d42908363ffffffff610cb516565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206110248339815191529181900360200190a350600192915050565b600082821115610dd957600080fd5b50900390565b336000908152600460209081526040808320600160a060020a038616845290915281205480831115610e3457336000908152600460209081526040808320600160a060020a0388168452909152812055610e69565b610e44818463ffffffff610dca16565b336000908152600460209081526040808320600160a060020a03891684529091529020555b336000818152600460209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600080831515610ee25760009150610ccb565b50828202828482811515610ef257fe5b0414610cc757600080fd5b6000600160a060020a0383161515610f1457600080fd5b33600090815260208190526040902054821115610f3057600080fd5b3360008181526020818152604080832080548790039055600160a060020a0387168084529281902080548701905580518681529051929392600080516020611024833981519152929181900390910190a350600192915050565b336000908152600460209081526040808320600160a060020a0386168452909152812054610fbe908363ffffffff610cb516565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209bee523ccafda410b8675ef2617b26c0222904dec13c44bb0f9af4b54bfe7e640029000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000010b076000000000000000000000000000000000000000000000000000000000010b07600000000000000000000000000000000000000000000000000000000000000001035505320636c6f75642073746f7261670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000033550530000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461012c57806306fdde0314610155578063095ea7b3146101df57806318160ddd1461020357806323b872dd1461022a578063313ce56714610254578063355274ea1461027f5780633f4ba83a1461029457806340c10f19146102ab57806342966c68146102cf5780635c975abb146102e757806366188463146102fc57806370a08231146103205780637d64bcb41461034157806383f12fec146103565780638456cb59146103ad5780638da5cb5b146103c257806395d89b41146103f3578063a9059cbb14610408578063d73dd6231461042c578063dd62ed3e14610450578063f2fde38b14610477575b600080fd5b34801561013857600080fd5b50610141610498565b604080519115158252519081900360200190f35b34801561016157600080fd5b5061016a6104a8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a457818101518382015260200161018c565b50505050905090810190601f1680156101d15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101eb57600080fd5b50610141600160a060020a0360043516602435610533565b34801561020f57600080fd5b50610218610557565b60408051918252519081900360200190f35b34801561023657600080fd5b50610141600160a060020a036004358116906024351660443561055d565b34801561026057600080fd5b50610269610583565b6040805160ff9092168252519081900360200190f35b34801561028b57600080fd5b50610218610588565b3480156102a057600080fd5b506102a961058e565b005b3480156102b757600080fd5b50610141600160a060020a03600435166024356105eb565b3480156102db57600080fd5b506102a9600435610647565b3480156102f357600080fd5b50610141610725565b34801561030857600080fd5b50610141600160a060020a036004351660243561072e565b34801561032c57600080fd5b50610218600160a060020a036004351661074b565b34801561034d57600080fd5b50610141610766565b34801561036257600080fd5b50604080516020600480358082013583810280860185019096528085526101419536959394602494938501929182918501908490808284375094975050933594506107ea9350505050565b3480156103b957600080fd5b506102a961096a565b3480156103ce57600080fd5b506103d76109c9565b60408051600160a060020a039092168252519081900360200190f35b3480156103ff57600080fd5b5061016a6109d8565b34801561041457600080fd5b50610141600160a060020a0360043516602435610a33565b34801561043857600080fd5b50610141600160a060020a0360043516602435610a50565b34801561045c57600080fd5b50610218600160a060020a0360043581169060243516610a6d565b34801561048357600080fd5b506102a9600160a060020a0360043516610a98565b60055460a060020a900460ff1681565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561052b5780601f106105005761010080835404028352916020019161052b565b820191906000526020600020905b81548152906001019060200180831161050e57829003601f168201915b505050505081565b60075460009060ff161561054657600080fd5b6105508383610aea565b9392505050565b60015490565b60075460009060ff161561057057600080fd5b61057b848484610b50565b949350505050565b601281565b60065481565b600554600160a060020a031633146105a557600080fd5b60075460ff1615156105b657600080fd5b6007805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600554600090600160a060020a0316331461060557600080fd5b60055460a060020a900460ff161561061c57600080fd5b600654600154610632908463ffffffff610cb516565b111561063d57600080fd5b6105508383610cd2565b3360009081526020819052604081205482111561066357600080fd5b5033600081815260208190526040902054610684908363ffffffff610dca16565b600160a060020a0382166000908152602081905260409020556001546106b0908363ffffffff610dca16565b600155604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518381529051600091600160a060020a038416916000805160206110248339815191529181900360200190a35050565b60075460ff1681565b60075460009060ff161561074157600080fd5b6105508383610ddf565b600160a060020a031660009081526020819052604090205490565b600554600090600160a060020a0316331461078057600080fd5b60055460a060020a900460ff161561079757600080fd5b6005805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60075460009081908190819060ff161561080357600080fd5b85519250610817858463ffffffff610ecf16565b91506000831161082657600080fd5b6000851180156108455750336000908152602081905260409020548211155b151561085057600080fd5b33600090815260208190526040902054610870908363ffffffff610dca16565b3360009081526020819052604081209190915590505b8281101561095e576108d28560008089858151811015156108a357fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff610cb516565b60008088848151811015156108e357fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055855186908290811061091457fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020611024833981519152876040518082815260200191505060405180910390a3600101610886565b50600195945050505050565b600554600160a060020a0316331461098157600080fd5b60075460ff161561099157600080fd5b6007805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600554600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561052b5780601f106105005761010080835404028352916020019161052b565b60075460009060ff1615610a4657600080fd5b6105508383610efd565b60075460009060ff1615610a6357600080fd5b6105508383610f8a565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600554600160a060020a03163314610aaf57600080fd5b600160a060020a03811615610ae7576005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a0383161515610b6757600080fd5b600160a060020a038416600090815260208190526040902054821115610b8c57600080fd5b600160a060020a0384166000908152600460209081526040808320338452909152902054821115610bbc57600080fd5b600160a060020a038416600090815260208190526040902054610be5908363ffffffff610dca16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610c1a908363ffffffff610cb516565b600160a060020a03808516600090815260208181526040808320949094559187168152600482528281203382529091522054610c5c908363ffffffff610dca16565b600160a060020a0380861660008181526004602090815260408083203384528252918290209490945580518681529051928716939192600080516020611024833981519152929181900390910190a35060019392505050565b600082820183811015610cc757600080fd5b8091505b5092915050565b600554600090600160a060020a03163314610cec57600080fd5b60055460a060020a900460ff1615610d0357600080fd5b600154610d16908363ffffffff610cb516565b600155600160a060020a038316600090815260208190526040902054610d42908363ffffffff610cb516565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206110248339815191529181900360200190a350600192915050565b600082821115610dd957600080fd5b50900390565b336000908152600460209081526040808320600160a060020a038616845290915281205480831115610e3457336000908152600460209081526040808320600160a060020a0388168452909152812055610e69565b610e44818463ffffffff610dca16565b336000908152600460209081526040808320600160a060020a03891684529091529020555b336000818152600460209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600080831515610ee25760009150610ccb565b50828202828482811515610ef257fe5b0414610cc757600080fd5b6000600160a060020a0383161515610f1457600080fd5b33600090815260208190526040902054821115610f3057600080fd5b3360008181526020818152604080832080548790039055600160a060020a0387168084529281902080548701905580518681529051929392600080516020611024833981519152929181900390910190a350600192915050565b336000908152600460209081526040808320600160a060020a0386168452909152812054610fbe908363ffffffff610cb516565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209bee523ccafda410b8675ef2617b26c0222904dec13c44bb0f9af4b54bfe7e640029

Deployed Bytecode Sourcemap

13806:793:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9723:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9723:35:0;;;;;;;;;;;;;;;;;;;;;;4101:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4101:18: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;4101:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11736:141;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11736:141:0;-1:-1:-1;;;;;11736:141:0;;;;;;;4212:88;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4212:88:0;;;;;;;;;;;;;;;;;;;;11567:163;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11567:163:0;-1:-1:-1;;;;;11567:163:0;;;;;;;;;;;;13876:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13876:35:0;;;;;;;;;;;;;;;;;;;;;;;10780:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10780:18:0;;;;2863:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2863:98:0;;;;;;11132:181;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11132:181:0;-1:-1:-1;;;;;11132:181:0;;;;;;;13321:478;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13321:478:0;;;;;2239:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2239:26:0;;;;12063:184;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12063:184:0;-1:-1:-1;;;;;12063:184:0;;;;;;;4959:112;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4959:112:0;-1:-1:-1;;;;;4959:112:0;;;;;10479:147;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10479:147:0;;;;12272:637;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12272:637:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12272:637:0;;-1:-1:-1;;12272:637:0;;;-1:-1:-1;12272:637:0;;-1:-1:-1;;;;12272:637:0;2680:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2680:96:0;;;;1288:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1288:20:0;;;;;;;;-1:-1:-1;;;;;1288:20:0;;;;;;;;;;;;;;4126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4126:20:0;;;;11427:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11427:134:0;-1:-1:-1;;;;;11427:134:0;;;;;;;11883:174;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11883:174:0;-1:-1:-1;;;;;11883:174:0;;;;;;;7453:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7453:131:0;-1:-1:-1;;;;;7453:131:0;;;;;;;;;;1818:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1818:143:0;-1:-1:-1;;;;;1818:143:0;;;;;9723:35;;;-1:-1:-1;;;9723:35:0;;;;;:::o;4101:18::-;;;;;;;;;;;;;;-1:-1:-1;;4101:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11736:141::-;2415:6;;11817:4;;2415:6;;2414:7;2406:16;;;;;;11840:31;11854:8;11864:6;11840:13;:31::i;:::-;11833:38;11736:141;-1:-1:-1;;;11736:141:0:o;4212:88::-;4282:12;;4212:88;:::o;11567:163::-;2415:6;;11663:4;;2415:6;;2414:7;2406:16;;;;;;11686:38;11705:5;11712:3;11717:6;11686:18;:38::i;:::-;11679:45;11567:163;-1:-1:-1;;;;11567:163:0:o;13876:35::-;13909:2;13876:35;:::o;10780:18::-;;;;:::o;2863:98::-;1629:5;;-1:-1:-1;;;;;1629:5:0;1615:10;:19;1607:28;;;;;;2575:6;;;;2567:15;;;;;;;;2920:6;:14;;-1:-1:-1;;2920:14:0;;;2946:9;;;;2929:5;;2946:9;2863:98::o;11132:181::-;1629:5;;11210:4;;-1:-1:-1;;;;;1629:5:0;1615:10;:19;1607:28;;;;;;9802:15;;-1:-1:-1;;;9802:15:0;;;;9801:16;9793:25;;;;;;11263:3;;11234:12;;:25;;11251:7;11234:25;:16;:25;:::i;:::-;:32;;11226:41;;;;;;11283:24;11294:3;11299:7;11283:10;:24::i;13321:478::-;13392:10;13586:14;13383:20;;;;;;;;;;;13373:30;;;13365:39;;;;;;-1:-1:-1;13603:10:0;13639:8;:16;;;;;;;;;;;:28;;13660:6;13639:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;13620:16:0;;:8;:16;;;;;;;;;;:47;13689:12;;:24;;13706:6;13689:24;:16;:24;:::i;:::-;13674:12;:39;13725:20;;;;;;;;-1:-1:-1;;;;;13725:20:0;;;;;;;;;;;;;13757:36;;;;;;;;13782:1;;-1:-1:-1;;;;;13757:36:0;;;-1:-1:-1;;;;;;;;;;;13757:36:0;;;;;;;;13321:478;;:::o;2239:26::-;;;;;;:::o;12063:184::-;2415:6;;12160:12;;2415:6;;2414:7;2406:16;;;;;;12191:50;12214:8;12224:16;12191:22;:50::i;4959:112::-;-1:-1:-1;;;;;5049:16:0;5015:15;5049:16;;;;;;;;;;;;4959:112::o;10479:147::-;1629:5;;10538:4;;-1:-1:-1;;;;;1629:5:0;1615:10;:19;1607:28;;;;;;9802:15;;-1:-1:-1;;;9802:15:0;;;;9801:16;9793:25;;;;;;10554:15;:22;;-1:-1:-1;;10554:22:0;-1:-1:-1;;;10554:22:0;;;10588:14;;;;10554:22;;10588:14;-1:-1:-1;10616:4:0;10479:147;:::o;12272:637::-;2415:6;;12363:4;;;;;;;;2415:6;;2414:7;2406:16;;;;;;12400:17;;;-1:-1:-1;12441:34:0;:6;12400:17;12441:34;:10;:34;:::i;:::-;12424:51;-1:-1:-1;12568:1:0;12552:17;;12544:26;;;;;;12594:1;12585:6;:10;:44;;;;-1:-1:-1;12608:10:0;12599:8;:20;;;;;;;;;;;:30;-1:-1:-1;12599:30:0;12585:44;12577:53;;;;;;;;12671:10;12662:8;:20;;;;;;;;;;;:32;;12687:6;12662:32;:24;:32;:::i;:::-;12648:10;12639:8;:20;;;;;;;;;;:55;;;;:8;-1:-1:-1;12701:185:0;12722:13;12718:1;:17;12701:185;;;12784:35;12812:6;12784:8;:23;12793:10;12804:1;12793:13;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12784:23:0;;;;;;;;;;;-1:-1:-1;12784:23:0;;;:35;:27;:35;:::i;:::-;12758:8;:23;12767:10;12778:1;12767:13;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12758:23:0;;;;;;;;;;;-1:-1:-1;12758:23:0;:61;12856:13;;:10;;12867:1;;12856:13;;;;;;;;;;;;;;-1:-1:-1;;;;;12835:43:0;12844:10;-1:-1:-1;;;;;12835:43:0;-1:-1:-1;;;;;;;;;;;12871:6:0;12835:43;;;;;;;;;;;;;;;;;;12737:3;;12701:185;;;-1:-1:-1;12899:4:0;;12272:637;-1:-1:-1;;;;;12272:637:0:o;2680:96::-;1629:5;;-1:-1:-1;;;;;1629:5:0;1615:10;:19;1607:28;;;;;;2415:6;;;;2414:7;2406:16;;;;;;2738:6;:13;;-1:-1:-1;;2738:13:0;2747:4;2738:13;;;2763:7;;;;2738:6;;2763:7;2680:96::o;1288:20::-;;;-1:-1:-1;;;;;1288:20:0;;:::o;4126:::-;;;;;;;;;;;;;;;-1:-1:-1;;4126:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11427:134;2415:6;;11505:4;;2415:6;;2414:7;2406:16;;;;;;11528:27;11543:3;11548:6;11528:14;:27::i;11883:174::-;2415:6;;11975:12;;2415:6;;2414:7;2406:16;;;;;;12006:45;12029:8;12039:11;12006:22;:45::i;7453:131::-;-1:-1:-1;;;;;7553:15:0;;;7527:7;7553:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7453:131::o;1818:143::-;1629:5;;-1:-1:-1;;;;;1629:5:0;1615:10;:19;1607:28;;;;;;-1:-1:-1;;;;;1894:22:0;;;1890:66;;1932:5;:16;;-1:-1:-1;;1932:16:0;-1:-1:-1;;;;;1932:16:0;;;;;1890:66;1818:143;:::o;6867:195::-;6958:10;6934:4;6950:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6950:29:0;;;;;;;;;;;:38;;;7000;;;;;;;6934:4;;6950:29;;6958:10;;7000:38;;;;;;;;-1:-1:-1;7052:4:0;6867:195;;;;:::o;5699:457::-;5781:4;-1:-1:-1;;;;;5805:17:0;;;;5797:26;;;;;;-1:-1:-1;;;;;5848:15:0;;:8;:15;;;;;;;;;;;5838:25;;;5830:34;;;;;;-1:-1:-1;;;;;5889:14:0;;;;;;:7;:14;;;;;;;;5904:10;5889:26;;;;;;;;5879:36;;;5871:45;;;;;;-1:-1:-1;;;;;5943:15:0;;:8;:15;;;;;;;;;;;:27;;5963:6;5943:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5925:15:0;;;:8;:15;;;;;;;;;;;:45;;;;5993:13;;;;;;;:25;;6011:6;5993:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5977:13:0;;;:8;:13;;;;;;;;;;;:41;;;;6054:14;;;;;:7;:14;;;;;6069:10;6054:26;;;;;;;:38;;6085:6;6054:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;6025:14:0;;;;;;;:7;:14;;;;;;;;6040:10;6025:26;;;;;;;;:67;;;;6104:28;;;;;;;;;;;6025:14;;-1:-1:-1;;;;;;;;;;;6104:28:0;;;;;;;;;;-1:-1:-1;6146:4:0;5699:457;;;;;:::o;1121:137::-;1179:7;1210:5;;;1230:6;;;;1222:15;;;;;;1251:1;1244:8;;1121:137;;;;;;:::o;10076:283::-;1629:5;;10154:4;;-1:-1:-1;;;;;1629:5:0;1615:10;:19;1607:28;;;;;;9802:15;;-1:-1:-1;;;9802:15:0;;;;9801:16;9793:25;;;;;;10185:12;;:25;;10202:7;10185:25;:16;:25;:::i;:::-;10170:12;:40;-1:-1:-1;;;;;10233:13:0;;:8;:13;;;;;;;;;;;:26;;10251:7;10233:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;10217:13:0;;:8;:13;;;;;;;;;;;;:42;;;;10271:18;;;;;;;10217:13;;10271:18;;;;;;;;;10301:34;;;;;;;;-1:-1:-1;;;;;10301:34:0;;;10318:1;;-1:-1:-1;;;;;;;;;;;10301:34:0;;;;;;;;-1:-1:-1;10349:4:0;10076:283;;;;:::o;937:117::-;995:7;1022:6;;;;1014:15;;;;;;-1:-1:-1;1043:5:0;;;937:117::o;8902:430::-;9025:10;8985:4;9017:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9017:29:0;;;;;;;;;;9057:27;;;9053:183;;;9108:10;9132:1;9100:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9100:29:0;;;;;;;;;:33;9053:183;;;9198:30;:8;9211:16;9198:30;:12;:30;:::i;:::-;9174:10;9166:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9166:29:0;;;;;;;;;:62;9053:183;9256:10;9278:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9247:61:0;;9278:29;;;;;;;;;;;9247:61;;;;;;;;;9256:10;9247:61;;;;;;;;;;;-1:-1:-1;9322:4:0;;8902:430;-1:-1:-1;;;8902:430:0:o;264:189::-;322:7;;345:6;;341:42;;;374:1;367:8;;;;341:42;-1:-1:-1;401:5:0;;;405:1;401;:5;421;;;;;;;;:10;413:19;;;;;4461:289;4524:4;-1:-1:-1;;;;;4548:17:0;;;;4540:26;;;;;;4600:10;4591:8;:20;;;;;;;;;;;4581:30;;;4573:39;;;;;;4630:10;4621:8;:20;;;;;;;;;;;:30;;;;;;;-1:-1:-1;;;;;4658:13:0;;;;;;;;;:23;;;;;;4693:33;;;;;;;4658:13;;4630:10;-1:-1:-1;;;;;;;;;;;4693:33:0;;;;;;;;;;-1:-1:-1;4740:4:0;4461:289;;;;:::o;8106:269::-;8240:10;8184:4;8232:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8232:29:0;;;;;;;;;;:46;;8266:11;8232:46;:33;:46;:::i;:::-;8208:10;8200:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8200:29:0;;;;;;;;;;;;:78;;;8290:61;;;;;;8200:29;;8290:61;;;;;;;;;;;-1:-1:-1;8365:4:0;8106:269;;;;:::o

Swarm Source

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