ETH Price: $3,377.93 (-1.92%)
Gas: 2 Gwei

Token

Miner Token (MINE)
 

Overview

Max Total Supply

300,000,000 MINE

Holders

922

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,000 MINE

Value
$0.00
0x41c9152a713ac2c48d650862b418a2cc767cebe2
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:
MinerToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

/**
 * @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.9;

/**
 * @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.9;

/**
 * @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.9;

/**
 * @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.9;

/**
 * @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 MinerToken is ERC20, Ownable {

  constructor() ERC20("Miner Token", "MINE") {
    _mint(owner(), 300_000_000 * (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, "MINE: No ETH available for recovery");
    payable(msg.sender).transfer(balance);
  }

  receive() external payable{}
}

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"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f4d696e657220546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d494e450000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620005df565b508060049081620000a19190620005df565b505050620000c4620000b8620000f660201b60201c565b620000fe60201b60201c565b620000f0620000d8620001c460201b60201c565b6af8277896582678ac000000620001ee60201b60201c565b620007e1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002579062000727565b60405180910390fd5b62000274600083836200035b60201b60201c565b806002600082825462000288919062000778565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033b9190620007c4565b60405180910390a362000357600083836200036060201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e757607f821691505b602082108103620003fd57620003fc6200039f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000428565b62000473868362000428565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004c0620004ba620004b4846200048b565b62000495565b6200048b565b9050919050565b6000819050919050565b620004dc836200049f565b620004f4620004eb82620004c7565b84845462000435565b825550505050565b600090565b6200050b620004fc565b62000518818484620004d1565b505050565b5b8181101562000540576200053460008262000501565b6001810190506200051e565b5050565b601f8211156200058f57620005598162000403565b620005648462000418565b8101602085101562000574578190505b6200058c620005838562000418565b8301826200051d565b50505b505050565b600082821c905092915050565b6000620005b46000198460080262000594565b1980831691505092915050565b6000620005cf8383620005a1565b9150826002028217905092915050565b620005ea8262000365565b67ffffffffffffffff81111562000606576200060562000370565b5b620006128254620003ce565b6200061f82828562000544565b600060209050601f83116001811462000657576000841562000642578287015190505b6200064e8582620005c1565b865550620006be565b601f198416620006678662000403565b60005b8281101562000691578489015182556001820191506020850194506020810190506200066a565b86831015620006b15784890151620006ad601f891682620005a1565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200070f601f83620006c6565b91506200071c82620006d7565b602082019050919050565b60006020820190508181036000830152620007428162000700565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000785826200048b565b915062000792836200048b565b9250828201905080821115620007ad57620007ac62000749565b5b92915050565b620007be816200048b565b82525050565b6000602082019050620007db6000830184620007b3565b92915050565b6119ea80620007f16000396000f3fe6080604052600436106100f75760003560e01c80638da5cb5b1161008a578063a9059cbb11610059578063a9059cbb14610339578063dd62ed3e14610376578063f2fde38b146103b3578063f9d0831a146103dc576100fe565b80638da5cb5b1461028f57806394e53d36146102ba57806395d89b41146102d1578063a457c2d7146102fc576100fe565b8063313ce567116100c6578063313ce567146101d357806339509351146101fe57806370a082311461023b578063715018a614610278576100fe565b806306fdde0314610103578063095ea7b31461012e57806318160ddd1461016b57806323b872dd14610196576100fe565b366100fe57005b600080fd5b34801561010f57600080fd5b50610118610405565b6040516101259190611049565b60405180910390f35b34801561013a57600080fd5b5061015560048036038101906101509190611104565b610497565b604051610162919061115f565b60405180910390f35b34801561017757600080fd5b506101806104ba565b60405161018d9190611189565b60405180910390f35b3480156101a257600080fd5b506101bd60048036038101906101b891906111a4565b6104c4565b6040516101ca919061115f565b60405180910390f35b3480156101df57600080fd5b506101e86104f3565b6040516101f59190611213565b60405180910390f35b34801561020a57600080fd5b5061022560048036038101906102209190611104565b6104fc565b604051610232919061115f565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d919061122e565b610533565b60405161026f9190611189565b60405180910390f35b34801561028457600080fd5b5061028d61057b565b005b34801561029b57600080fd5b506102a461058f565b6040516102b1919061126a565b60405180910390f35b3480156102c657600080fd5b506102cf6105b9565b005b3480156102dd57600080fd5b506102e6610653565b6040516102f39190611049565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190611104565b6106e5565b604051610330919061115f565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190611104565b61075c565b60405161036d919061115f565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190611285565b61077f565b6040516103aa9190611189565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d5919061122e565b610806565b005b3480156103e857600080fd5b5061040360048036038101906103fe919061122e565b610889565b005b606060038054610414906112f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610440906112f4565b801561048d5780601f106104625761010080835404028352916020019161048d565b820191906000526020600020905b81548152906001019060200180831161047057829003601f168201915b5050505050905090565b6000806104a2610998565b90506104af8185856109a0565b600191505092915050565b6000600254905090565b6000806104cf610998565b90506104dc858285610b69565b6104e7858585610bf5565b60019150509392505050565b60006012905090565b600080610507610998565b9050610528818585610519858961077f565b6105239190611354565b6109a0565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610583610e6b565b61058d6000610ee9565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105c1610e6b565b600047905060008111610609576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610600906113fa565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561064f573d6000803e3d6000fd5b5050565b606060048054610662906112f4565b80601f016020809104026020016040519081016040528092919081815260200182805461068e906112f4565b80156106db5780601f106106b0576101008083540402835291602001916106db565b820191906000526020600020905b8154815290600101906020018083116106be57829003601f168201915b5050505050905090565b6000806106f0610998565b905060006106fe828661077f565b905083811015610743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073a9061148c565b60405180910390fd5b61075082868684036109a0565b60019250505092915050565b600080610767610998565b9050610774818585610bf5565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61080e610e6b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361087d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108749061151e565b60405180910390fd5b61088681610ee9565b50565b610891610e6b565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108d1919061126a565b602060405180830381865afa1580156108ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109129190611553565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161094f929190611580565b6020604051808303816000875af115801561096e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099291906115d5565b50505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0690611674565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590611706565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5c9190611189565b60405180910390a3505050565b6000610b75848461077f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bef5781811015610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890611772565b60405180910390fd5b610bee84848484036109a0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90611804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90611896565b60405180910390fd5b610cde838383610faf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90611928565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e529190611189565b60405180910390a3610e65848484610fb4565b50505050565b610e73610998565b73ffffffffffffffffffffffffffffffffffffffff16610e9161058f565b73ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90611994565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ff3578082015181840152602081019050610fd8565b60008484015250505050565b6000601f19601f8301169050919050565b600061101b82610fb9565b6110258185610fc4565b9350611035818560208601610fd5565b61103e81610fff565b840191505092915050565b600060208201905081810360008301526110638184611010565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061109b82611070565b9050919050565b6110ab81611090565b81146110b657600080fd5b50565b6000813590506110c8816110a2565b92915050565b6000819050919050565b6110e1816110ce565b81146110ec57600080fd5b50565b6000813590506110fe816110d8565b92915050565b6000806040838503121561111b5761111a61106b565b5b6000611129858286016110b9565b925050602061113a858286016110ef565b9150509250929050565b60008115159050919050565b61115981611144565b82525050565b60006020820190506111746000830184611150565b92915050565b611183816110ce565b82525050565b600060208201905061119e600083018461117a565b92915050565b6000806000606084860312156111bd576111bc61106b565b5b60006111cb868287016110b9565b93505060206111dc868287016110b9565b92505060406111ed868287016110ef565b9150509250925092565b600060ff82169050919050565b61120d816111f7565b82525050565b60006020820190506112286000830184611204565b92915050565b6000602082840312156112445761124361106b565b5b6000611252848285016110b9565b91505092915050565b61126481611090565b82525050565b600060208201905061127f600083018461125b565b92915050565b6000806040838503121561129c5761129b61106b565b5b60006112aa858286016110b9565b92505060206112bb858286016110b9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061130c57607f821691505b60208210810361131f5761131e6112c5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061135f826110ce565b915061136a836110ce565b925082820190508082111561138257611381611325565b5b92915050565b7f4d494e453a204e6f2045544820617661696c61626c6520666f72207265636f7660008201527f6572790000000000000000000000000000000000000000000000000000000000602082015250565b60006113e4602383610fc4565b91506113ef82611388565b604082019050919050565b60006020820190508181036000830152611413816113d7565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611476602583610fc4565b91506114818261141a565b604082019050919050565b600060208201905081810360008301526114a581611469565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611508602683610fc4565b9150611513826114ac565b604082019050919050565b60006020820190508181036000830152611537816114fb565b9050919050565b60008151905061154d816110d8565b92915050565b6000602082840312156115695761156861106b565b5b60006115778482850161153e565b91505092915050565b6000604082019050611595600083018561125b565b6115a2602083018461117a565b9392505050565b6115b281611144565b81146115bd57600080fd5b50565b6000815190506115cf816115a9565b92915050565b6000602082840312156115eb576115ea61106b565b5b60006115f9848285016115c0565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061165e602483610fc4565b915061166982611602565b604082019050919050565b6000602082019050818103600083015261168d81611651565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116f0602283610fc4565b91506116fb82611694565b604082019050919050565b6000602082019050818103600083015261171f816116e3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061175c601d83610fc4565b915061176782611726565b602082019050919050565b6000602082019050818103600083015261178b8161174f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117ee602583610fc4565b91506117f982611792565b604082019050919050565b6000602082019050818103600083015261181d816117e1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611880602383610fc4565b915061188b82611824565b604082019050919050565b600060208201905081810360008301526118af81611873565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611912602683610fc4565b915061191d826118b6565b604082019050919050565b6000602082019050818103600083015261194181611905565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061197e602083610fc4565b915061198982611948565b602082019050919050565b600060208201905081810360008301526119ad81611971565b905091905056fea26469706673582212201359d0f75b1ccfd0f5bd7b296df138a9a42525bba9ebc0fe61f58b3b77df43ac64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106100f75760003560e01c80638da5cb5b1161008a578063a9059cbb11610059578063a9059cbb14610339578063dd62ed3e14610376578063f2fde38b146103b3578063f9d0831a146103dc576100fe565b80638da5cb5b1461028f57806394e53d36146102ba57806395d89b41146102d1578063a457c2d7146102fc576100fe565b8063313ce567116100c6578063313ce567146101d357806339509351146101fe57806370a082311461023b578063715018a614610278576100fe565b806306fdde0314610103578063095ea7b31461012e57806318160ddd1461016b57806323b872dd14610196576100fe565b366100fe57005b600080fd5b34801561010f57600080fd5b50610118610405565b6040516101259190611049565b60405180910390f35b34801561013a57600080fd5b5061015560048036038101906101509190611104565b610497565b604051610162919061115f565b60405180910390f35b34801561017757600080fd5b506101806104ba565b60405161018d9190611189565b60405180910390f35b3480156101a257600080fd5b506101bd60048036038101906101b891906111a4565b6104c4565b6040516101ca919061115f565b60405180910390f35b3480156101df57600080fd5b506101e86104f3565b6040516101f59190611213565b60405180910390f35b34801561020a57600080fd5b5061022560048036038101906102209190611104565b6104fc565b604051610232919061115f565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d919061122e565b610533565b60405161026f9190611189565b60405180910390f35b34801561028457600080fd5b5061028d61057b565b005b34801561029b57600080fd5b506102a461058f565b6040516102b1919061126a565b60405180910390f35b3480156102c657600080fd5b506102cf6105b9565b005b3480156102dd57600080fd5b506102e6610653565b6040516102f39190611049565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190611104565b6106e5565b604051610330919061115f565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190611104565b61075c565b60405161036d919061115f565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190611285565b61077f565b6040516103aa9190611189565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d5919061122e565b610806565b005b3480156103e857600080fd5b5061040360048036038101906103fe919061122e565b610889565b005b606060038054610414906112f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610440906112f4565b801561048d5780601f106104625761010080835404028352916020019161048d565b820191906000526020600020905b81548152906001019060200180831161047057829003601f168201915b5050505050905090565b6000806104a2610998565b90506104af8185856109a0565b600191505092915050565b6000600254905090565b6000806104cf610998565b90506104dc858285610b69565b6104e7858585610bf5565b60019150509392505050565b60006012905090565b600080610507610998565b9050610528818585610519858961077f565b6105239190611354565b6109a0565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610583610e6b565b61058d6000610ee9565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105c1610e6b565b600047905060008111610609576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610600906113fa565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561064f573d6000803e3d6000fd5b5050565b606060048054610662906112f4565b80601f016020809104026020016040519081016040528092919081815260200182805461068e906112f4565b80156106db5780601f106106b0576101008083540402835291602001916106db565b820191906000526020600020905b8154815290600101906020018083116106be57829003601f168201915b5050505050905090565b6000806106f0610998565b905060006106fe828661077f565b905083811015610743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073a9061148c565b60405180910390fd5b61075082868684036109a0565b60019250505092915050565b600080610767610998565b9050610774818585610bf5565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61080e610e6b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361087d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108749061151e565b60405180910390fd5b61088681610ee9565b50565b610891610e6b565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108d1919061126a565b602060405180830381865afa1580156108ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109129190611553565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161094f929190611580565b6020604051808303816000875af115801561096e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099291906115d5565b50505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0690611674565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590611706565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5c9190611189565b60405180910390a3505050565b6000610b75848461077f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bef5781811015610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890611772565b60405180910390fd5b610bee84848484036109a0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90611804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90611896565b60405180910390fd5b610cde838383610faf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90611928565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e529190611189565b60405180910390a3610e65848484610fb4565b50505050565b610e73610998565b73ffffffffffffffffffffffffffffffffffffffff16610e9161058f565b73ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90611994565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ff3578082015181840152602081019050610fd8565b60008484015250505050565b6000601f19601f8301169050919050565b600061101b82610fb9565b6110258185610fc4565b9350611035818560208601610fd5565b61103e81610fff565b840191505092915050565b600060208201905081810360008301526110638184611010565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061109b82611070565b9050919050565b6110ab81611090565b81146110b657600080fd5b50565b6000813590506110c8816110a2565b92915050565b6000819050919050565b6110e1816110ce565b81146110ec57600080fd5b50565b6000813590506110fe816110d8565b92915050565b6000806040838503121561111b5761111a61106b565b5b6000611129858286016110b9565b925050602061113a858286016110ef565b9150509250929050565b60008115159050919050565b61115981611144565b82525050565b60006020820190506111746000830184611150565b92915050565b611183816110ce565b82525050565b600060208201905061119e600083018461117a565b92915050565b6000806000606084860312156111bd576111bc61106b565b5b60006111cb868287016110b9565b93505060206111dc868287016110b9565b92505060406111ed868287016110ef565b9150509250925092565b600060ff82169050919050565b61120d816111f7565b82525050565b60006020820190506112286000830184611204565b92915050565b6000602082840312156112445761124361106b565b5b6000611252848285016110b9565b91505092915050565b61126481611090565b82525050565b600060208201905061127f600083018461125b565b92915050565b6000806040838503121561129c5761129b61106b565b5b60006112aa858286016110b9565b92505060206112bb858286016110b9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061130c57607f821691505b60208210810361131f5761131e6112c5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061135f826110ce565b915061136a836110ce565b925082820190508082111561138257611381611325565b5b92915050565b7f4d494e453a204e6f2045544820617661696c61626c6520666f72207265636f7660008201527f6572790000000000000000000000000000000000000000000000000000000000602082015250565b60006113e4602383610fc4565b91506113ef82611388565b604082019050919050565b60006020820190508181036000830152611413816113d7565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611476602583610fc4565b91506114818261141a565b604082019050919050565b600060208201905081810360008301526114a581611469565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611508602683610fc4565b9150611513826114ac565b604082019050919050565b60006020820190508181036000830152611537816114fb565b9050919050565b60008151905061154d816110d8565b92915050565b6000602082840312156115695761156861106b565b5b60006115778482850161153e565b91505092915050565b6000604082019050611595600083018561125b565b6115a2602083018461117a565b9392505050565b6115b281611144565b81146115bd57600080fd5b50565b6000815190506115cf816115a9565b92915050565b6000602082840312156115eb576115ea61106b565b5b60006115f9848285016115c0565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061165e602483610fc4565b915061166982611602565b604082019050919050565b6000602082019050818103600083015261168d81611651565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116f0602283610fc4565b91506116fb82611694565b604082019050919050565b6000602082019050818103600083015261171f816116e3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061175c601d83610fc4565b915061176782611726565b602082019050919050565b6000602082019050818103600083015261178b8161174f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117ee602583610fc4565b91506117f982611792565b604082019050919050565b6000602082019050818103600083015261181d816117e1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611880602383610fc4565b915061188b82611824565b604082019050919050565b600060208201905081810360008301526118af81611873565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611912602683610fc4565b915061191d826118b6565b604082019050919050565b6000602082019050818103600083015261194181611905565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061197e602083610fc4565b915061198982611948565b602082019050919050565b600060208201905081810360008301526119ad81611971565b905091905056fea26469706673582212201359d0f75b1ccfd0f5bd7b296df138a9a42525bba9ebc0fe61f58b3b77df43ac64736f6c63430008120033

Deployed Bytecode Sourcemap

19453:613: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;:::-;;;;;;;;19819: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;:::-;;19600: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;19819:210::-;1900:13;:11;:13::i;:::-;19874:15:::1;19892:21;19874:39;;19938:1;19928:7;:11;19920:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;19994:10;19986:28;;:37;20015:7;19986:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;19867:162;19819: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;19600:213::-;1900:13;:11;:13::i;:::-;19667:17:::1;19694:5;19667:33;;19707:15;19725:10;:20;;;19754:4;19725:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19707:53;;19767:10;:19;;;19787:10;19799:7;19767:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19660:153;;19600: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://1359d0f75b1ccfd0f5bd7b296df138a9a42525bba9ebc0fe61f58b3b77df43ac
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.