ETH Price: $3,403.02 (+2.62%)
Gas: 3.76 Gwei

Token

NΞ♢ PΞPΣ (NEPE)
 

Overview

Max Total Supply

21,998,132,418 NEPE

Holders

159

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 NEPE

Value
$0.00
0xa91901b400ec1e97e5eb86393cbe2a667543d909
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:
NEPE

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-09-12
*/

// 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 {}
}

pragma solidity ^0.8.9;

contract NEPE is ERC20, Ownable {
  // UTF-8 encoded hexadecimal representation of "NΞ♢ PΞPΣ"
  string private hexName =
    "\xEF\xBC\xAE\xCE\x9E\xE2\x99\xA2 \xEF\xBC\xB0\xCE\x9E\xEF\xBC\xB0\xCE\xA3";

  constructor() ERC20(hexName, "NEPE") {
    _mint(owner(), 21_998_132_418 * (10 ** 18));
  }

  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, "NEPE: 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":"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":"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":"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"}]

60806040526040518060400160405280601381526020017fefbcaece9ee299a220efbcb0ce9eefbcb0cea300000000000000000000000000815250600690816200004a919062000684565b503480156200005857600080fd5b5060068054620000689062000473565b80601f0160208091040260200160405190810160405280929190818152602001828054620000969062000473565b8015620000e75780601f10620000bb57610100808354040283529160200191620000e7565b820191906000526020600020905b815481529060010190602001808311620000c957829003601f168201915b50505050506040518060400160405280600481526020017f4e45504500000000000000000000000000000000000000000000000000000000815250816003908162000133919062000684565b50806004908162000145919062000684565b505050620001686200015c6200019b60201b60201c565b620001a360201b60201c565b620001956200017c6200026960201b60201c565b6b47146dbbe93556bec9c800006200029360201b60201c565b62000886565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000305576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fc90620007cc565b60405180910390fd5b62000319600083836200040060201b60201c565b80600260008282546200032d91906200081d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003e0919062000869565b60405180910390a3620003fc600083836200040560201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048c57607f821691505b602082108103620004a257620004a162000444565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200050c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004cd565b620005188683620004cd565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005656200055f620005598462000530565b6200053a565b62000530565b9050919050565b6000819050919050565b620005818362000544565b6200059962000590826200056c565b848454620004da565b825550505050565b600090565b620005b0620005a1565b620005bd81848462000576565b505050565b5b81811015620005e557620005d9600082620005a6565b600181019050620005c3565b5050565b601f8211156200063457620005fe81620004a8565b6200060984620004bd565b8101602085101562000619578190505b620006316200062885620004bd565b830182620005c2565b50505b505050565b600082821c905092915050565b6000620006596000198460080262000639565b1980831691505092915050565b600062000674838362000646565b9150826002028217905092915050565b6200068f826200040a565b67ffffffffffffffff811115620006ab57620006aa62000415565b5b620006b7825462000473565b620006c4828285620005e9565b600060209050601f831160018114620006fc5760008415620006e7578287015190505b620006f3858262000666565b86555062000763565b601f1984166200070c86620004a8565b60005b8281101562000736578489015182556001820191506020850194506020810190506200070f565b8683101562000756578489015162000752601f89168262000646565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007b4601f836200076b565b9150620007c1826200077c565b602082019050919050565b60006020820190508181036000830152620007e781620007a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200082a8262000530565b9150620008378362000530565b9250828201905080821115620008525762000851620007ee565b5b92915050565b620008638162000530565b82525050565b600060208201905062000880600083018462000858565b92915050565b61191c80620008966000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb1461029f578063dd62ed3e146102cf578063f2fde38b146102ff578063f9d0831a1461031b57610100565b80638da5cb5b1461022957806394e53d361461024757806395d89b4114610251578063a457c2d71461026f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610337565b60405161011a9190610f7b565b60405180910390f35b61013d60048036038101906101389190611036565b6103c9565b60405161014a9190611091565b60405180910390f35b61015b6103ec565b60405161016891906110bb565b60405180910390f35b61018b600480360381019061018691906110d6565b6103f6565b6040516101989190611091565b60405180910390f35b6101a9610425565b6040516101b69190611145565b60405180910390f35b6101d960048036038101906101d49190611036565b61042e565b6040516101e69190611091565b60405180910390f35b61020960048036038101906102049190611160565b610465565b60405161021691906110bb565b60405180910390f35b6102276104ad565b005b6102316104c1565b60405161023e919061119c565b60405180910390f35b61024f6104eb565b005b610259610585565b6040516102669190610f7b565b60405180910390f35b61028960048036038101906102849190611036565b610617565b6040516102969190611091565b60405180910390f35b6102b960048036038101906102b49190611036565b61068e565b6040516102c69190611091565b60405180910390f35b6102e960048036038101906102e491906111b7565b6106b1565b6040516102f691906110bb565b60405180910390f35b61031960048036038101906103149190611160565b610738565b005b61033560048036038101906103309190611160565b6107bb565b005b60606003805461034690611226565b80601f016020809104026020016040519081016040528092919081815260200182805461037290611226565b80156103bf5780601f10610394576101008083540402835291602001916103bf565b820191906000526020600020905b8154815290600101906020018083116103a257829003601f168201915b5050505050905090565b6000806103d46108ca565b90506103e18185856108d2565b600191505092915050565b6000600254905090565b6000806104016108ca565b905061040e858285610a9b565b610419858585610b27565b60019150509392505050565b60006012905090565b6000806104396108ca565b905061045a81858561044b85896106b1565b6104559190611286565b6108d2565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104b5610d9d565b6104bf6000610e1b565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6104f3610d9d565b60004790506000811161053b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105329061132c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610581573d6000803e3d6000fd5b5050565b60606004805461059490611226565b80601f01602080910402602001604051908101604052809291908181526020018280546105c090611226565b801561060d5780601f106105e25761010080835404028352916020019161060d565b820191906000526020600020905b8154815290600101906020018083116105f057829003601f168201915b5050505050905090565b6000806106226108ca565b9050600061063082866106b1565b905083811015610675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066c906113be565b60405180910390fd5b61068282868684036108d2565b60019250505092915050565b6000806106996108ca565b90506106a6818585610b27565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610740610d9d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a690611450565b60405180910390fd5b6107b881610e1b565b50565b6107c3610d9d565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610803919061119c565b602060405180830381865afa158015610820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108449190611485565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016108819291906114b2565b6020604051808303816000875af11580156108a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c49190611507565b50505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610938906115a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a790611638565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a8e91906110bb565b60405180910390a3505050565b6000610aa784846106b1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b215781811015610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a906116a4565b60405180910390fd5b610b2084848484036108d2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90611736565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc906117c8565b60405180910390fd5b610c10838383610ee1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d9061185a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8491906110bb565b60405180910390a3610d97848484610ee6565b50505050565b610da56108ca565b73ffffffffffffffffffffffffffffffffffffffff16610dc36104c1565b73ffffffffffffffffffffffffffffffffffffffff1614610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e10906118c6565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f25578082015181840152602081019050610f0a565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f4d82610eeb565b610f578185610ef6565b9350610f67818560208601610f07565b610f7081610f31565b840191505092915050565b60006020820190508181036000830152610f958184610f42565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fcd82610fa2565b9050919050565b610fdd81610fc2565b8114610fe857600080fd5b50565b600081359050610ffa81610fd4565b92915050565b6000819050919050565b61101381611000565b811461101e57600080fd5b50565b6000813590506110308161100a565b92915050565b6000806040838503121561104d5761104c610f9d565b5b600061105b85828601610feb565b925050602061106c85828601611021565b9150509250929050565b60008115159050919050565b61108b81611076565b82525050565b60006020820190506110a66000830184611082565b92915050565b6110b581611000565b82525050565b60006020820190506110d060008301846110ac565b92915050565b6000806000606084860312156110ef576110ee610f9d565b5b60006110fd86828701610feb565b935050602061110e86828701610feb565b925050604061111f86828701611021565b9150509250925092565b600060ff82169050919050565b61113f81611129565b82525050565b600060208201905061115a6000830184611136565b92915050565b60006020828403121561117657611175610f9d565b5b600061118484828501610feb565b91505092915050565b61119681610fc2565b82525050565b60006020820190506111b1600083018461118d565b92915050565b600080604083850312156111ce576111cd610f9d565b5b60006111dc85828601610feb565b92505060206111ed85828601610feb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061123e57607f821691505b602082108103611251576112506111f7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061129182611000565b915061129c83611000565b92508282019050808211156112b4576112b3611257565b5b92915050565b7f4e4550453a204e6f2045544820617661696c61626c6520666f72207265636f7660008201527f6572790000000000000000000000000000000000000000000000000000000000602082015250565b6000611316602383610ef6565b9150611321826112ba565b604082019050919050565b6000602082019050818103600083015261134581611309565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006113a8602583610ef6565b91506113b38261134c565b604082019050919050565b600060208201905081810360008301526113d78161139b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061143a602683610ef6565b9150611445826113de565b604082019050919050565b600060208201905081810360008301526114698161142d565b9050919050565b60008151905061147f8161100a565b92915050565b60006020828403121561149b5761149a610f9d565b5b60006114a984828501611470565b91505092915050565b60006040820190506114c7600083018561118d565b6114d460208301846110ac565b9392505050565b6114e481611076565b81146114ef57600080fd5b50565b600081519050611501816114db565b92915050565b60006020828403121561151d5761151c610f9d565b5b600061152b848285016114f2565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611590602483610ef6565b915061159b82611534565b604082019050919050565b600060208201905081810360008301526115bf81611583565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611622602283610ef6565b915061162d826115c6565b604082019050919050565b6000602082019050818103600083015261165181611615565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061168e601d83610ef6565b915061169982611658565b602082019050919050565b600060208201905081810360008301526116bd81611681565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611720602583610ef6565b915061172b826116c4565b604082019050919050565b6000602082019050818103600083015261174f81611713565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006117b2602383610ef6565b91506117bd82611756565b604082019050919050565b600060208201905081810360008301526117e1816117a5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611844602683610ef6565b915061184f826117e8565b604082019050919050565b6000602082019050818103600083015261187381611837565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118b0602083610ef6565b91506118bb8261187a565b602082019050919050565b600060208201905081810360008301526118df816118a3565b905091905056fea26469706673582212208f44720732a2b9e3039c293fd3f2145dcf1aee8032e2c2c7f33c223081d2178e64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb1461029f578063dd62ed3e146102cf578063f2fde38b146102ff578063f9d0831a1461031b57610100565b80638da5cb5b1461022957806394e53d361461024757806395d89b4114610251578063a457c2d71461026f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610337565b60405161011a9190610f7b565b60405180910390f35b61013d60048036038101906101389190611036565b6103c9565b60405161014a9190611091565b60405180910390f35b61015b6103ec565b60405161016891906110bb565b60405180910390f35b61018b600480360381019061018691906110d6565b6103f6565b6040516101989190611091565b60405180910390f35b6101a9610425565b6040516101b69190611145565b60405180910390f35b6101d960048036038101906101d49190611036565b61042e565b6040516101e69190611091565b60405180910390f35b61020960048036038101906102049190611160565b610465565b60405161021691906110bb565b60405180910390f35b6102276104ad565b005b6102316104c1565b60405161023e919061119c565b60405180910390f35b61024f6104eb565b005b610259610585565b6040516102669190610f7b565b60405180910390f35b61028960048036038101906102849190611036565b610617565b6040516102969190611091565b60405180910390f35b6102b960048036038101906102b49190611036565b61068e565b6040516102c69190611091565b60405180910390f35b6102e960048036038101906102e491906111b7565b6106b1565b6040516102f691906110bb565b60405180910390f35b61031960048036038101906103149190611160565b610738565b005b61033560048036038101906103309190611160565b6107bb565b005b60606003805461034690611226565b80601f016020809104026020016040519081016040528092919081815260200182805461037290611226565b80156103bf5780601f10610394576101008083540402835291602001916103bf565b820191906000526020600020905b8154815290600101906020018083116103a257829003601f168201915b5050505050905090565b6000806103d46108ca565b90506103e18185856108d2565b600191505092915050565b6000600254905090565b6000806104016108ca565b905061040e858285610a9b565b610419858585610b27565b60019150509392505050565b60006012905090565b6000806104396108ca565b905061045a81858561044b85896106b1565b6104559190611286565b6108d2565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104b5610d9d565b6104bf6000610e1b565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6104f3610d9d565b60004790506000811161053b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105329061132c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610581573d6000803e3d6000fd5b5050565b60606004805461059490611226565b80601f01602080910402602001604051908101604052809291908181526020018280546105c090611226565b801561060d5780601f106105e25761010080835404028352916020019161060d565b820191906000526020600020905b8154815290600101906020018083116105f057829003601f168201915b5050505050905090565b6000806106226108ca565b9050600061063082866106b1565b905083811015610675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066c906113be565b60405180910390fd5b61068282868684036108d2565b60019250505092915050565b6000806106996108ca565b90506106a6818585610b27565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610740610d9d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a690611450565b60405180910390fd5b6107b881610e1b565b50565b6107c3610d9d565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610803919061119c565b602060405180830381865afa158015610820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108449190611485565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016108819291906114b2565b6020604051808303816000875af11580156108a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c49190611507565b50505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610938906115a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a790611638565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a8e91906110bb565b60405180910390a3505050565b6000610aa784846106b1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b215781811015610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a906116a4565b60405180910390fd5b610b2084848484036108d2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90611736565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc906117c8565b60405180910390fd5b610c10838383610ee1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d9061185a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8491906110bb565b60405180910390a3610d97848484610ee6565b50505050565b610da56108ca565b73ffffffffffffffffffffffffffffffffffffffff16610dc36104c1565b73ffffffffffffffffffffffffffffffffffffffff1614610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e10906118c6565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f25578082015181840152602081019050610f0a565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f4d82610eeb565b610f578185610ef6565b9350610f67818560208601610f07565b610f7081610f31565b840191505092915050565b60006020820190508181036000830152610f958184610f42565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fcd82610fa2565b9050919050565b610fdd81610fc2565b8114610fe857600080fd5b50565b600081359050610ffa81610fd4565b92915050565b6000819050919050565b61101381611000565b811461101e57600080fd5b50565b6000813590506110308161100a565b92915050565b6000806040838503121561104d5761104c610f9d565b5b600061105b85828601610feb565b925050602061106c85828601611021565b9150509250929050565b60008115159050919050565b61108b81611076565b82525050565b60006020820190506110a66000830184611082565b92915050565b6110b581611000565b82525050565b60006020820190506110d060008301846110ac565b92915050565b6000806000606084860312156110ef576110ee610f9d565b5b60006110fd86828701610feb565b935050602061110e86828701610feb565b925050604061111f86828701611021565b9150509250925092565b600060ff82169050919050565b61113f81611129565b82525050565b600060208201905061115a6000830184611136565b92915050565b60006020828403121561117657611175610f9d565b5b600061118484828501610feb565b91505092915050565b61119681610fc2565b82525050565b60006020820190506111b1600083018461118d565b92915050565b600080604083850312156111ce576111cd610f9d565b5b60006111dc85828601610feb565b92505060206111ed85828601610feb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061123e57607f821691505b602082108103611251576112506111f7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061129182611000565b915061129c83611000565b92508282019050808211156112b4576112b3611257565b5b92915050565b7f4e4550453a204e6f2045544820617661696c61626c6520666f72207265636f7660008201527f6572790000000000000000000000000000000000000000000000000000000000602082015250565b6000611316602383610ef6565b9150611321826112ba565b604082019050919050565b6000602082019050818103600083015261134581611309565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006113a8602583610ef6565b91506113b38261134c565b604082019050919050565b600060208201905081810360008301526113d78161139b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061143a602683610ef6565b9150611445826113de565b604082019050919050565b600060208201905081810360008301526114698161142d565b9050919050565b60008151905061147f8161100a565b92915050565b60006020828403121561149b5761149a610f9d565b5b60006114a984828501611470565b91505092915050565b60006040820190506114c7600083018561118d565b6114d460208301846110ac565b9392505050565b6114e481611076565b81146114ef57600080fd5b50565b600081519050611501816114db565b92915050565b60006020828403121561151d5761151c610f9d565b5b600061152b848285016114f2565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611590602483610ef6565b915061159b82611534565b604082019050919050565b600060208201905081810360008301526115bf81611583565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611622602283610ef6565b915061162d826115c6565b604082019050919050565b6000602082019050818103600083015261165181611615565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061168e601d83610ef6565b915061169982611658565b602082019050919050565b600060208201905081810360008301526116bd81611681565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611720602583610ef6565b915061172b826116c4565b604082019050919050565b6000602082019050818103600083015261174f81611713565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006117b2602383610ef6565b91506117bd82611756565b604082019050919050565b600060208201905081810360008301526117e1816117a5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611844602683610ef6565b915061184f826117e8565b604082019050919050565b6000602082019050818103600083015261187381611837565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118b0602083610ef6565b91506118bb8261187a565b602082019050919050565b600060208201905081810360008301526118df816118a3565b905091905056fea26469706673582212208f44720732a2b9e3039c293fd3f2145dcf1aee8032e2c2c7f33c223081d2178e64736f6c63430008120033

Deployed Bytecode Sourcemap

19453:752: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;:::-;;;;;;;;10143:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2612:97;;;:::i;:::-;;2000:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19992: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;:::-;;19773: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;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;19992:210::-;1900:13;:11;:13::i;:::-;20047:15:::1;20065:21;20047:39;;20111:1;20101:7;:11;20093:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;20167:10;20159:28;;:37;20188:7;20159:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;20040:162;19992: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;19773:213::-;1900:13;:11;:13::i;:::-;19840:17:::1;19867:5;19840:33;;19880:15;19898:10;:20;;;19927:4;19898:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19880:53;;19940:10;:19;;;19960:10;19972:7;19940:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19833:153;;19773: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;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;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: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:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:222::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:5;7119:2;7111:6;7107:15;7100:30;6915:222;:::o;7143:366::-;7285:3;7306:67;7370:2;7365:3;7306:67;:::i;:::-;7299:74;;7382:93;7471:3;7382:93;:::i;:::-;7500:2;7495:3;7491:12;7484:19;;7143:366;;;:::o;7515:419::-;7681:4;7719:2;7708:9;7704:18;7696:26;;7768:9;7762:4;7758:20;7754:1;7743:9;7739:17;7732:47;7796:131;7922:4;7796:131;:::i;:::-;7788:139;;7515:419;;;:::o;7940:224::-;8080:34;8076:1;8068:6;8064:14;8057:58;8149:7;8144:2;8136:6;8132:15;8125:32;7940:224;:::o;8170:366::-;8312:3;8333:67;8397:2;8392:3;8333:67;:::i;:::-;8326:74;;8409:93;8498:3;8409:93;:::i;:::-;8527:2;8522:3;8518:12;8511:19;;8170:366;;;:::o;8542:419::-;8708:4;8746:2;8735:9;8731:18;8723:26;;8795:9;8789:4;8785:20;8781:1;8770:9;8766:17;8759:47;8823:131;8949:4;8823:131;:::i;:::-;8815:139;;8542:419;;;:::o;8967:225::-;9107:34;9103:1;9095:6;9091:14;9084:58;9176:8;9171:2;9163:6;9159:15;9152:33;8967:225;:::o;9198:366::-;9340:3;9361:67;9425:2;9420:3;9361:67;:::i;:::-;9354:74;;9437:93;9526:3;9437:93;:::i;:::-;9555:2;9550:3;9546:12;9539:19;;9198:366;;;:::o;9570:419::-;9736:4;9774:2;9763:9;9759:18;9751:26;;9823:9;9817:4;9813:20;9809:1;9798:9;9794:17;9787:47;9851:131;9977:4;9851:131;:::i;:::-;9843:139;;9570:419;;;:::o;9995:143::-;10052:5;10083:6;10077:13;10068:22;;10099:33;10126:5;10099:33;:::i;:::-;9995:143;;;;:::o;10144:351::-;10214:6;10263:2;10251:9;10242:7;10238:23;10234:32;10231:119;;;10269:79;;:::i;:::-;10231:119;10389:1;10414:64;10470:7;10461:6;10450:9;10446:22;10414:64;:::i;:::-;10404:74;;10360:128;10144:351;;;;:::o;10501:332::-;10622:4;10660:2;10649:9;10645:18;10637:26;;10673:71;10741:1;10730:9;10726:17;10717:6;10673:71;:::i;:::-;10754:72;10822:2;10811:9;10807:18;10798:6;10754:72;:::i;:::-;10501:332;;;;;:::o;10839:116::-;10909:21;10924:5;10909:21;:::i;:::-;10902:5;10899:32;10889:60;;10945:1;10942;10935:12;10889:60;10839:116;:::o;10961:137::-;11015:5;11046:6;11040:13;11031:22;;11062:30;11086:5;11062:30;:::i;:::-;10961:137;;;;:::o;11104:345::-;11171:6;11220:2;11208:9;11199:7;11195:23;11191:32;11188:119;;;11226:79;;:::i;:::-;11188:119;11346:1;11371:61;11424:7;11415:6;11404:9;11400:22;11371:61;:::i;:::-;11361:71;;11317:125;11104:345;;;;:::o;11455:223::-;11595:34;11591:1;11583:6;11579:14;11572:58;11664:6;11659:2;11651:6;11647:15;11640:31;11455:223;:::o;11684:366::-;11826:3;11847:67;11911:2;11906:3;11847:67;:::i;:::-;11840:74;;11923:93;12012:3;11923:93;:::i;:::-;12041:2;12036:3;12032:12;12025:19;;11684:366;;;:::o;12056:419::-;12222:4;12260:2;12249:9;12245:18;12237:26;;12309:9;12303:4;12299:20;12295:1;12284:9;12280:17;12273:47;12337:131;12463:4;12337:131;:::i;:::-;12329:139;;12056:419;;;:::o;12481:221::-;12621:34;12617:1;12609:6;12605:14;12598:58;12690:4;12685:2;12677:6;12673:15;12666:29;12481:221;:::o;12708:366::-;12850:3;12871:67;12935:2;12930:3;12871:67;:::i;:::-;12864:74;;12947:93;13036:3;12947:93;:::i;:::-;13065:2;13060:3;13056:12;13049:19;;12708:366;;;:::o;13080:419::-;13246:4;13284:2;13273:9;13269:18;13261:26;;13333:9;13327:4;13323:20;13319:1;13308:9;13304:17;13297:47;13361:131;13487:4;13361:131;:::i;:::-;13353:139;;13080:419;;;:::o;13505:179::-;13645:31;13641:1;13633:6;13629:14;13622:55;13505:179;:::o;13690:366::-;13832:3;13853:67;13917:2;13912:3;13853:67;:::i;:::-;13846:74;;13929:93;14018:3;13929:93;:::i;:::-;14047:2;14042:3;14038:12;14031:19;;13690:366;;;:::o;14062:419::-;14228:4;14266:2;14255:9;14251:18;14243:26;;14315:9;14309:4;14305:20;14301:1;14290:9;14286:17;14279:47;14343:131;14469:4;14343:131;:::i;:::-;14335:139;;14062:419;;;:::o;14487:224::-;14627:34;14623:1;14615:6;14611:14;14604:58;14696:7;14691:2;14683:6;14679:15;14672:32;14487:224;:::o;14717:366::-;14859:3;14880:67;14944:2;14939:3;14880:67;:::i;:::-;14873:74;;14956:93;15045:3;14956:93;:::i;:::-;15074:2;15069:3;15065:12;15058:19;;14717:366;;;:::o;15089:419::-;15255:4;15293:2;15282:9;15278:18;15270:26;;15342:9;15336:4;15332:20;15328:1;15317:9;15313:17;15306:47;15370:131;15496:4;15370:131;:::i;:::-;15362:139;;15089:419;;;:::o;15514:222::-;15654:34;15650:1;15642:6;15638:14;15631:58;15723:5;15718:2;15710:6;15706:15;15699:30;15514:222;:::o;15742:366::-;15884:3;15905:67;15969:2;15964:3;15905:67;:::i;:::-;15898:74;;15981:93;16070:3;15981:93;:::i;:::-;16099:2;16094:3;16090:12;16083:19;;15742:366;;;:::o;16114:419::-;16280:4;16318:2;16307:9;16303:18;16295:26;;16367:9;16361:4;16357:20;16353:1;16342:9;16338:17;16331:47;16395:131;16521:4;16395:131;:::i;:::-;16387:139;;16114:419;;;:::o;16539:225::-;16679:34;16675:1;16667:6;16663:14;16656:58;16748:8;16743:2;16735:6;16731:15;16724:33;16539:225;:::o;16770:366::-;16912:3;16933:67;16997:2;16992:3;16933:67;:::i;:::-;16926:74;;17009:93;17098:3;17009:93;:::i;:::-;17127:2;17122:3;17118:12;17111:19;;16770:366;;;:::o;17142:419::-;17308:4;17346:2;17335:9;17331:18;17323:26;;17395:9;17389:4;17385:20;17381:1;17370:9;17366:17;17359:47;17423:131;17549:4;17423:131;:::i;:::-;17415:139;;17142:419;;;:::o;17567:182::-;17707:34;17703:1;17695:6;17691:14;17684:58;17567:182;:::o;17755:366::-;17897:3;17918:67;17982:2;17977:3;17918:67;:::i;:::-;17911:74;;17994:93;18083:3;17994:93;:::i;:::-;18112:2;18107:3;18103:12;18096:19;;17755:366;;;:::o;18127:419::-;18293:4;18331:2;18320:9;18316:18;18308:26;;18380:9;18374:4;18370:20;18366:1;18355:9;18351:17;18344:47;18408:131;18534:4;18408:131;:::i;:::-;18400:139;;18127:419;;;:::o

Swarm Source

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