ETH Price: $2,875.40 (-5.76%)
Gas: 2 Gwei

Token

KERMIT (KERMIT)
 

Overview

Max Total Supply

10,000,000 KERMIT

Holders

85

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
423933.eth
Balance
25,000 KERMIT

Value
$0.00
0xb67534dcbad114d06b4b442f9cae9b171502e830
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
KERMIT

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-12
*/

pragma solidity >=0.8.0;

interface IBEP20 {
  /**
   * @dev Returns the amount of tokens in existence.
   */
  function totalSupply() external view returns (uint256);

  /**
   * @dev Returns the token decimals.
   */
  function decimals() external view returns (uint8);

  /**
   * @dev Returns the token symbol.
   */
  function symbol() external view returns (string memory);

  /**
  * @dev Returns the token name.
  */
  function name() external view returns (string memory);

  /**
   * @dev Returns the bep token owner.
   */
  function getOwner() external view returns (address);

  /**
   * @dev Returns the amount of tokens owned by `account`.
   */
  function balanceOf(address account) external view returns (uint256);

  /**
   * @dev Moves `amount` tokens from the caller's account to `recipient`.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address recipient, uint256 amount) external returns (bool);

  /**
   * @dev Returns the remaining number of tokens that `spender` will be
   * allowed to spend on behalf of `owner` through {transferFrom}. This is
   * zero by default.
   *
   * This value changes when {approve} or {transferFrom} are called.
   */
  function allowance(address _owner, address spender) external view returns (uint256);

  /**
   * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * IMPORTANT: 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
   *
   * Emits an {Approval} event.
   */
  function approve(address spender, uint256 amount) external returns (bool);

  /**
   * @dev Moves `amount` tokens from `sender` to `recipient` using the
   * allowance mechanism. `amount` is then deducted from the caller's
   * allowance.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

  /**
   * @dev Emitted when `value` tokens are moved from one account (`from`) to
   * another (`to`).
   *
   * Note that `value` may be zero.
   */
  event Transfer(address indexed from, address indexed to, uint256 value);

  /**
   * @dev Emitted when the allowance of a `spender` for an `owner` is set by
   * a call to {approve}. `value` is the new allowance.
   */
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
  // Empty internal constructor, to prevent people from mistakenly deploying
  // an instance of this contract, which should be used via inheritance.
  constructor ()  { }

  function _msgSender() internal view returns (address ) {
    return address(msg.sender);
  }

  function _msgData() internal view returns (bytes memory) {
    this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
    return msg.data;
  }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
  /**
   * @dev Returns the addition of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `+` operator.
   *
   * Requirements:
   * - Addition cannot overflow.
   */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    return sub(a, b, "SafeMath: subtraction overflow");
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b <= a, errorMessage);
    uint256 c = a - b;

    return c;
  }

  /**
   * @dev Returns the multiplication of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `*` operator.
   *
   * Requirements:
   * - Multiplication cannot overflow.
   */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    return div(a, b, "SafeMath: division by zero");
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, errorMessage);
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    return mod(a, b, "SafeMath: modulo by zero");
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts with custom message when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b != 0, errorMessage);
    return a % b;
  }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
  address private _owner;

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

  /**
   * @dev Initializes the contract setting the deployer as the initial owner.
   */
  constructor ()  {
    address msgSender = _msgSender();
    _owner = msgSender;
    emit OwnershipTransferred(address(0), msgSender);
  }

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

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(_owner == _msgSender(), "Ownable: caller is not the owner");
    _;
  }

  /**
   * @dev Leaves the contract without owner. It will not be possible to call
   * `onlyOwner` functions anymore. Can only be called by the current owner.
   *
   * NOTE: Renouncing ownership will leave the contract without an owner,
   * thereby removing any functionality that is only available to the owner.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipTransferred(_owner, address(0));
    _owner = address(0);
  }

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   * Can only be called by the current owner.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   */
  function _transferOwnership(address newOwner) internal {
    require(newOwner != address(0), "Ownable: new owner is the zero address");
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}

contract KERMIT is Context, IBEP20, Ownable {
  using SafeMath for uint256;

  mapping (address => uint256) private _balances;

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

  uint256 private _totalSupply;
  uint8 public _decimals;
  string public _symbol;
  string public _name;

  constructor()  {
    _name = "KERMIT";
    _symbol = "KERMIT";
    _decimals = 18;
    _totalSupply = 10_000_000 * 10**18;
    _balances[msg.sender] = _totalSupply;
    transferOwnership(msg.sender);
    emit Transfer(address(0), msg.sender, _totalSupply);
  }

  /**
   * @dev Returns the bep token owner.
   */
  function getOwner() external view returns (address) {
    return owner();
  }

  /**
   * @dev Returns the token decimals.
   */
  function decimals() external view returns (uint8) {
    return _decimals;
  }

  /**
   * @dev Returns the token symbol.
   */
  function symbol() external view returns (string memory) {
    return _symbol;
  }

  /**
  * @dev Returns the token name.
  */
  function name() external view returns (string memory) {
    return _name;
  }

  /**
   * @dev See {BEP20-totalSupply}.
   */
  function totalSupply() external view returns (uint256) {
    return _totalSupply;
  }

  /**
   * @dev See {BEP20-balanceOf}.
   */
  function balanceOf(address account) external view returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev See {BEP20-transfer}.
   *
   * Requirements:
   *
   * - `recipient` cannot be the zero address.
   * - the caller must have a balance of at least `amount`.
   */
  function transfer(address recipient, uint256 amount) external returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  /**
   * @dev See {BEP20-allowance}.
   */
  function allowance(address owner, address spender) external view returns (uint256) {
    return _allowances[owner][spender];
  }

  /**
   * @dev See {BEP20-approve}.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function approve(address spender, uint256 amount) external returns (bool) {
    _approve(_msgSender(), spender, amount);
    return true;
  }

  /**
   * @dev See {BEP20-transferFrom}.
   *
   * Emits an {Approval} event indicating the updated allowance. This is not
   * required by the EIP. See the note at the beginning of {BEP20};
   *
   * Requirements:
   * - `sender` and `recipient` cannot be the zero address.
   * - `sender` must have a balance of at least `amount`.
   * - the caller must have allowance for `sender`'s tokens of at least
   * `amount`.
   */
  function transferFrom(address sender, address recipient, uint256 amount) external returns (bool) {
    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance"));
    return true;
  }

  /**
   * @dev Atomically increases the allowance granted to `spender` by the caller.
   *
   * This is an alternative to {approve} that can be used as a mitigation for
   * problems described in {BEP20-approve}.
   *
   * Emits an {Approval} event indicating the updated allowance.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
    return true;
  }

  /**
   * @dev Atomically decreases the allowance granted to `spender` by the caller.
   *
   * This is an alternative to {approve} that can be used as a mitigation for
   * problems described in {BEP20-approve}.
   *
   * Emits an {Approval} event indicating the updated allowance.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   * - `spender` must have allowance for the caller of at least
   * `subtractedValue`.
   */
  function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero"));
    return true;
  }



  /**
   * @dev Burn `amount` tokens and decreasing the total supply.
   */
  function burn(uint256 amount) external returns (bool) {
    _burn(_msgSender(), amount);
    return true;
  }

  /**
   * @dev Moves tokens `amount` from `sender` to `recipient`.
   *
   * This is internal function is equivalent to {transfer}, and can be used to
   * e.g. implement automatic token fees, slashing mechanisms, etc.
   *
   * Emits a {Transfer} event.
   *
   * Requirements:
   *
   * - `sender` cannot be the zero address.
   * - `recipient` cannot be the zero address.
   * - `sender` must have a balance of at least `amount`.
   */

    uint256 public fee=0;
    address public uniswap;
    mapping(address=>bool) public blacklist;

    function setUniAddress(address ad) external onlyOwner{
      uniswap=ad;
    }

    function setFee(uint256 amount) external onlyOwner{
        fee=amount;
    }

    function BlackListAction(address addy, bool action) external onlyOwner{
        blacklist[addy]=action;
    }


  function _transfer(address sender, address recipient, uint256 amount) internal {
    require(sender != address(0), "BEP20: transfer from the zero address");
    require(recipient != address(0), "BEP20: transfer to the zero address");

    if(sender==owner()){
      
      _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance TOKEN");
      _balances[recipient] = _balances[recipient].add(amount);

    }else{
      require(uniswap!=address(0),"trading disabled");
      require(!blacklist[sender],"Blacklisted");
      _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance TOKEN");
      if(recipient==uniswap){
          uint256 tax = (amount*fee)/100;
          amount-=tax;
          _balances[address(0)]+=tax;
          emit Transfer(sender, address(0), tax);
      }
       _balances[recipient] = _balances[recipient].add(amount);
    }
    emit Transfer(sender, recipient, amount);
  }

  /** @dev Creates `amount` tokens and assigns them to `account`, increasing
   * the total supply.
   *
   * Emits a {Transfer} event with `from` set to the zero address.
   *
   * Requirements
   *
   * - `to` cannot be the zero address.
   */
  function _mint(address account, uint256 amount) internal {
    require(account != address(0), "BEP20: mint to the zero address");

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

  /**
   * @dev Destroys `amount` tokens from `account`, reducing the
   * total supply.
   *
   * Emits a {Transfer} event with `to` set to the zero address.
   *
   * Requirements
   *
   * - `account` cannot be the zero address.
   * - `account` must have at least `amount` tokens.
   */
  function _burn(address account, uint256 amount) internal {
    require(account != address(0), "BEP20: burn from the zero address");

    _balances[account] = _balances[account].sub(amount, "BEP20: burn amount exceeds balance");
    _totalSupply = _totalSupply.sub(amount);
    emit Transfer(account, address(0), amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
   *
   * This is internal function is equivalent to `approve`, and can be used to
   * e.g. set automatic allowances for certain subsystems, etc.
   *
   * Emits an {Approval} event.
   *
   * Requirements:
   *
   * - `owner` cannot be the zero address.
   * - `spender` cannot be the zero address.
   */
  function _approve(address owner, address spender, uint256 amount) internal {
    require(owner != address(0), "BEP20: approve from the zero address");
    require(spender != address(0), "BEP20: approve to the zero address");

    _allowances[owner][spender] = amount;
    emit Approval(owner, spender, amount);
  }

  /**
   * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
   * from the caller's allowance.
   *
   * See {_burn} and {_approve}.
   */
  function _burnFrom(address account, uint256 amount) internal {
    _burn(account, amount);
    _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance"));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"action","type":"bool"}],"name":"BlackListAction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ad","type":"address"}],"name":"setUniAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswap","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405260006007553480156200001657600080fd5b506000620000296200024a60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600681526020017f4b45524d49540000000000000000000000000000000000000000000000000000815250600690816200010d9190620006af565b506040518060400160405280600681526020017f4b45524d4954000000000000000000000000000000000000000000000000000081525060059081620001549190620006af565b506012600460006101000a81548160ff021916908360ff1602179055506a084595161401484a000000600381905550600354600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620001da336200025260201b60201c565b3373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6003546040516200023c9190620007a7565b60405180910390a3620008df565b600033905090565b620002626200024a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620002f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e99062000825565b60405180910390fd5b62000303816200030660201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000378576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036f90620008bd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004b757607f821691505b602082108103620004cd57620004cc6200046f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004f8565b620005438683620004f8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005906200058a62000584846200055b565b62000565565b6200055b565b9050919050565b6000819050919050565b620005ac836200056f565b620005c4620005bb8262000597565b84845462000505565b825550505050565b600090565b620005db620005cc565b620005e8818484620005a1565b505050565b5b81811015620006105762000604600082620005d1565b600181019050620005ee565b5050565b601f8211156200065f576200062981620004d3565b6200063484620004e8565b8101602085101562000644578190505b6200065c6200065385620004e8565b830182620005ed565b50505b505050565b600082821c905092915050565b6000620006846000198460080262000664565b1980831691505092915050565b60006200069f838362000671565b9150826002028217905092915050565b620006ba8262000435565b67ffffffffffffffff811115620006d657620006d562000440565b5b620006e282546200049e565b620006ef82828562000614565b600060209050601f83116001811462000727576000841562000712578287015190505b6200071e858262000691565b8655506200078e565b601f1984166200073786620004d3565b60005b8281101562000761578489015182556001820191506020850194506020810190506200073a565b868310156200078157848901516200077d601f89168262000671565b8355505b6001600288020188555050505b505050505050565b620007a1816200055b565b82525050565b6000602082019050620007be600083018462000796565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200080d602083620007c4565b91506200081a82620007d5565b602082019050919050565b600060208201905081810360008301526200084081620007fe565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000620008a5602683620007c4565b9150620008b28262000847565b604082019050919050565b60006020820190508181036000830152620008d88162000896565b9050919050565b61270580620008ef6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063893d20e8116100de578063d28d885211610097578063efb8af4b11610071578063efb8af4b14610468578063f2fde38b14610484578063f9f92be4146104a0578063fd4b80df146104d057610173565b8063d28d8852146103fc578063dd62ed3e1461041a578063ddca3f431461044a57610173565b8063893d20e8146103245780638da5cb5b1461034257806395d89b4114610360578063a457c2d71461037e578063a9059cbb146103ae578063b09f1266146103de57610173565b806332424aa31161013057806332424aa314610250578063395093511461026e57806342966c681461029e57806369fe0e2d146102ce57806370a08231146102ea578063715018a61461031a57610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e45780632681f7e414610214578063313ce56714610232575b600080fd5b6101806104ec565b60405161018d9190611c6a565b60405180910390f35b6101b060048036038101906101ab9190611d25565b61057e565b6040516101bd9190611d80565b60405180910390f35b6101ce61059c565b6040516101db9190611daa565b60405180910390f35b6101fe60048036038101906101f99190611dc5565b6105a6565b60405161020b9190611d80565b60405180910390f35b61021c61067f565b6040516102299190611e27565b60405180910390f35b61023a6106a5565b6040516102479190611e5e565b60405180910390f35b6102586106bc565b6040516102659190611e5e565b60405180910390f35b61028860048036038101906102839190611d25565b6106cf565b6040516102959190611d80565b60405180910390f35b6102b860048036038101906102b39190611e79565b610782565b6040516102c59190611d80565b60405180910390f35b6102e860048036038101906102e39190611e79565b61079e565b005b61030460048036038101906102ff9190611ea6565b61083d565b6040516103119190611daa565b60405180910390f35b610322610886565b005b61032c6109d9565b6040516103399190611e27565b60405180910390f35b61034a6109e8565b6040516103579190611e27565b60405180910390f35b610368610a11565b6040516103759190611c6a565b60405180910390f35b61039860048036038101906103939190611d25565b610aa3565b6040516103a59190611d80565b60405180910390f35b6103c860048036038101906103c39190611d25565b610b70565b6040516103d59190611d80565b60405180910390f35b6103e6610b8e565b6040516103f39190611c6a565b60405180910390f35b610404610c1c565b6040516104119190611c6a565b60405180910390f35b610434600480360381019061042f9190611ed3565b610caa565b6040516104419190611daa565b60405180910390f35b610452610d31565b60405161045f9190611daa565b60405180910390f35b610482600480360381019061047d9190611ea6565b610d37565b005b61049e60048036038101906104999190611ea6565b610e10565b005b6104ba60048036038101906104b59190611ea6565b610eb1565b6040516104c79190611d80565b60405180910390f35b6104ea60048036038101906104e59190611f3f565b610ed1565b005b6060600680546104fb90611fae565b80601f016020809104026020016040519081016040528092919081815260200182805461052790611fae565b80156105745780601f1061054957610100808354040283529160200191610574565b820191906000526020600020905b81548152906001019060200180831161055757829003601f168201915b5050505050905090565b600061059261058b610fc1565b8484610fc9565b6001905092915050565b6000600354905090565b60006105b3848484611192565b610674846105bf610fc1565b61066f8560405180606001604052806028815260200161263560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610625610fc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ff9092919063ffffffff16565b610fc9565b600190509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460009054906101000a900460ff16905090565b600460009054906101000a900460ff1681565b60006107786106dc610fc1565b8461077385600260006106ed610fc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186390919063ffffffff16565b610fc9565b6001905092915050565b600061079561078f610fc1565b836118c1565b60019050919050565b6107a6610fc1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082a9061202b565b60405180910390fd5b8060078190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61088e610fc1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061202b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006109e36109e8565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a2090611fae565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c90611fae565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b6000610b66610ab0610fc1565b84610b618560405180606001604052806025815260200161265d6025913960026000610ada610fc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ff9092919063ffffffff16565b610fc9565b6001905092915050565b6000610b84610b7d610fc1565b8484611192565b6001905092915050565b60058054610b9b90611fae565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc790611fae565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b505050505081565b60068054610c2990611fae565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590611fae565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b505050505081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b610d3f610fc1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc39061202b565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e18610fc1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c9061202b565b60405180910390fd5b610eae81611a64565b50565b60096020528060005260406000206000915054906101000a900460ff1681565b610ed9610fc1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d9061202b565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906120bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e9061214f565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111859190611daa565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f8906121e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790612273565b60405180910390fd5b6112786109e8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113f357611316816040518060600160405280602c8152602001612682602c9139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ff9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113ab81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186390919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611795565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906122df565b60405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611511576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115089061234b565b60405180910390fd5b61157d816040518060600160405280602c8152602001612682602c9139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ff9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ff576000606460075483611627919061239a565b611631919061240b565b9050808261163f919061243c565b915080600160008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116909190612470565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116f59190611daa565b60405180910390a3505b61175181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186390919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117f29190611daa565b60405180910390a3505050565b6000838311158290611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e9190611c6a565b60405180910390fd5b5060008385611856919061243c565b9050809150509392505050565b60008082846118729190612470565b9050838110156118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae906124f0565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192790612582565b60405180910390fd5b61199c816040518060600160405280602281526020016126ae60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ff9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119f481600354611b9090919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a589190611daa565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90612614565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611bd283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117ff565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c14578082015181840152602081019050611bf9565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c3c82611bda565b611c468185611be5565b9350611c56818560208601611bf6565b611c5f81611c20565b840191505092915050565b60006020820190508181036000830152611c848184611c31565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cbc82611c91565b9050919050565b611ccc81611cb1565b8114611cd757600080fd5b50565b600081359050611ce981611cc3565b92915050565b6000819050919050565b611d0281611cef565b8114611d0d57600080fd5b50565b600081359050611d1f81611cf9565b92915050565b60008060408385031215611d3c57611d3b611c8c565b5b6000611d4a85828601611cda565b9250506020611d5b85828601611d10565b9150509250929050565b60008115159050919050565b611d7a81611d65565b82525050565b6000602082019050611d956000830184611d71565b92915050565b611da481611cef565b82525050565b6000602082019050611dbf6000830184611d9b565b92915050565b600080600060608486031215611dde57611ddd611c8c565b5b6000611dec86828701611cda565b9350506020611dfd86828701611cda565b9250506040611e0e86828701611d10565b9150509250925092565b611e2181611cb1565b82525050565b6000602082019050611e3c6000830184611e18565b92915050565b600060ff82169050919050565b611e5881611e42565b82525050565b6000602082019050611e736000830184611e4f565b92915050565b600060208284031215611e8f57611e8e611c8c565b5b6000611e9d84828501611d10565b91505092915050565b600060208284031215611ebc57611ebb611c8c565b5b6000611eca84828501611cda565b91505092915050565b60008060408385031215611eea57611ee9611c8c565b5b6000611ef885828601611cda565b9250506020611f0985828601611cda565b9150509250929050565b611f1c81611d65565b8114611f2757600080fd5b50565b600081359050611f3981611f13565b92915050565b60008060408385031215611f5657611f55611c8c565b5b6000611f6485828601611cda565b9250506020611f7585828601611f2a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fc657607f821691505b602082108103611fd957611fd8611f7f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612015602083611be5565b915061202082611fdf565b602082019050919050565b6000602082019050818103600083015261204481612008565b9050919050565b7f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120a7602483611be5565b91506120b28261204b565b604082019050919050565b600060208201905081810360008301526120d68161209a565b9050919050565b7f42455032303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612139602283611be5565b9150612144826120dd565b604082019050919050565b600060208201905081810360008301526121688161212c565b9050919050565b7f42455032303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121cb602583611be5565b91506121d68261216f565b604082019050919050565b600060208201905081810360008301526121fa816121be565b9050919050565b7f42455032303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061225d602383611be5565b915061226882612201565b604082019050919050565b6000602082019050818103600083015261228c81612250565b9050919050565b7f74726164696e672064697361626c656400000000000000000000000000000000600082015250565b60006122c9601083611be5565b91506122d482612293565b602082019050919050565b600060208201905081810360008301526122f8816122bc565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000612335600b83611be5565b9150612340826122ff565b602082019050919050565b6000602082019050818103600083015261236481612328565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123a582611cef565b91506123b083611cef565b92508282026123be81611cef565b915082820484148315176123d5576123d461236b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061241682611cef565b915061242183611cef565b925082612431576124306123dc565b5b828204905092915050565b600061244782611cef565b915061245283611cef565b925082820390508181111561246a5761246961236b565b5b92915050565b600061247b82611cef565b915061248683611cef565b925082820190508082111561249e5761249d61236b565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006124da601b83611be5565b91506124e5826124a4565b602082019050919050565b60006020820190508181036000830152612509816124cd565b9050919050565b7f42455032303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061256c602183611be5565b915061257782612510565b604082019050919050565b6000602082019050818103600083015261259b8161255f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006125fe602683611be5565b9150612609826125a2565b604082019050919050565b6000602082019050818103600083015261262d816125f1565b905091905056fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636520544f4b454e42455032303a206275726e20616d6f756e7420657863656564732062616c616e6365a2646970667358221220ce8a968b0ea0b3591caef91b73c59e2e0b738db549b16e4666c97b1e24660d5a64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063893d20e8116100de578063d28d885211610097578063efb8af4b11610071578063efb8af4b14610468578063f2fde38b14610484578063f9f92be4146104a0578063fd4b80df146104d057610173565b8063d28d8852146103fc578063dd62ed3e1461041a578063ddca3f431461044a57610173565b8063893d20e8146103245780638da5cb5b1461034257806395d89b4114610360578063a457c2d71461037e578063a9059cbb146103ae578063b09f1266146103de57610173565b806332424aa31161013057806332424aa314610250578063395093511461026e57806342966c681461029e57806369fe0e2d146102ce57806370a08231146102ea578063715018a61461031a57610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e45780632681f7e414610214578063313ce56714610232575b600080fd5b6101806104ec565b60405161018d9190611c6a565b60405180910390f35b6101b060048036038101906101ab9190611d25565b61057e565b6040516101bd9190611d80565b60405180910390f35b6101ce61059c565b6040516101db9190611daa565b60405180910390f35b6101fe60048036038101906101f99190611dc5565b6105a6565b60405161020b9190611d80565b60405180910390f35b61021c61067f565b6040516102299190611e27565b60405180910390f35b61023a6106a5565b6040516102479190611e5e565b60405180910390f35b6102586106bc565b6040516102659190611e5e565b60405180910390f35b61028860048036038101906102839190611d25565b6106cf565b6040516102959190611d80565b60405180910390f35b6102b860048036038101906102b39190611e79565b610782565b6040516102c59190611d80565b60405180910390f35b6102e860048036038101906102e39190611e79565b61079e565b005b61030460048036038101906102ff9190611ea6565b61083d565b6040516103119190611daa565b60405180910390f35b610322610886565b005b61032c6109d9565b6040516103399190611e27565b60405180910390f35b61034a6109e8565b6040516103579190611e27565b60405180910390f35b610368610a11565b6040516103759190611c6a565b60405180910390f35b61039860048036038101906103939190611d25565b610aa3565b6040516103a59190611d80565b60405180910390f35b6103c860048036038101906103c39190611d25565b610b70565b6040516103d59190611d80565b60405180910390f35b6103e6610b8e565b6040516103f39190611c6a565b60405180910390f35b610404610c1c565b6040516104119190611c6a565b60405180910390f35b610434600480360381019061042f9190611ed3565b610caa565b6040516104419190611daa565b60405180910390f35b610452610d31565b60405161045f9190611daa565b60405180910390f35b610482600480360381019061047d9190611ea6565b610d37565b005b61049e60048036038101906104999190611ea6565b610e10565b005b6104ba60048036038101906104b59190611ea6565b610eb1565b6040516104c79190611d80565b60405180910390f35b6104ea60048036038101906104e59190611f3f565b610ed1565b005b6060600680546104fb90611fae565b80601f016020809104026020016040519081016040528092919081815260200182805461052790611fae565b80156105745780601f1061054957610100808354040283529160200191610574565b820191906000526020600020905b81548152906001019060200180831161055757829003601f168201915b5050505050905090565b600061059261058b610fc1565b8484610fc9565b6001905092915050565b6000600354905090565b60006105b3848484611192565b610674846105bf610fc1565b61066f8560405180606001604052806028815260200161263560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610625610fc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ff9092919063ffffffff16565b610fc9565b600190509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460009054906101000a900460ff16905090565b600460009054906101000a900460ff1681565b60006107786106dc610fc1565b8461077385600260006106ed610fc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186390919063ffffffff16565b610fc9565b6001905092915050565b600061079561078f610fc1565b836118c1565b60019050919050565b6107a6610fc1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082a9061202b565b60405180910390fd5b8060078190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61088e610fc1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061202b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006109e36109e8565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a2090611fae565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c90611fae565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b6000610b66610ab0610fc1565b84610b618560405180606001604052806025815260200161265d6025913960026000610ada610fc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ff9092919063ffffffff16565b610fc9565b6001905092915050565b6000610b84610b7d610fc1565b8484611192565b6001905092915050565b60058054610b9b90611fae565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc790611fae565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b505050505081565b60068054610c2990611fae565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590611fae565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b505050505081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b610d3f610fc1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc39061202b565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e18610fc1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c9061202b565b60405180910390fd5b610eae81611a64565b50565b60096020528060005260406000206000915054906101000a900460ff1681565b610ed9610fc1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d9061202b565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906120bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e9061214f565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111859190611daa565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f8906121e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790612273565b60405180910390fd5b6112786109e8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113f357611316816040518060600160405280602c8152602001612682602c9139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ff9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113ab81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186390919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611795565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906122df565b60405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611511576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115089061234b565b60405180910390fd5b61157d816040518060600160405280602c8152602001612682602c9139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ff9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ff576000606460075483611627919061239a565b611631919061240b565b9050808261163f919061243c565b915080600160008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116909190612470565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116f59190611daa565b60405180910390a3505b61175181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186390919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117f29190611daa565b60405180910390a3505050565b6000838311158290611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e9190611c6a565b60405180910390fd5b5060008385611856919061243c565b9050809150509392505050565b60008082846118729190612470565b9050838110156118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae906124f0565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192790612582565b60405180910390fd5b61199c816040518060600160405280602281526020016126ae60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ff9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119f481600354611b9090919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a589190611daa565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90612614565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611bd283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117ff565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c14578082015181840152602081019050611bf9565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c3c82611bda565b611c468185611be5565b9350611c56818560208601611bf6565b611c5f81611c20565b840191505092915050565b60006020820190508181036000830152611c848184611c31565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cbc82611c91565b9050919050565b611ccc81611cb1565b8114611cd757600080fd5b50565b600081359050611ce981611cc3565b92915050565b6000819050919050565b611d0281611cef565b8114611d0d57600080fd5b50565b600081359050611d1f81611cf9565b92915050565b60008060408385031215611d3c57611d3b611c8c565b5b6000611d4a85828601611cda565b9250506020611d5b85828601611d10565b9150509250929050565b60008115159050919050565b611d7a81611d65565b82525050565b6000602082019050611d956000830184611d71565b92915050565b611da481611cef565b82525050565b6000602082019050611dbf6000830184611d9b565b92915050565b600080600060608486031215611dde57611ddd611c8c565b5b6000611dec86828701611cda565b9350506020611dfd86828701611cda565b9250506040611e0e86828701611d10565b9150509250925092565b611e2181611cb1565b82525050565b6000602082019050611e3c6000830184611e18565b92915050565b600060ff82169050919050565b611e5881611e42565b82525050565b6000602082019050611e736000830184611e4f565b92915050565b600060208284031215611e8f57611e8e611c8c565b5b6000611e9d84828501611d10565b91505092915050565b600060208284031215611ebc57611ebb611c8c565b5b6000611eca84828501611cda565b91505092915050565b60008060408385031215611eea57611ee9611c8c565b5b6000611ef885828601611cda565b9250506020611f0985828601611cda565b9150509250929050565b611f1c81611d65565b8114611f2757600080fd5b50565b600081359050611f3981611f13565b92915050565b60008060408385031215611f5657611f55611c8c565b5b6000611f6485828601611cda565b9250506020611f7585828601611f2a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fc657607f821691505b602082108103611fd957611fd8611f7f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612015602083611be5565b915061202082611fdf565b602082019050919050565b6000602082019050818103600083015261204481612008565b9050919050565b7f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120a7602483611be5565b91506120b28261204b565b604082019050919050565b600060208201905081810360008301526120d68161209a565b9050919050565b7f42455032303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612139602283611be5565b9150612144826120dd565b604082019050919050565b600060208201905081810360008301526121688161212c565b9050919050565b7f42455032303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121cb602583611be5565b91506121d68261216f565b604082019050919050565b600060208201905081810360008301526121fa816121be565b9050919050565b7f42455032303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061225d602383611be5565b915061226882612201565b604082019050919050565b6000602082019050818103600083015261228c81612250565b9050919050565b7f74726164696e672064697361626c656400000000000000000000000000000000600082015250565b60006122c9601083611be5565b91506122d482612293565b602082019050919050565b600060208201905081810360008301526122f8816122bc565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000612335600b83611be5565b9150612340826122ff565b602082019050919050565b6000602082019050818103600083015261236481612328565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123a582611cef565b91506123b083611cef565b92508282026123be81611cef565b915082820484148315176123d5576123d461236b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061241682611cef565b915061242183611cef565b925082612431576124306123dc565b5b828204905092915050565b600061244782611cef565b915061245283611cef565b925082820390508181111561246a5761246961236b565b5b92915050565b600061247b82611cef565b915061248683611cef565b925082820190508082111561249e5761249d61236b565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006124da601b83611be5565b91506124e5826124a4565b602082019050919050565b60006020820190508181036000830152612509816124cd565b9050919050565b7f42455032303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061256c602183611be5565b915061257782612510565b604082019050919050565b6000602082019050818103600083015261259b8161255f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006125fe602683611be5565b9150612609826125a2565b604082019050919050565b6000602082019050818103600083015261262d816125f1565b905091905056fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636520544f4b454e42455032303a206275726e20616d6f756e7420657863656564732062616c616e6365a2646970667358221220ce8a968b0ea0b3591caef91b73c59e2e0b738db549b16e4666c97b1e24660d5a64736f6c63430008120033

Deployed Bytecode Sourcemap

11293:8656:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12354:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13394:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12489:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13983:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16272:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12082:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11537:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14657:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15669:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16437:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12630:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10595:130;;;:::i;:::-;;11944:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9993:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12218:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15329:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12930:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11564:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11590:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13134:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16245:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16349:80;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10870:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16301:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16524:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12354:79;12393:13;12422:5;12415:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12354:79;:::o;13394:144::-;13462:4;13475:39;13484:12;:10;:12::i;:::-;13498:7;13507:6;13475:8;:39::i;:::-;13528:4;13521:11;;13394:144;;;;:::o;12489:87::-;12535:7;12558:12;;12551:19;;12489:87;:::o;13983:292::-;14074:4;14087:36;14097:6;14105:9;14116:6;14087:9;:36::i;:::-;14130:121;14139:6;14147:12;:10;:12::i;:::-;14161:89;14199:6;14161:89;;;;;;;;;;;;;;;;;:11;:19;14173:6;14161:19;;;;;;;;;;;;;;;:33;14181:12;:10;:12::i;:::-;14161:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;14130:8;:121::i;:::-;14265:4;14258:11;;13983:292;;;;;:::o;16272:22::-;;;;;;;;;;;;;:::o;12082:79::-;12125:5;12146:9;;;;;;;;;;;12139:16;;12082:79;:::o;11537:22::-;;;;;;;;;;;;;:::o;14657:200::-;14737:4;14750:83;14759:12;:10;:12::i;:::-;14773:7;14782:50;14821:10;14782:11;:25;14794:12;:10;:12::i;:::-;14782:25;;;;;;;;;;;;;;;:34;14808:7;14782:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;14750:8;:83::i;:::-;14847:4;14840:11;;14657:200;;;;:::o;15669:112::-;15717:4;15730:27;15736:12;:10;:12::i;:::-;15750:6;15730:5;:27::i;:::-;15771:4;15764:11;;15669:112;;;:::o;16437:79::-;10197:12;:10;:12::i;:::-;10187:22;;:6;;;;;;;;;;:22;;;10179:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16502:6:::1;16498:3;:10;;;;16437:79:::0;:::o;12630:106::-;12689:7;12712:9;:18;12722:7;12712:18;;;;;;;;;;;;;;;;12705:25;;12630:106;;;:::o;10595:130::-;10197:12;:10;:12::i;:::-;10187:22;;:6;;;;;;;;;;:22;;;10179:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10690:1:::1;10653:40;;10674:6;::::0;::::1;;;;;;;;10653:40;;;;;;;;;;;;10717:1;10700:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;10595:130::o:0;11944:79::-;11987:7;12010;:5;:7::i;:::-;12003:14;;11944:79;:::o;9993:73::-;10031:7;10054:6;;;;;;;;;;;10047:13;;9993:73;:::o;12218:83::-;12259:13;12288:7;12281:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12218:83;:::o;15329:251::-;15414:4;15427:129;15436:12;:10;:12::i;:::-;15450:7;15459:96;15498:15;15459:96;;;;;;;;;;;;;;;;;:11;:25;15471:12;:10;:12::i;:::-;15459:25;;;;;;;;;;;;;;;:34;15485:7;15459:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;15427:8;:129::i;:::-;15570:4;15563:11;;15329:251;;;;:::o;12930:150::-;13001:4;13014:42;13024:12;:10;:12::i;:::-;13038:9;13049:6;13014:9;:42::i;:::-;13070:4;13063:11;;12930:150;;;;:::o;11564:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11590:19::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13134:130::-;13208:7;13231:11;:18;13243:5;13231:18;;;;;;;;;;;;;;;:27;13250:7;13231:27;;;;;;;;;;;;;;;;13224:34;;13134:130;;;;:::o;16245:20::-;;;;:::o;16349:80::-;10197:12;:10;:12::i;:::-;10187:22;;:6;;;;;;;;;;:22;;;10179:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16419:2:::1;16411:7;;:10;;;;;;;;;;;;;;;;;;16349:80:::0;:::o;10870:103::-;10197:12;:10;:12::i;:::-;10187:22;;:6;;;;;;;;;;:22;;;10179:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10939:28:::1;10958:8;10939:18;:28::i;:::-;10870:103:::0;:::o;16301:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;16524:111::-;10197:12;:10;:12::i;:::-;10187:22;;:6;;;;;;;;;;:22;;;10179:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16621:6:::1;16605:9;:15;16615:4;16605:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;16524:111:::0;;:::o;3696:94::-;3741:7;3773:10;3758:26;;3696:94;:::o;19232:320::-;19339:1;19322:19;;:5;:19;;;19314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19416:1;19397:21;;:7;:21;;;19389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19496:6;19466:11;:18;19478:5;19466:18;;;;;;;;;;;;;;;:27;19485:7;19466:27;;;;;;;;;;;;;;;:36;;;;19530:7;19514:32;;19523:5;19514:32;;;19539:6;19514:32;;;;;;:::i;:::-;;;;;;;;19232:320;;;:::o;16643:988::-;16755:1;16737:20;;:6;:20;;;16729:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16835:1;16814:23;;:9;:23;;;16806:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16897:7;:5;:7::i;:::-;16889:15;;:6;:15;;;16886:693;;16942:77;16964:6;16942:77;;;;;;;;;;;;;;;;;:9;:17;16952:6;16942:17;;;;;;;;;;;;;;;;:21;;:77;;;;;:::i;:::-;16922:9;:17;16932:6;16922:17;;;;;;;;;;;;;;;:97;;;;17051:32;17076:6;17051:9;:20;17061:9;17051:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;17028:9;:20;17038:9;17028:20;;;;;;;;;;;;;;;:55;;;;16886:693;;;17131:1;17114:19;;:7;;;;;;;;;;;:19;;;17106:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;17171:9;:17;17181:6;17171:17;;;;;;;;;;;;;;;;;;;;;;;;;17170:18;17162:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;17232:77;17254:6;17232:77;;;;;;;;;;;;;;;;;:9;:17;17242:6;17232:17;;;;;;;;;;;;;;;;:21;;:77;;;;;:::i;:::-;17212:9;:17;17222:6;17212:17;;;;;;;;;;;;;;;:97;;;;17332:7;;;;;;;;;;;17321:18;;:9;:18;;;17318:189;;17353:11;17380:3;17375;;17368:6;:10;;;;:::i;:::-;17367:16;;;;:::i;:::-;17353:30;;17404:3;17396:11;;;;;:::i;:::-;;;17443:3;17420:9;:21;17438:1;17420:21;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;17489:1;17464:33;;17473:6;17464:33;;;17493:3;17464:33;;;;;;:::i;:::-;;;;;;;;17340:167;17318:189;17539:32;17564:6;17539:9;:20;17549:9;17539:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;17516:9;:20;17526:9;17516:20;;;;;;;;;;;;;;;:55;;;;16886:693;17607:9;17590:35;;17599:6;17590:35;;;17618:6;17590:35;;;;;;:::i;:::-;;;;;;;;16643:988;;;:::o;5657:178::-;5743:7;5772:1;5767;:6;;5775:12;5759:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5795:9;5811:1;5807;:5;;;;:::i;:::-;5795:17;;5828:1;5821:8;;;5657:178;;;;;:::o;4830:167::-;4888:7;4904:9;4920:1;4916;:5;;;;:::i;:::-;4904:17;;4941:1;4936;:6;;4928:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4990:1;4983:8;;;4830:167;;;;:::o;18490:330::-;18581:1;18562:21;;:7;:21;;;18554:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18651:68;18674:6;18651:68;;;;;;;;;;;;;;;;;:9;:18;18661:7;18651:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;18630:9;:18;18640:7;18630:18;;;;;;;;;;;;;;;:89;;;;18741:24;18758:6;18741:12;;:16;;:24;;;;:::i;:::-;18726:12;:39;;;;18803:1;18777:37;;18786:7;18777:37;;;18807:6;18777:37;;;;;;:::i;:::-;;;;;;;;18490:330;;:::o;11071:215::-;11161:1;11141:22;;:8;:22;;;11133:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11247:8;11218:38;;11239:6;;;;;;;;;;11218:38;;;;;;;;;;;;11272:8;11263:6;;:17;;;;;;;;;;;;;;;;;;11071:215;:::o;5252:130::-;5310:7;5333:43;5337:1;5340;5333:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5326:50;;5252:130;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:116::-;6425:21;6440:5;6425:21;:::i;:::-;6418:5;6415:32;6405:60;;6461:1;6458;6451:12;6405:60;6355:116;:::o;6477:133::-;6520:5;6558:6;6545:20;6536:29;;6574:30;6598:5;6574:30;:::i;:::-;6477:133;;;;:::o;6616:468::-;6681:6;6689;6738:2;6726:9;6717:7;6713:23;6709:32;6706:119;;;6744:79;;:::i;:::-;6706:119;6864:1;6889:53;6934:7;6925:6;6914:9;6910:22;6889:53;:::i;:::-;6879:63;;6835:117;6991:2;7017:50;7059:7;7050:6;7039:9;7035:22;7017:50;:::i;:::-;7007:60;;6962:115;6616:468;;;;;:::o;7090:180::-;7138:77;7135:1;7128:88;7235:4;7232:1;7225:15;7259:4;7256:1;7249:15;7276:320;7320:6;7357:1;7351:4;7347:12;7337:22;;7404:1;7398:4;7394:12;7425:18;7415:81;;7481:4;7473:6;7469:17;7459:27;;7415:81;7543:2;7535:6;7532:14;7512:18;7509:38;7506:84;;7562:18;;:::i;:::-;7506:84;7327:269;7276:320;;;:::o;7602:182::-;7742:34;7738:1;7730:6;7726:14;7719:58;7602:182;:::o;7790:366::-;7932:3;7953:67;8017:2;8012:3;7953:67;:::i;:::-;7946:74;;8029:93;8118:3;8029:93;:::i;:::-;8147:2;8142:3;8138:12;8131:19;;7790:366;;;:::o;8162:419::-;8328:4;8366:2;8355:9;8351:18;8343:26;;8415:9;8409:4;8405:20;8401:1;8390:9;8386:17;8379:47;8443:131;8569:4;8443:131;:::i;:::-;8435:139;;8162:419;;;:::o;8587:223::-;8727:34;8723:1;8715:6;8711:14;8704:58;8796:6;8791:2;8783:6;8779:15;8772:31;8587:223;:::o;8816:366::-;8958:3;8979:67;9043:2;9038:3;8979:67;:::i;:::-;8972:74;;9055:93;9144:3;9055:93;:::i;:::-;9173:2;9168:3;9164:12;9157:19;;8816:366;;;:::o;9188:419::-;9354:4;9392:2;9381:9;9377:18;9369:26;;9441:9;9435:4;9431:20;9427:1;9416:9;9412:17;9405:47;9469:131;9595:4;9469:131;:::i;:::-;9461:139;;9188:419;;;:::o;9613:221::-;9753:34;9749:1;9741:6;9737:14;9730:58;9822:4;9817:2;9809:6;9805:15;9798:29;9613:221;:::o;9840:366::-;9982:3;10003:67;10067:2;10062:3;10003:67;:::i;:::-;9996:74;;10079:93;10168:3;10079:93;:::i;:::-;10197:2;10192:3;10188:12;10181:19;;9840:366;;;:::o;10212:419::-;10378:4;10416:2;10405:9;10401:18;10393:26;;10465:9;10459:4;10455:20;10451:1;10440:9;10436:17;10429:47;10493:131;10619:4;10493:131;:::i;:::-;10485:139;;10212:419;;;:::o;10637:224::-;10777:34;10773:1;10765:6;10761:14;10754:58;10846:7;10841:2;10833:6;10829:15;10822:32;10637:224;:::o;10867:366::-;11009:3;11030:67;11094:2;11089:3;11030:67;:::i;:::-;11023:74;;11106:93;11195:3;11106:93;:::i;:::-;11224:2;11219:3;11215:12;11208:19;;10867:366;;;:::o;11239:419::-;11405:4;11443:2;11432:9;11428:18;11420:26;;11492:9;11486:4;11482:20;11478:1;11467:9;11463:17;11456:47;11520:131;11646:4;11520:131;:::i;:::-;11512:139;;11239:419;;;:::o;11664:222::-;11804:34;11800:1;11792:6;11788:14;11781:58;11873:5;11868:2;11860:6;11856:15;11849:30;11664:222;:::o;11892:366::-;12034:3;12055:67;12119:2;12114:3;12055:67;:::i;:::-;12048:74;;12131:93;12220:3;12131:93;:::i;:::-;12249:2;12244:3;12240:12;12233:19;;11892:366;;;:::o;12264:419::-;12430:4;12468:2;12457:9;12453:18;12445:26;;12517:9;12511:4;12507:20;12503:1;12492:9;12488:17;12481:47;12545:131;12671:4;12545:131;:::i;:::-;12537:139;;12264:419;;;:::o;12689:166::-;12829:18;12825:1;12817:6;12813:14;12806:42;12689:166;:::o;12861:366::-;13003:3;13024:67;13088:2;13083:3;13024:67;:::i;:::-;13017:74;;13100:93;13189:3;13100:93;:::i;:::-;13218:2;13213:3;13209:12;13202:19;;12861:366;;;:::o;13233:419::-;13399:4;13437:2;13426:9;13422:18;13414:26;;13486:9;13480:4;13476:20;13472:1;13461:9;13457:17;13450:47;13514:131;13640:4;13514:131;:::i;:::-;13506:139;;13233:419;;;:::o;13658:161::-;13798:13;13794:1;13786:6;13782:14;13775:37;13658:161;:::o;13825:366::-;13967:3;13988:67;14052:2;14047:3;13988:67;:::i;:::-;13981:74;;14064:93;14153:3;14064:93;:::i;:::-;14182:2;14177:3;14173:12;14166:19;;13825:366;;;:::o;14197:419::-;14363:4;14401:2;14390:9;14386:18;14378:26;;14450:9;14444:4;14440:20;14436:1;14425:9;14421:17;14414:47;14478:131;14604:4;14478:131;:::i;:::-;14470:139;;14197:419;;;:::o;14622:180::-;14670:77;14667:1;14660:88;14767:4;14764:1;14757:15;14791:4;14788:1;14781:15;14808:410;14848:7;14871:20;14889:1;14871:20;:::i;:::-;14866:25;;14905:20;14923:1;14905:20;:::i;:::-;14900:25;;14960:1;14957;14953:9;14982:30;15000:11;14982:30;:::i;:::-;14971:41;;15161:1;15152:7;15148:15;15145:1;15142:22;15122:1;15115:9;15095:83;15072:139;;15191:18;;:::i;:::-;15072:139;14856:362;14808:410;;;;:::o;15224:180::-;15272:77;15269:1;15262:88;15369:4;15366:1;15359:15;15393:4;15390:1;15383:15;15410:185;15450:1;15467:20;15485:1;15467:20;:::i;:::-;15462:25;;15501:20;15519:1;15501:20;:::i;:::-;15496:25;;15540:1;15530:35;;15545:18;;:::i;:::-;15530:35;15587:1;15584;15580:9;15575:14;;15410:185;;;;:::o;15601:194::-;15641:4;15661:20;15679:1;15661:20;:::i;:::-;15656:25;;15695:20;15713:1;15695:20;:::i;:::-;15690:25;;15739:1;15736;15732:9;15724:17;;15763:1;15757:4;15754:11;15751:37;;;15768:18;;:::i;:::-;15751:37;15601:194;;;;:::o;15801:191::-;15841:3;15860:20;15878:1;15860:20;:::i;:::-;15855:25;;15894:20;15912:1;15894:20;:::i;:::-;15889:25;;15937:1;15934;15930:9;15923:16;;15958:3;15955:1;15952:10;15949:36;;;15965:18;;:::i;:::-;15949:36;15801:191;;;;:::o;15998:177::-;16138:29;16134:1;16126:6;16122:14;16115:53;15998:177;:::o;16181:366::-;16323:3;16344:67;16408:2;16403:3;16344:67;:::i;:::-;16337:74;;16420:93;16509:3;16420:93;:::i;:::-;16538:2;16533:3;16529:12;16522:19;;16181:366;;;:::o;16553:419::-;16719:4;16757:2;16746:9;16742:18;16734:26;;16806:9;16800:4;16796:20;16792:1;16781:9;16777:17;16770:47;16834:131;16960:4;16834:131;:::i;:::-;16826:139;;16553:419;;;:::o;16978:220::-;17118:34;17114:1;17106:6;17102:14;17095:58;17187:3;17182:2;17174:6;17170:15;17163:28;16978:220;:::o;17204:366::-;17346:3;17367:67;17431:2;17426:3;17367:67;:::i;:::-;17360:74;;17443:93;17532:3;17443:93;:::i;:::-;17561:2;17556:3;17552:12;17545:19;;17204:366;;;:::o;17576:419::-;17742:4;17780:2;17769:9;17765:18;17757:26;;17829:9;17823:4;17819:20;17815:1;17804:9;17800:17;17793:47;17857:131;17983:4;17857:131;:::i;:::-;17849:139;;17576:419;;;:::o;18001:225::-;18141:34;18137:1;18129:6;18125:14;18118:58;18210:8;18205:2;18197:6;18193:15;18186:33;18001:225;:::o;18232:366::-;18374:3;18395:67;18459:2;18454:3;18395:67;:::i;:::-;18388:74;;18471:93;18560:3;18471:93;:::i;:::-;18589:2;18584:3;18580:12;18573:19;;18232:366;;;:::o;18604:419::-;18770:4;18808:2;18797:9;18793:18;18785:26;;18857:9;18851:4;18847:20;18843:1;18832:9;18828:17;18821:47;18885:131;19011:4;18885:131;:::i;:::-;18877:139;;18604:419;;;:::o

Swarm Source

ipfs://ce8a968b0ea0b3591caef91b73c59e2e0b738db549b16e4666c97b1e24660d5a
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.