ETH Price: $3,155.26 (+0.36%)
Gas: 1 Gwei

Token

MonkCoin (MONK)
 

Overview

Max Total Supply

6,876,999,999,999 MONK

Holders

1,124 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
watchandlearn.eth
Balance
69,420 MONK

Value
$0.00
0xb82b04f420d4bc501512013133ac7f2aca64a064
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Monk is a meme coin with 10% of the MONK supply will be distributed to holders of Monkey or ape-related crypto and NFT projects.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MonkCoin

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-30
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @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 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.
 */
abstract contract Context {
  function _msgSender() internal view virtual returns (address) {
    return msg.sender;
  }

  function _msgData() internal view virtual returns (bytes calldata) {
    return msg.data;
  }
}

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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.
 */
abstract 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() {
    _transferOwnership(_msgSender());
  }

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

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

  /**
   * @dev Throws if the sender is not the owner.
   */
  function _checkOwner() internal view virtual {
    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 virtual onlyOwner {
    _transferOwnership(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 virtual onlyOwner {
    require(newOwner != address(0), "Ownable: new owner is the zero address");
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   * Internal function without access restriction.
   */
  function _transferOwnership(address newOwner) internal virtual {
    address oldOwner = _owner;
    _owner = newOwner;
    emit OwnershipTransferred(oldOwner, newOwner);
  }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
  /**
   * @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 Returns the amount of tokens in existence.
   */
  function totalSupply() external view returns (uint256);

  /**
   * @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 `to`.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address to, 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 `from` to `to` 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 from,
    address to,
    uint256 amount
  ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
  /**
   * @dev Returns the name of the token.
   */
  function name() external view returns (string memory);

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
  mapping(address => uint256) private _balances;

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

  uint256 private _totalSupply;

  string private _name;
  string private _symbol;

  /**
   * @dev Sets the values for {name} and {symbol}.
   *
   * The default value of {decimals} is 18. To select a different value for
   * {decimals} you should overload it.
   *
   * All two of these values are immutable: they can only be set once during
   * construction.
   */
  constructor(string memory name_, string memory symbol_) {
    _name = name_;
    _symbol = symbol_;
  }

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

  /**
   * @dev Returns the symbol of the token, usually a shorter version of the
   * name.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev Returns the number of decimals used to get its user representation.
   * For example, if `decimals` equals `2`, a balance of `505` tokens should
   * be displayed to a user as `5.05` (`505 / 10 ** 2`).
   *
   * Tokens usually opt for a value of 18, imitating the relationship between
   * Ether and Wei. This is the value {ERC20} uses, unless this function is
   * overridden;
   *
   * NOTE: This information is only used for _display_ purposes: it in
   * no way affects any of the arithmetic of the contract, including
   * {IERC20-balanceOf} and {IERC20-transfer}.
   */
  function decimals() public view virtual override returns (uint8) {
    return 18;
  }

  /**
   * @dev See {IERC20-totalSupply}.
   */
  function totalSupply() public view virtual override returns (uint256) {
    return _totalSupply;
  }

  /**
   * @dev See {IERC20-balanceOf}.
   */
  function balanceOf(
    address account
  ) public view virtual override returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev See {IERC20-transfer}.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - the caller must have a balance of at least `amount`.
   */
  function transfer(
    address to,
    uint256 amount
  ) public virtual override returns (bool) {
    address owner = _msgSender();
    _transfer(owner, to, amount);
    return true;
  }

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

  /**
   * @dev See {IERC20-approve}.
   *
   * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
   * `transferFrom`. This is semantically equivalent to an infinite approval.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function approve(
    address spender,
    uint256 amount
  ) public virtual override returns (bool) {
    address owner = _msgSender();
    _approve(owner, spender, amount);
    return true;
  }

  /**
   * @dev See {IERC20-transferFrom}.
   *
   * Emits an {Approval} event indicating the updated allowance. This is not
   * required by the EIP. See the note at the beginning of {ERC20}.
   *
   * NOTE: Does not update the allowance if the current allowance
   * is the maximum `uint256`.
   *
   * Requirements:
   *
   * - `from` and `to` cannot be the zero address.
   * - `from` must have a balance of at least `amount`.
   * - the caller must have allowance for ``from``'s tokens of at least
   * `amount`.
   */
  function transferFrom(
    address from,
    address to,
    uint256 amount
  ) public virtual override returns (bool) {
    address spender = _msgSender();
    _spendAllowance(from, spender, amount);
    _transfer(from, to, amount);
    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 {IERC20-approve}.
   *
   * Emits an {Approval} event indicating the updated allowance.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function increaseAllowance(
    address spender,
    uint256 addedValue
  ) public virtual returns (bool) {
    address owner = _msgSender();
    _approve(owner, spender, allowance(owner, spender) + 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 {IERC20-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 virtual returns (bool) {
    address owner = _msgSender();
    uint256 currentAllowance = allowance(owner, spender);
    require(
      currentAllowance >= subtractedValue,
      "ERC20: decreased allowance below zero"
    );
    unchecked {
      _approve(owner, spender, currentAllowance - subtractedValue);
    }

    return true;
  }

  /**
   * @dev Moves `amount` of tokens from `from` to `to`.
   *
   * This 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:
   *
   * - `from` cannot be the zero address.
   * - `to` cannot be the zero address.
   * - `from` must have a balance of at least `amount`.
   */
  function _transfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual {
    require(from != address(0), "ERC20: transfer from the zero address");
    require(to != address(0), "ERC20: transfer to the zero address");

    _beforeTokenTransfer(from, to, amount);

    uint256 fromBalance = _balances[from];
    require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
    unchecked {
      _balances[from] = fromBalance - amount;
      // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
      // decrementing then incrementing.
      _balances[to] += amount;
    }

    emit Transfer(from, to, amount);

    _afterTokenTransfer(from, to, 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:
   *
   * - `account` cannot be the zero address.
   */
  function _mint(address account, uint256 amount) internal virtual {
    require(account != address(0), "ERC20: mint to the zero address");

    _beforeTokenTransfer(address(0), account, amount);

    _totalSupply += amount;
    unchecked {
      // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
      _balances[account] += amount;
    }
    emit Transfer(address(0), account, amount);

    _afterTokenTransfer(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 virtual {
    require(account != address(0), "ERC20: burn from the zero address");

    _beforeTokenTransfer(account, address(0), amount);

    uint256 accountBalance = _balances[account];
    require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
    unchecked {
      _balances[account] = accountBalance - amount;
      // Overflow not possible: amount <= accountBalance <= totalSupply.
      _totalSupply -= amount;
    }

    emit Transfer(account, address(0), amount);

    _afterTokenTransfer(account, address(0), amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
   *
   * This 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 virtual {
    require(owner != address(0), "ERC20: approve from the zero address");
    require(spender != address(0), "ERC20: approve to the zero address");

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

  /**
   * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
   *
   * Does not update the allowance amount in case of infinite allowance.
   * Revert if not enough allowance is available.
   *
   * Might emit an {Approval} event.
   */
  function _spendAllowance(
    address owner,
    address spender,
    uint256 amount
  ) internal virtual {
    uint256 currentAllowance = allowance(owner, spender);
    if (currentAllowance != type(uint256).max) {
      require(currentAllowance >= amount, "ERC20: insufficient allowance");
      unchecked {
        _approve(owner, spender, currentAllowance - amount);
      }
    }
  }

  /**
   * @dev Hook that is called before any transfer of tokens. This includes
   * minting and burning.
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
   * will be transferred to `to`.
   * - when `from` is zero, `amount` tokens will be minted for `to`.
   * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
   * - `from` and `to` are never both zero.
   *
   * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
   */
  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual {}

  /**
   * @dev Hook that is called after any transfer of tokens. This includes
   * minting and burning.
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
   * has been transferred to `to`.
   * - when `from` is zero, `amount` tokens have been minted for `to`.
   * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
   * - `from` and `to` are never both zero.
   *
   * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
   */
  function _afterTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
  event Burned(address indexed burner, uint256 amount);

  /**
   * @dev Destroys `amount` tokens from the caller.
   *
   * See {ERC20-_burn}.
   */
  function burn(uint256 amount) public virtual {
    _burn(_msgSender(), amount);

    emit Burned(msg.sender, amount);
  }
}

pragma solidity ^0.8.9;

contract MonkCoin is ERC20, ERC20Burnable, Ownable {
  constructor() ERC20("MonkCoin", "MONK") {
    _mint(owner(), 6_942_000_000_000 * (10 ** 18));
  }

  function airdrop(
    address[] memory addresses,
    uint256[] memory amounts
  ) external {
    require(addresses.length == amounts.length, "MONK: Arrays must be equal");
    uint256 totalAmount;

    for (uint256 i = 0; i < amounts.length; i++) {
      totalAmount += amounts[i];
    }

    require(balanceOf(msg.sender) >= totalAmount, "MONK: Not enough tokens");

    for (uint256 i = 0; i < addresses.length; i++) {
      _transfer(_msgSender(), addresses[i], amounts[i]);
    }
  }

  function claimStuckTokens(address token) external onlyOwner {
    IERC20 ERC20token = IERC20(token);
    uint256 balance = ERC20token.balanceOf(address(this));
    ERC20token.transfer(msg.sender, balance);
  }

  function recoverStuckEther() external onlyOwner {
    uint256 balance = address(this).balance;
    require(balance > 0, "MONK: No ETH available for recovery");
    payable(msg.sender).transfer(balance);
  }
}

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":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burned","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":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"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":[{"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":"recoverStuckEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f4d6f6e6b436f696e0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4f4e4b0000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620005e1565b508060049081620000a19190620005e1565b505050620000c4620000b8620000f860201b60201c565b6200010060201b60201c565b620000f2620000d8620001c660201b60201c565b6c579ecfcff5b7f5739b30000000620001f060201b60201c565b620007e3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000262576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002599062000729565b60405180910390fd5b62000276600083836200035d60201b60201c565b80600260008282546200028a91906200077a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033d9190620007c6565b60405180910390a362000359600083836200036260201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e957607f821691505b602082108103620003ff57620003fe620003a1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200042a565b6200047586836200042a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004c2620004bc620004b6846200048d565b62000497565b6200048d565b9050919050565b6000819050919050565b620004de83620004a1565b620004f6620004ed82620004c9565b84845462000437565b825550505050565b600090565b6200050d620004fe565b6200051a818484620004d3565b505050565b5b8181101562000542576200053660008262000503565b60018101905062000520565b5050565b601f82111562000591576200055b8162000405565b62000566846200041a565b8101602085101562000576578190505b6200058e62000585856200041a565b8301826200051f565b50505b505050565b600082821c905092915050565b6000620005b66000198460080262000596565b1980831691505092915050565b6000620005d18383620005a3565b9150826002028217905092915050565b620005ec8262000367565b67ffffffffffffffff81111562000608576200060762000372565b5b620006148254620003d0565b6200062182828562000546565b600060209050601f83116001811462000659576000841562000644578287015190505b620006508582620005c3565b865550620006c0565b601f198416620006698662000405565b60005b8281101562000693578489015182556001820191506020850194506020810190506200066c565b86831015620006b35784890151620006af601f891682620005a3565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000711601f83620006c8565b91506200071e82620006d9565b602082019050919050565b60006020820190508181036000830152620007448162000702565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000787826200048d565b915062000794836200048d565b9250828201905080821115620007af57620007ae6200074b565b5b92915050565b620007c0816200048d565b82525050565b6000602082019050620007dd6000830184620007b5565b92915050565b61221280620007f36000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102bd578063a9059cbb146102ed578063dd62ed3e1461031d578063f2fde38b1461034d578063f9d0831a1461036957610116565b8063715018a61461026d5780638da5cb5b1461027757806394e53d361461029557806395d89b411461029f57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806342966c6814610205578063672434821461022157806370a082311461023d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610385565b604051610130919061133f565b60405180910390f35b610153600480360381019061014e9190611409565b610417565b6040516101609190611464565b60405180910390f35b61017161043a565b60405161017e919061148e565b60405180910390f35b6101a1600480360381019061019c91906114a9565b610444565b6040516101ae9190611464565b60405180910390f35b6101bf610473565b6040516101cc9190611518565b60405180910390f35b6101ef60048036038101906101ea9190611409565b61047c565b6040516101fc9190611464565b60405180910390f35b61021f600480360381019061021a9190611533565b6104b3565b005b61023b6004803603810190610236919061176b565b610515565b005b610257600480360381019061025291906117e3565b61065c565b604051610264919061148e565b60405180910390f35b6102756106a4565b005b61027f6106b8565b60405161028c919061181f565b60405180910390f35b61029d6106e2565b005b6102a761077c565b6040516102b4919061133f565b60405180910390f35b6102d760048036038101906102d29190611409565b61080e565b6040516102e49190611464565b60405180910390f35b61030760048036038101906103029190611409565b610885565b6040516103149190611464565b60405180910390f35b6103376004803603810190610332919061183a565b6108a8565b604051610344919061148e565b60405180910390f35b610367600480360381019061036291906117e3565b61092f565b005b610383600480360381019061037e91906117e3565b6109b2565b005b606060038054610394906118a9565b80601f01602080910402602001604051908101604052809291908181526020018280546103c0906118a9565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b600080610422610ac1565b905061042f818585610ac9565b600191505092915050565b6000600254905090565b60008061044f610ac1565b905061045c858285610c92565b610467858585610d1e565b60019150509392505050565b60006012905090565b600080610487610ac1565b90506104a881858561049985896108a8565b6104a39190611909565b610ac9565b600191505092915050565b6104c46104be610ac1565b82610f94565b3373ffffffffffffffffffffffffffffffffffffffff167f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df78260405161050a919061148e565b60405180910390a250565b8051825114610559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055090611989565b60405180910390fd5b600080600090505b82518110156105a55782818151811061057d5761057c6119a9565b5b6020026020010151826105909190611909565b9150808061059d906119d8565b915050610561565b50806105b03361065c565b10156105f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e890611a6c565b60405180910390fd5b60005b835181101561065657610643610608610ac1565b85838151811061061b5761061a6119a9565b5b6020026020010151858481518110610636576106356119a9565b5b6020026020010151610d1e565b808061064e906119d8565b9150506105f4565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ac611161565b6106b660006111df565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106ea611161565b600047905060008111610732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072990611afe565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610778573d6000803e3d6000fd5b5050565b60606004805461078b906118a9565b80601f01602080910402602001604051908101604052809291908181526020018280546107b7906118a9565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600080610819610ac1565b9050600061082782866108a8565b90508381101561086c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086390611b90565b60405180910390fd5b6108798286868403610ac9565b60019250505092915050565b600080610890610ac1565b905061089d818585610d1e565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610937611161565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099d90611c22565b60405180910390fd5b6109af816111df565b50565b6109ba611161565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109fa919061181f565b602060405180830381865afa158015610a17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3b9190611c57565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610a78929190611c84565b6020604051808303816000875af1158015610a97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abb9190611cd9565b50505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90611d78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90611e0a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c85919061148e565b60405180910390a3505050565b6000610c9e84846108a8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d185781811015610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190611e76565b60405180910390fd5b610d178484848403610ac9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490611f08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390611f9a565b60405180910390fd5b610e078383836112a5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e849061202c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7b919061148e565b60405180910390a3610f8e8484846112aa565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa906120be565b60405180910390fd5b61100f826000836112a5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90612150565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611148919061148e565b60405180910390a361115c836000846112aa565b505050565b611169610ac1565b73ffffffffffffffffffffffffffffffffffffffff166111876106b8565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d4906121bc565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112e95780820151818401526020810190506112ce565b60008484015250505050565b6000601f19601f8301169050919050565b6000611311826112af565b61131b81856112ba565b935061132b8185602086016112cb565b611334816112f5565b840191505092915050565b600060208201905081810360008301526113598184611306565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113a082611375565b9050919050565b6113b081611395565b81146113bb57600080fd5b50565b6000813590506113cd816113a7565b92915050565b6000819050919050565b6113e6816113d3565b81146113f157600080fd5b50565b600081359050611403816113dd565b92915050565b600080604083850312156114205761141f61136b565b5b600061142e858286016113be565b925050602061143f858286016113f4565b9150509250929050565b60008115159050919050565b61145e81611449565b82525050565b60006020820190506114796000830184611455565b92915050565b611488816113d3565b82525050565b60006020820190506114a3600083018461147f565b92915050565b6000806000606084860312156114c2576114c161136b565b5b60006114d0868287016113be565b93505060206114e1868287016113be565b92505060406114f2868287016113f4565b9150509250925092565b600060ff82169050919050565b611512816114fc565b82525050565b600060208201905061152d6000830184611509565b92915050565b6000602082840312156115495761154861136b565b5b6000611557848285016113f4565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61159d826112f5565b810181811067ffffffffffffffff821117156115bc576115bb611565565b5b80604052505050565b60006115cf611361565b90506115db8282611594565b919050565b600067ffffffffffffffff8211156115fb576115fa611565565b5b602082029050602081019050919050565b600080fd5b600061162461161f846115e0565b6115c5565b905080838252602082019050602084028301858111156116475761164661160c565b5b835b81811015611670578061165c88826113be565b845260208401935050602081019050611649565b5050509392505050565b600082601f83011261168f5761168e611560565b5b813561169f848260208601611611565b91505092915050565b600067ffffffffffffffff8211156116c3576116c2611565565b5b602082029050602081019050919050565b60006116e76116e2846116a8565b6115c5565b9050808382526020820190506020840283018581111561170a5761170961160c565b5b835b81811015611733578061171f88826113f4565b84526020840193505060208101905061170c565b5050509392505050565b600082601f83011261175257611751611560565b5b81356117628482602086016116d4565b91505092915050565b600080604083850312156117825761178161136b565b5b600083013567ffffffffffffffff8111156117a05761179f611370565b5b6117ac8582860161167a565b925050602083013567ffffffffffffffff8111156117cd576117cc611370565b5b6117d98582860161173d565b9150509250929050565b6000602082840312156117f9576117f861136b565b5b6000611807848285016113be565b91505092915050565b61181981611395565b82525050565b60006020820190506118346000830184611810565b92915050565b600080604083850312156118515761185061136b565b5b600061185f858286016113be565b9250506020611870858286016113be565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118c157607f821691505b6020821081036118d4576118d361187a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611914826113d3565b915061191f836113d3565b9250828201905080821115611937576119366118da565b5b92915050565b7f4d4f4e4b3a20417272617973206d75737420626520657175616c000000000000600082015250565b6000611973601a836112ba565b915061197e8261193d565b602082019050919050565b600060208201905081810360008301526119a281611966565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006119e3826113d3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a1557611a146118da565b5b600182019050919050565b7f4d4f4e4b3a204e6f7420656e6f75676820746f6b656e73000000000000000000600082015250565b6000611a566017836112ba565b9150611a6182611a20565b602082019050919050565b60006020820190508181036000830152611a8581611a49565b9050919050565b7f4d4f4e4b3a204e6f2045544820617661696c61626c6520666f72207265636f7660008201527f6572790000000000000000000000000000000000000000000000000000000000602082015250565b6000611ae86023836112ba565b9150611af382611a8c565b604082019050919050565b60006020820190508181036000830152611b1781611adb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b7a6025836112ba565b9150611b8582611b1e565b604082019050919050565b60006020820190508181036000830152611ba981611b6d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c0c6026836112ba565b9150611c1782611bb0565b604082019050919050565b60006020820190508181036000830152611c3b81611bff565b9050919050565b600081519050611c51816113dd565b92915050565b600060208284031215611c6d57611c6c61136b565b5b6000611c7b84828501611c42565b91505092915050565b6000604082019050611c996000830185611810565b611ca6602083018461147f565b9392505050565b611cb681611449565b8114611cc157600080fd5b50565b600081519050611cd381611cad565b92915050565b600060208284031215611cef57611cee61136b565b5b6000611cfd84828501611cc4565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d626024836112ba565b9150611d6d82611d06565b604082019050919050565b60006020820190508181036000830152611d9181611d55565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df46022836112ba565b9150611dff82611d98565b604082019050919050565b60006020820190508181036000830152611e2381611de7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e60601d836112ba565b9150611e6b82611e2a565b602082019050919050565b60006020820190508181036000830152611e8f81611e53565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ef26025836112ba565b9150611efd82611e96565b604082019050919050565b60006020820190508181036000830152611f2181611ee5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f846023836112ba565b9150611f8f82611f28565b604082019050919050565b60006020820190508181036000830152611fb381611f77565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120166026836112ba565b915061202182611fba565b604082019050919050565b6000602082019050818103600083015261204581612009565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120a86021836112ba565b91506120b38261204c565b604082019050919050565b600060208201905081810360008301526120d78161209b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061213a6022836112ba565b9150612145826120de565b604082019050919050565b600060208201905081810360008301526121698161212d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006121a66020836112ba565b91506121b182612170565b602082019050919050565b600060208201905081810360008301526121d581612199565b905091905056fea2646970667358221220a17aed2d21b3de5c4ca1808fe6cd7f1420b73c5cdf16d40ff02865b2f73a9a9264736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102bd578063a9059cbb146102ed578063dd62ed3e1461031d578063f2fde38b1461034d578063f9d0831a1461036957610116565b8063715018a61461026d5780638da5cb5b1461027757806394e53d361461029557806395d89b411461029f57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806342966c6814610205578063672434821461022157806370a082311461023d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610385565b604051610130919061133f565b60405180910390f35b610153600480360381019061014e9190611409565b610417565b6040516101609190611464565b60405180910390f35b61017161043a565b60405161017e919061148e565b60405180910390f35b6101a1600480360381019061019c91906114a9565b610444565b6040516101ae9190611464565b60405180910390f35b6101bf610473565b6040516101cc9190611518565b60405180910390f35b6101ef60048036038101906101ea9190611409565b61047c565b6040516101fc9190611464565b60405180910390f35b61021f600480360381019061021a9190611533565b6104b3565b005b61023b6004803603810190610236919061176b565b610515565b005b610257600480360381019061025291906117e3565b61065c565b604051610264919061148e565b60405180910390f35b6102756106a4565b005b61027f6106b8565b60405161028c919061181f565b60405180910390f35b61029d6106e2565b005b6102a761077c565b6040516102b4919061133f565b60405180910390f35b6102d760048036038101906102d29190611409565b61080e565b6040516102e49190611464565b60405180910390f35b61030760048036038101906103029190611409565b610885565b6040516103149190611464565b60405180910390f35b6103376004803603810190610332919061183a565b6108a8565b604051610344919061148e565b60405180910390f35b610367600480360381019061036291906117e3565b61092f565b005b610383600480360381019061037e91906117e3565b6109b2565b005b606060038054610394906118a9565b80601f01602080910402602001604051908101604052809291908181526020018280546103c0906118a9565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b600080610422610ac1565b905061042f818585610ac9565b600191505092915050565b6000600254905090565b60008061044f610ac1565b905061045c858285610c92565b610467858585610d1e565b60019150509392505050565b60006012905090565b600080610487610ac1565b90506104a881858561049985896108a8565b6104a39190611909565b610ac9565b600191505092915050565b6104c46104be610ac1565b82610f94565b3373ffffffffffffffffffffffffffffffffffffffff167f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df78260405161050a919061148e565b60405180910390a250565b8051825114610559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055090611989565b60405180910390fd5b600080600090505b82518110156105a55782818151811061057d5761057c6119a9565b5b6020026020010151826105909190611909565b9150808061059d906119d8565b915050610561565b50806105b03361065c565b10156105f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e890611a6c565b60405180910390fd5b60005b835181101561065657610643610608610ac1565b85838151811061061b5761061a6119a9565b5b6020026020010151858481518110610636576106356119a9565b5b6020026020010151610d1e565b808061064e906119d8565b9150506105f4565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ac611161565b6106b660006111df565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106ea611161565b600047905060008111610732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072990611afe565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610778573d6000803e3d6000fd5b5050565b60606004805461078b906118a9565b80601f01602080910402602001604051908101604052809291908181526020018280546107b7906118a9565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600080610819610ac1565b9050600061082782866108a8565b90508381101561086c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086390611b90565b60405180910390fd5b6108798286868403610ac9565b60019250505092915050565b600080610890610ac1565b905061089d818585610d1e565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610937611161565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099d90611c22565b60405180910390fd5b6109af816111df565b50565b6109ba611161565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109fa919061181f565b602060405180830381865afa158015610a17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3b9190611c57565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610a78929190611c84565b6020604051808303816000875af1158015610a97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abb9190611cd9565b50505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90611d78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90611e0a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c85919061148e565b60405180910390a3505050565b6000610c9e84846108a8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d185781811015610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190611e76565b60405180910390fd5b610d178484848403610ac9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490611f08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390611f9a565b60405180910390fd5b610e078383836112a5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e849061202c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7b919061148e565b60405180910390a3610f8e8484846112aa565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa906120be565b60405180910390fd5b61100f826000836112a5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90612150565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611148919061148e565b60405180910390a361115c836000846112aa565b505050565b611169610ac1565b73ffffffffffffffffffffffffffffffffffffffff166111876106b8565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d4906121bc565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112e95780820151818401526020810190506112ce565b60008484015250505050565b6000601f19601f8301169050919050565b6000611311826112af565b61131b81856112ba565b935061132b8185602086016112cb565b611334816112f5565b840191505092915050565b600060208201905081810360008301526113598184611306565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113a082611375565b9050919050565b6113b081611395565b81146113bb57600080fd5b50565b6000813590506113cd816113a7565b92915050565b6000819050919050565b6113e6816113d3565b81146113f157600080fd5b50565b600081359050611403816113dd565b92915050565b600080604083850312156114205761141f61136b565b5b600061142e858286016113be565b925050602061143f858286016113f4565b9150509250929050565b60008115159050919050565b61145e81611449565b82525050565b60006020820190506114796000830184611455565b92915050565b611488816113d3565b82525050565b60006020820190506114a3600083018461147f565b92915050565b6000806000606084860312156114c2576114c161136b565b5b60006114d0868287016113be565b93505060206114e1868287016113be565b92505060406114f2868287016113f4565b9150509250925092565b600060ff82169050919050565b611512816114fc565b82525050565b600060208201905061152d6000830184611509565b92915050565b6000602082840312156115495761154861136b565b5b6000611557848285016113f4565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61159d826112f5565b810181811067ffffffffffffffff821117156115bc576115bb611565565b5b80604052505050565b60006115cf611361565b90506115db8282611594565b919050565b600067ffffffffffffffff8211156115fb576115fa611565565b5b602082029050602081019050919050565b600080fd5b600061162461161f846115e0565b6115c5565b905080838252602082019050602084028301858111156116475761164661160c565b5b835b81811015611670578061165c88826113be565b845260208401935050602081019050611649565b5050509392505050565b600082601f83011261168f5761168e611560565b5b813561169f848260208601611611565b91505092915050565b600067ffffffffffffffff8211156116c3576116c2611565565b5b602082029050602081019050919050565b60006116e76116e2846116a8565b6115c5565b9050808382526020820190506020840283018581111561170a5761170961160c565b5b835b81811015611733578061171f88826113f4565b84526020840193505060208101905061170c565b5050509392505050565b600082601f83011261175257611751611560565b5b81356117628482602086016116d4565b91505092915050565b600080604083850312156117825761178161136b565b5b600083013567ffffffffffffffff8111156117a05761179f611370565b5b6117ac8582860161167a565b925050602083013567ffffffffffffffff8111156117cd576117cc611370565b5b6117d98582860161173d565b9150509250929050565b6000602082840312156117f9576117f861136b565b5b6000611807848285016113be565b91505092915050565b61181981611395565b82525050565b60006020820190506118346000830184611810565b92915050565b600080604083850312156118515761185061136b565b5b600061185f858286016113be565b9250506020611870858286016113be565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118c157607f821691505b6020821081036118d4576118d361187a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611914826113d3565b915061191f836113d3565b9250828201905080821115611937576119366118da565b5b92915050565b7f4d4f4e4b3a20417272617973206d75737420626520657175616c000000000000600082015250565b6000611973601a836112ba565b915061197e8261193d565b602082019050919050565b600060208201905081810360008301526119a281611966565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006119e3826113d3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a1557611a146118da565b5b600182019050919050565b7f4d4f4e4b3a204e6f7420656e6f75676820746f6b656e73000000000000000000600082015250565b6000611a566017836112ba565b9150611a6182611a20565b602082019050919050565b60006020820190508181036000830152611a8581611a49565b9050919050565b7f4d4f4e4b3a204e6f2045544820617661696c61626c6520666f72207265636f7660008201527f6572790000000000000000000000000000000000000000000000000000000000602082015250565b6000611ae86023836112ba565b9150611af382611a8c565b604082019050919050565b60006020820190508181036000830152611b1781611adb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b7a6025836112ba565b9150611b8582611b1e565b604082019050919050565b60006020820190508181036000830152611ba981611b6d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c0c6026836112ba565b9150611c1782611bb0565b604082019050919050565b60006020820190508181036000830152611c3b81611bff565b9050919050565b600081519050611c51816113dd565b92915050565b600060208284031215611c6d57611c6c61136b565b5b6000611c7b84828501611c42565b91505092915050565b6000604082019050611c996000830185611810565b611ca6602083018461147f565b9392505050565b611cb681611449565b8114611cc157600080fd5b50565b600081519050611cd381611cad565b92915050565b600060208284031215611cef57611cee61136b565b5b6000611cfd84828501611cc4565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d626024836112ba565b9150611d6d82611d06565b604082019050919050565b60006020820190508181036000830152611d9181611d55565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df46022836112ba565b9150611dff82611d98565b604082019050919050565b60006020820190508181036000830152611e2381611de7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e60601d836112ba565b9150611e6b82611e2a565b602082019050919050565b60006020820190508181036000830152611e8f81611e53565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ef26025836112ba565b9150611efd82611e96565b604082019050919050565b60006020820190508181036000830152611f2181611ee5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f846023836112ba565b9150611f8f82611f28565b604082019050919050565b60006020820190508181036000830152611fb381611f77565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120166026836112ba565b915061202182611fba565b604082019050919050565b6000602082019050818103600083015261204581612009565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120a86021836112ba565b91506120b38261204c565b604082019050919050565b600060208201905081810360008301526120d78161209b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061213a6022836112ba565b9150612145826120de565b604082019050919050565b600060208201905081810360008301526121698161212d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006121a66020836112ba565b91506121b182612170565b602082019050919050565b600060208201905081810360008301526121d581612199565b905091905056fea2646970667358221220a17aed2d21b3de5c4ca1808fe6cd7f1420b73c5cdf16d40ff02865b2f73a9a9264736f6c63430008120033

Deployed Bytecode Sourcemap

20209:1103:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8930:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11169:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9986:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11917:263;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9842:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12563:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20050:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20370:504;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10143:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2612:97;;;:::i;:::-;;2000:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21099:210;;;:::i;:::-;;9133:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13275:440;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10462:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10711:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2854:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20880:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8930:94;8984:13;9013:5;9006:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8930:94;:::o;11169:202::-;11267:4;11280:13;11296:12;:10;:12::i;:::-;11280:28;;11315:32;11324:5;11331:7;11340:6;11315:8;:32::i;:::-;11361:4;11354:11;;;11169:202;;;;:::o;9986:102::-;10047:7;10070:12;;10063:19;;9986:102;:::o;11917:263::-;12034:4;12047:15;12065:12;:10;:12::i;:::-;12047:30;;12084:38;12100:4;12106:7;12115:6;12084:15;:38::i;:::-;12129:27;12139:4;12145:2;12149:6;12129:9;:27::i;:::-;12170:4;12163:11;;;11917:263;;;;;:::o;9842:87::-;9900:5;9921:2;9914:9;;9842:87;:::o;12563:239::-;12666:4;12679:13;12695:12;:10;:12::i;:::-;12679:28;;12714:64;12723:5;12730:7;12767:10;12739:25;12749:5;12756:7;12739:9;:25::i;:::-;:38;;;;:::i;:::-;12714:8;:64::i;:::-;12792:4;12785:11;;;12563:239;;;;:::o;20050:125::-;20102:27;20108:12;:10;:12::i;:::-;20122:6;20102:5;:27::i;:::-;20150:10;20143:26;;;20162:6;20143:26;;;;;;:::i;:::-;;;;;;;;20050:125;:::o;20370:504::-;20500:7;:14;20480:9;:16;:34;20472:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20552:19;20585:9;20597:1;20585:13;;20580:87;20604:7;:14;20600:1;:18;20580:87;;;20649:7;20657:1;20649:10;;;;;;;;:::i;:::-;;;;;;;;20634:25;;;;;:::i;:::-;;;20620:3;;;;;:::i;:::-;;;;20580:87;;;;20708:11;20683:21;20693:10;20683:9;:21::i;:::-;:36;;20675:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;20761:9;20756:113;20780:9;:16;20776:1;:20;20756:113;;;20812:49;20822:12;:10;:12::i;:::-;20836:9;20846:1;20836:12;;;;;;;;:::i;:::-;;;;;;;;20850:7;20858:1;20850:10;;;;;;;;:::i;:::-;;;;;;;;20812:9;:49::i;:::-;20798:3;;;;;:::i;:::-;;;;20756:113;;;;20465:409;20370:504;;:::o;10143:131::-;10227:7;10250:9;:18;10260:7;10250:18;;;;;;;;;;;;;;;;10243:25;;10143:131;;;:::o;2612:97::-;1900:13;:11;:13::i;:::-;2673:30:::1;2700:1;2673:18;:30::i;:::-;2612:97::o:0;2000:81::-;2046:7;2069:6;;;;;;;;;;;2062:13;;2000:81;:::o;21099:210::-;1900:13;:11;:13::i;:::-;21154:15:::1;21172:21;21154:39;;21218:1;21208:7;:11;21200:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;21274:10;21266:28;;:37;21295:7;21266:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;21147:162;21099:210::o:0;9133:98::-;9189:13;9218:7;9211:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9133:98;:::o;13275:440::-;13383:4;13396:13;13412:12;:10;:12::i;:::-;13396:28;;13431:24;13458:25;13468:5;13475:7;13458:9;:25::i;:::-;13431:52;;13526:15;13506:16;:35;;13490:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;13622:60;13631:5;13638:7;13666:15;13647:16;:34;13622:8;:60::i;:::-;13705:4;13698:11;;;;13275:440;;;;:::o;10462:194::-;10556:4;10569:13;10585:12;:10;:12::i;:::-;10569:28;;10604;10614:5;10621:2;10625:6;10604:9;:28::i;:::-;10646:4;10639:11;;;10462:194;;;;:::o;10711:160::-;10815:7;10838:11;:18;10850:5;10838:18;;;;;;;;;;;;;;;:27;10857:7;10838:27;;;;;;;;;;;;;;;;10831:34;;10711:160;;;;:::o;2854:191::-;1900:13;:11;:13::i;:::-;2959:1:::1;2939:22;;:8;:22;;::::0;2931:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3011:28;3030:8;3011:18;:28::i;:::-;2854:191:::0;:::o;20880:213::-;1900:13;:11;:13::i;:::-;20947:17:::1;20974:5;20947:33;;20987:15;21005:10;:20;;;21034:4;21005:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20987:53;;21047:10;:19;;;21067:10;21079:7;21047:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20940:153;;20880:213:::0;:::o;598:92::-;651:7;674:10;667:17;;598:92;:::o;17034:348::-;17169:1;17152:19;;:5;:19;;;17144:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17246:1;17227:21;;:7;:21;;;17219:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17326:6;17296:11;:18;17308:5;17296:18;;;;;;;;;;;;;;;:27;17315:7;17296:27;;;;;;;;;;;;;;;:36;;;;17360:7;17344:32;;17353:5;17344:32;;;17369:6;17344:32;;;;;;:::i;:::-;;;;;;;;17034:348;;;:::o;17655:399::-;17772:24;17799:25;17809:5;17816:7;17799:9;:25::i;:::-;17772:52;;17855:17;17835:16;:37;17831:218;;17911:6;17891:16;:26;;17883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17981:51;17990:5;17997:7;18025:6;18006:16;:25;17981:8;:51::i;:::-;17831:218;17765:289;17655:399;;;:::o;14155:764::-;14284:1;14268:18;;:4;:18;;;14260:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14357:1;14343:16;;:2;:16;;;14335:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14408:38;14429:4;14435:2;14439:6;14408:20;:38::i;:::-;14455:19;14477:9;:15;14487:4;14477:15;;;;;;;;;;;;;;;;14455:37;;14522:6;14507:11;:21;;14499:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;14629:6;14615:11;:20;14597:9;:15;14607:4;14597:15;;;;;;;;;;;;;;;:38;;;;14814:6;14797:9;:13;14807:2;14797:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;14856:2;14841:26;;14850:4;14841:26;;;14860:6;14841:26;;;;;;:::i;:::-;;;;;;;;14876:37;14896:4;14902:2;14906:6;14876:19;:37::i;:::-;14253:666;14155:764;;;:::o;16001:623::-;16100:1;16081:21;;:7;:21;;;16073:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16149:49;16170:7;16187:1;16191:6;16149:20;:49::i;:::-;16207:22;16232:9;:18;16242:7;16232:18;;;;;;;;;;;;;;;;16207:43;;16283:6;16265:14;:24;;16257:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16392:6;16375:14;:23;16354:9;:18;16364:7;16354:18;;;;;;;;;;;;;;;:44;;;;16497:6;16481:12;;:22;;;;;;;;;;;16550:1;16524:37;;16533:7;16524:37;;;16554:6;16524:37;;;;;;:::i;:::-;;;;;;;;16570:48;16590:7;16607:1;16611:6;16570:19;:48::i;:::-;16066:558;16001:623;;:::o;2151:126::-;2222:12;:10;:12::i;:::-;2211:23;;:7;:5;:7::i;:::-;:23;;;2203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2151:126::o;3195:177::-;3265:16;3284:6;;;;;;;;;;;3265:25;;3306:8;3297:6;;:17;;;;;;;;;;;;;;;;;;3357:8;3326:40;;3347:8;3326:40;;;;;;;;;;;;3258:114;3195:177;:::o;18624:111::-;;;;:::o;19309:110::-;;;;:::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;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652: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:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:117::-;5297:1;5294;5287:12;5311:180;5359:77;5356:1;5349:88;5456:4;5453:1;5446:15;5480:4;5477:1;5470:15;5497:281;5580:27;5602:4;5580:27;:::i;:::-;5572:6;5568:40;5710:6;5698:10;5695:22;5674:18;5662:10;5659:34;5656:62;5653:88;;;5721:18;;:::i;:::-;5653:88;5761:10;5757:2;5750:22;5540:238;5497:281;;:::o;5784:129::-;5818:6;5845:20;;:::i;:::-;5835:30;;5874:33;5902:4;5894:6;5874:33;:::i;:::-;5784:129;;;:::o;5919:311::-;5996:4;6086:18;6078:6;6075:30;6072:56;;;6108:18;;:::i;:::-;6072:56;6158:4;6150:6;6146:17;6138:25;;6218:4;6212;6208:15;6200:23;;5919:311;;;:::o;6236:117::-;6345:1;6342;6335:12;6376:710;6472:5;6497:81;6513:64;6570:6;6513:64;:::i;:::-;6497:81;:::i;:::-;6488:90;;6598:5;6627:6;6620:5;6613:21;6661:4;6654:5;6650:16;6643:23;;6714:4;6706:6;6702:17;6694:6;6690:30;6743:3;6735:6;6732:15;6729:122;;;6762:79;;:::i;:::-;6729:122;6877:6;6860:220;6894:6;6889:3;6886:15;6860:220;;;6969:3;6998:37;7031:3;7019:10;6998:37;:::i;:::-;6993:3;6986:50;7065:4;7060:3;7056:14;7049:21;;6936:144;6920:4;6915:3;6911:14;6904:21;;6860:220;;;6864:21;6478:608;;6376:710;;;;;:::o;7109:370::-;7180:5;7229:3;7222:4;7214:6;7210:17;7206:27;7196:122;;7237:79;;:::i;:::-;7196:122;7354:6;7341:20;7379:94;7469:3;7461:6;7454:4;7446:6;7442:17;7379:94;:::i;:::-;7370:103;;7186:293;7109:370;;;;:::o;7485:311::-;7562:4;7652:18;7644:6;7641:30;7638:56;;;7674:18;;:::i;:::-;7638:56;7724:4;7716:6;7712:17;7704:25;;7784:4;7778;7774:15;7766:23;;7485:311;;;:::o;7819:710::-;7915:5;7940:81;7956:64;8013:6;7956:64;:::i;:::-;7940:81;:::i;:::-;7931:90;;8041:5;8070:6;8063:5;8056:21;8104:4;8097:5;8093:16;8086:23;;8157:4;8149:6;8145:17;8137:6;8133:30;8186:3;8178:6;8175:15;8172:122;;;8205:79;;:::i;:::-;8172:122;8320:6;8303:220;8337:6;8332:3;8329:15;8303:220;;;8412:3;8441:37;8474:3;8462:10;8441:37;:::i;:::-;8436:3;8429:50;8508:4;8503:3;8499:14;8492:21;;8379:144;8363:4;8358:3;8354:14;8347:21;;8303:220;;;8307:21;7921:608;;7819:710;;;;;:::o;8552:370::-;8623:5;8672:3;8665:4;8657:6;8653:17;8649:27;8639:122;;8680:79;;:::i;:::-;8639:122;8797:6;8784:20;8822:94;8912:3;8904:6;8897:4;8889:6;8885:17;8822:94;:::i;:::-;8813:103;;8629:293;8552:370;;;;:::o;8928:894::-;9046:6;9054;9103:2;9091:9;9082:7;9078:23;9074:32;9071:119;;;9109:79;;:::i;:::-;9071:119;9257:1;9246:9;9242:17;9229:31;9287:18;9279:6;9276:30;9273:117;;;9309:79;;:::i;:::-;9273:117;9414:78;9484:7;9475:6;9464:9;9460:22;9414:78;:::i;:::-;9404:88;;9200:302;9569:2;9558:9;9554:18;9541:32;9600:18;9592:6;9589:30;9586:117;;;9622:79;;:::i;:::-;9586:117;9727:78;9797:7;9788:6;9777:9;9773:22;9727:78;:::i;:::-;9717:88;;9512:303;8928:894;;;;;:::o;9828:329::-;9887:6;9936:2;9924:9;9915:7;9911:23;9907:32;9904:119;;;9942:79;;:::i;:::-;9904:119;10062:1;10087:53;10132:7;10123:6;10112:9;10108:22;10087:53;:::i;:::-;10077:63;;10033:117;9828:329;;;;:::o;10163:118::-;10250:24;10268:5;10250:24;:::i;:::-;10245:3;10238:37;10163:118;;:::o;10287:222::-;10380:4;10418:2;10407:9;10403:18;10395:26;;10431:71;10499:1;10488:9;10484:17;10475:6;10431:71;:::i;:::-;10287:222;;;;:::o;10515:474::-;10583:6;10591;10640:2;10628:9;10619:7;10615:23;10611:32;10608:119;;;10646:79;;:::i;:::-;10608:119;10766:1;10791:53;10836:7;10827:6;10816:9;10812:22;10791:53;:::i;:::-;10781:63;;10737:117;10893:2;10919:53;10964:7;10955:6;10944:9;10940:22;10919:53;:::i;:::-;10909:63;;10864:118;10515:474;;;;;:::o;10995:180::-;11043:77;11040:1;11033:88;11140:4;11137:1;11130:15;11164:4;11161:1;11154:15;11181:320;11225:6;11262:1;11256:4;11252:12;11242:22;;11309:1;11303:4;11299:12;11330:18;11320:81;;11386:4;11378:6;11374:17;11364:27;;11320:81;11448:2;11440:6;11437:14;11417:18;11414:38;11411:84;;11467:18;;:::i;:::-;11411:84;11232:269;11181:320;;;:::o;11507:180::-;11555:77;11552:1;11545:88;11652:4;11649:1;11642:15;11676:4;11673:1;11666:15;11693:191;11733:3;11752:20;11770:1;11752:20;:::i;:::-;11747:25;;11786:20;11804:1;11786:20;:::i;:::-;11781:25;;11829:1;11826;11822:9;11815:16;;11850:3;11847:1;11844:10;11841:36;;;11857:18;;:::i;:::-;11841:36;11693:191;;;;:::o;11890:176::-;12030:28;12026:1;12018:6;12014:14;12007:52;11890:176;:::o;12072:366::-;12214:3;12235:67;12299:2;12294:3;12235:67;:::i;:::-;12228:74;;12311:93;12400:3;12311:93;:::i;:::-;12429:2;12424:3;12420:12;12413:19;;12072:366;;;:::o;12444:419::-;12610:4;12648:2;12637:9;12633:18;12625:26;;12697:9;12691:4;12687:20;12683:1;12672:9;12668:17;12661:47;12725:131;12851:4;12725:131;:::i;:::-;12717:139;;12444:419;;;:::o;12869:180::-;12917:77;12914:1;12907:88;13014:4;13011:1;13004:15;13038:4;13035:1;13028:15;13055:233;13094:3;13117:24;13135:5;13117:24;:::i;:::-;13108:33;;13163:66;13156:5;13153:77;13150:103;;13233:18;;:::i;:::-;13150:103;13280:1;13273:5;13269:13;13262:20;;13055:233;;;:::o;13294:173::-;13434:25;13430:1;13422:6;13418:14;13411:49;13294:173;:::o;13473:366::-;13615:3;13636:67;13700:2;13695:3;13636:67;:::i;:::-;13629:74;;13712:93;13801:3;13712:93;:::i;:::-;13830:2;13825:3;13821:12;13814:19;;13473:366;;;:::o;13845:419::-;14011:4;14049:2;14038:9;14034:18;14026:26;;14098:9;14092:4;14088:20;14084:1;14073:9;14069:17;14062:47;14126:131;14252:4;14126:131;:::i;:::-;14118:139;;13845:419;;;:::o;14270:222::-;14410:34;14406:1;14398:6;14394:14;14387:58;14479:5;14474:2;14466:6;14462:15;14455:30;14270:222;:::o;14498:366::-;14640:3;14661:67;14725:2;14720:3;14661:67;:::i;:::-;14654:74;;14737:93;14826:3;14737:93;:::i;:::-;14855:2;14850:3;14846:12;14839:19;;14498:366;;;:::o;14870:419::-;15036:4;15074:2;15063:9;15059:18;15051:26;;15123:9;15117:4;15113:20;15109:1;15098:9;15094:17;15087:47;15151:131;15277:4;15151:131;:::i;:::-;15143:139;;14870:419;;;:::o;15295:224::-;15435:34;15431:1;15423:6;15419:14;15412:58;15504:7;15499:2;15491:6;15487:15;15480:32;15295:224;:::o;15525:366::-;15667:3;15688:67;15752:2;15747:3;15688:67;:::i;:::-;15681:74;;15764:93;15853:3;15764:93;:::i;:::-;15882:2;15877:3;15873:12;15866:19;;15525:366;;;:::o;15897:419::-;16063:4;16101:2;16090:9;16086:18;16078:26;;16150:9;16144:4;16140:20;16136:1;16125:9;16121:17;16114:47;16178:131;16304:4;16178:131;:::i;:::-;16170:139;;15897:419;;;:::o;16322:225::-;16462:34;16458:1;16450:6;16446:14;16439:58;16531:8;16526:2;16518:6;16514:15;16507:33;16322:225;:::o;16553:366::-;16695:3;16716:67;16780:2;16775:3;16716:67;:::i;:::-;16709:74;;16792:93;16881:3;16792:93;:::i;:::-;16910:2;16905:3;16901:12;16894:19;;16553:366;;;:::o;16925:419::-;17091:4;17129:2;17118:9;17114:18;17106:26;;17178:9;17172:4;17168:20;17164:1;17153:9;17149:17;17142:47;17206:131;17332:4;17206:131;:::i;:::-;17198:139;;16925:419;;;:::o;17350:143::-;17407:5;17438:6;17432:13;17423:22;;17454:33;17481:5;17454:33;:::i;:::-;17350:143;;;;:::o;17499:351::-;17569:6;17618:2;17606:9;17597:7;17593:23;17589:32;17586:119;;;17624:79;;:::i;:::-;17586:119;17744:1;17769:64;17825:7;17816:6;17805:9;17801:22;17769:64;:::i;:::-;17759:74;;17715:128;17499:351;;;;:::o;17856:332::-;17977:4;18015:2;18004:9;18000:18;17992:26;;18028:71;18096:1;18085:9;18081:17;18072:6;18028:71;:::i;:::-;18109:72;18177:2;18166:9;18162:18;18153:6;18109:72;:::i;:::-;17856:332;;;;;:::o;18194:116::-;18264:21;18279:5;18264:21;:::i;:::-;18257:5;18254:32;18244:60;;18300:1;18297;18290:12;18244:60;18194:116;:::o;18316:137::-;18370:5;18401:6;18395:13;18386:22;;18417:30;18441:5;18417:30;:::i;:::-;18316:137;;;;:::o;18459:345::-;18526:6;18575:2;18563:9;18554:7;18550:23;18546:32;18543:119;;;18581:79;;:::i;:::-;18543:119;18701:1;18726:61;18779:7;18770:6;18759:9;18755:22;18726:61;:::i;:::-;18716:71;;18672:125;18459:345;;;;:::o;18810:223::-;18950:34;18946:1;18938:6;18934:14;18927:58;19019:6;19014:2;19006:6;19002:15;18995:31;18810:223;:::o;19039:366::-;19181:3;19202:67;19266:2;19261:3;19202:67;:::i;:::-;19195:74;;19278:93;19367:3;19278:93;:::i;:::-;19396:2;19391:3;19387:12;19380:19;;19039:366;;;:::o;19411:419::-;19577:4;19615:2;19604:9;19600:18;19592:26;;19664:9;19658:4;19654:20;19650:1;19639:9;19635:17;19628:47;19692:131;19818:4;19692:131;:::i;:::-;19684:139;;19411:419;;;:::o;19836:221::-;19976:34;19972:1;19964:6;19960:14;19953:58;20045:4;20040:2;20032:6;20028:15;20021:29;19836:221;:::o;20063:366::-;20205:3;20226:67;20290:2;20285:3;20226:67;:::i;:::-;20219:74;;20302:93;20391:3;20302:93;:::i;:::-;20420:2;20415:3;20411:12;20404:19;;20063:366;;;:::o;20435:419::-;20601:4;20639:2;20628:9;20624:18;20616:26;;20688:9;20682:4;20678:20;20674:1;20663:9;20659:17;20652:47;20716:131;20842:4;20716:131;:::i;:::-;20708:139;;20435:419;;;:::o;20860:179::-;21000:31;20996:1;20988:6;20984:14;20977:55;20860:179;:::o;21045:366::-;21187:3;21208:67;21272:2;21267:3;21208:67;:::i;:::-;21201:74;;21284:93;21373:3;21284:93;:::i;:::-;21402:2;21397:3;21393:12;21386:19;;21045:366;;;:::o;21417:419::-;21583:4;21621:2;21610:9;21606:18;21598:26;;21670:9;21664:4;21660:20;21656:1;21645:9;21641:17;21634:47;21698:131;21824:4;21698:131;:::i;:::-;21690:139;;21417:419;;;:::o;21842:224::-;21982:34;21978:1;21970:6;21966:14;21959:58;22051:7;22046:2;22038:6;22034:15;22027:32;21842:224;:::o;22072:366::-;22214:3;22235:67;22299:2;22294:3;22235:67;:::i;:::-;22228:74;;22311:93;22400:3;22311:93;:::i;:::-;22429:2;22424:3;22420:12;22413:19;;22072:366;;;:::o;22444:419::-;22610:4;22648:2;22637:9;22633:18;22625:26;;22697:9;22691:4;22687:20;22683:1;22672:9;22668:17;22661:47;22725:131;22851:4;22725:131;:::i;:::-;22717:139;;22444:419;;;:::o;22869:222::-;23009:34;23005:1;22997:6;22993:14;22986:58;23078:5;23073:2;23065:6;23061:15;23054:30;22869:222;:::o;23097:366::-;23239:3;23260:67;23324:2;23319:3;23260:67;:::i;:::-;23253:74;;23336:93;23425:3;23336:93;:::i;:::-;23454:2;23449:3;23445:12;23438:19;;23097:366;;;:::o;23469:419::-;23635:4;23673:2;23662:9;23658:18;23650:26;;23722:9;23716:4;23712:20;23708:1;23697:9;23693:17;23686:47;23750:131;23876:4;23750:131;:::i;:::-;23742:139;;23469:419;;;:::o;23894:225::-;24034:34;24030:1;24022:6;24018:14;24011:58;24103:8;24098:2;24090:6;24086:15;24079:33;23894:225;:::o;24125:366::-;24267:3;24288:67;24352:2;24347:3;24288:67;:::i;:::-;24281:74;;24364:93;24453:3;24364:93;:::i;:::-;24482:2;24477:3;24473:12;24466:19;;24125:366;;;:::o;24497:419::-;24663:4;24701:2;24690:9;24686:18;24678:26;;24750:9;24744:4;24740:20;24736:1;24725:9;24721:17;24714:47;24778:131;24904:4;24778:131;:::i;:::-;24770:139;;24497:419;;;:::o;24922:220::-;25062:34;25058:1;25050:6;25046:14;25039:58;25131:3;25126:2;25118:6;25114:15;25107:28;24922:220;:::o;25148:366::-;25290:3;25311:67;25375:2;25370:3;25311:67;:::i;:::-;25304:74;;25387:93;25476:3;25387:93;:::i;:::-;25505:2;25500:3;25496:12;25489:19;;25148:366;;;:::o;25520:419::-;25686:4;25724:2;25713:9;25709:18;25701:26;;25773:9;25767:4;25763:20;25759:1;25748:9;25744:17;25737:47;25801:131;25927:4;25801:131;:::i;:::-;25793:139;;25520:419;;;:::o;25945:221::-;26085:34;26081:1;26073:6;26069:14;26062:58;26154:4;26149:2;26141:6;26137:15;26130:29;25945:221;:::o;26172:366::-;26314:3;26335:67;26399:2;26394:3;26335:67;:::i;:::-;26328:74;;26411:93;26500:3;26411:93;:::i;:::-;26529:2;26524:3;26520:12;26513:19;;26172:366;;;:::o;26544:419::-;26710:4;26748:2;26737:9;26733:18;26725:26;;26797:9;26791:4;26787:20;26783:1;26772:9;26768:17;26761:47;26825:131;26951:4;26825:131;:::i;:::-;26817:139;;26544:419;;;:::o;26969:182::-;27109:34;27105:1;27097:6;27093:14;27086:58;26969:182;:::o;27157:366::-;27299:3;27320:67;27384:2;27379:3;27320:67;:::i;:::-;27313:74;;27396:93;27485:3;27396:93;:::i;:::-;27514:2;27509:3;27505:12;27498:19;;27157:366;;;:::o;27529:419::-;27695:4;27733:2;27722:9;27718:18;27710:26;;27782:9;27776:4;27772:20;27768:1;27757:9;27753:17;27746:47;27810:131;27936:4;27810:131;:::i;:::-;27802:139;;27529:419;;;:::o

Swarm Source

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