ETH Price: $3,253.99 (-0.00%)
Gas: 1 Gwei

Token

Shuey Rhon Inu (SHUEY)
 

Overview

Max Total Supply

44,030,000,000 SHUEY

Holders

908 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
433,615.000000000001763144 SHUEY

Value
$0.00
0x72e472de9614e2d2a30c19db8cede13b6895b75a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Shuey Rhon Inu aims to make equality in marginalized athlete disciplines worldwide. Economic, disability, and gender factors play a significant role in every discipline. Shuey Rhon will donate directly to underpaid Para athletes.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SHUEY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : SHUEY.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract SHUEY is ERC20, Ownable {
    /* Token Tax */
    uint32 public _taxPercision = 100000;
    address[] public _taxRecipients;
    uint16 public _taxTotal;
    bool public _taxActive;

    mapping(address => uint16) public _taxRecipientAmounts;
    mapping(address => bool) private _isTaxRecipient;
    mapping(address => bool) public _whitelisted;

    /* Events */
    event UpdateTaxPercentage(address indexed wallet, uint16 _newTaxAmount);
    event AddTaxRecipient(address indexed wallet, uint16 _taxAmount);
    event RemoveFromWhitelist(address indexed wallet);
    event RemoveTaxRecipient(address indexed wallet);
    event AddToWhitelist(address indexed wallet);
    event ToggleTax(bool _active);

    uint256 private _totalSupply;

    /**
     * @dev Constructor.
     */
    constructor() ERC20('Shuey Rhon Inu', 'SHUEY') payable {
      _totalSupply = 44030000000 * (10**18);

      _mint(msg.sender, _totalSupply);
    }

    /**
      * @notice overrides ERC20 transferFrom function to introduce tax functionality
      * @param from address amount is coming from
      * @param to address amount is going to
      * @param amount amount being sent
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");
        if(_taxActive && !_whitelisted[from] && !_whitelisted[to]) {
          uint256 tax = amount *_taxTotal / _taxPercision;
          amount = amount - tax;
          _transfer(from, address(this), tax);
        }
        _transfer(from, to, amount);
        return true;
    }


    /**
      * @notice : overrides ERC20 transfer function to introduce tax functionality
      * @param to address amount is going to
      * @param amount amount being sent
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
      address owner = _msgSender();
      require(balanceOf(owner) >= amount, "ERC20: transfer amount exceeds balance");
      if(_taxActive && !_whitelisted[owner] && !_whitelisted[to]) {
        uint256 tax = amount*_taxTotal/_taxPercision;
        amount = amount - tax;
        _transfer(owner, address(this), tax);
      }
      _transfer(owner, to, amount);
      return true;
    }


    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of lowest token units to be burned.
     */
    function burn(uint256 value) public {
      _burn(msg.sender, value);
    }

    /* ADMIN Functions */
    /**
       * @notice : toggles the tax on or off
    */
    function toggleTax() external onlyOwner {
      _taxActive = !_taxActive;
      emit ToggleTax(_taxActive);
    }

    /**
      * @notice : adds address with tax amount to taxable addresses list
      * @param wallet address to add
      * @param _tax tax amount this address receives
    */
    function addTaxRecipient(address wallet, uint16 _tax) external onlyOwner {
      require(_taxRecipients.length < 100, "Reached maximum number of tax addresses");
      require(wallet != address(0), "Cannot add 0 address");
      require(!_isTaxRecipient[wallet], "Recipient already added");
      require(_tax > 0 && _tax + _taxTotal <= _taxPercision/10, "Total tax amount must be between 0 and 10%");

      _isTaxRecipient[wallet] = true;
      _taxRecipients.push(wallet);
      _taxRecipientAmounts[wallet] = _tax;
      _taxTotal = _taxTotal + _tax;
      emit AddTaxRecipient(wallet, _tax);
    }

    /**
      * @notice : updates address tax amount
      * @param wallet address to update
      * @param newTax new tax amount
     */
    function updateTaxPercentage(address wallet, uint16 newTax) external onlyOwner {
      require(wallet != address(0), "Cannot add 0 address");
      require(_isTaxRecipient[wallet], "Not a tax address");

      uint16 currentTax = _taxRecipientAmounts[wallet];
      require(currentTax != newTax, "Tax already this amount for this address");

      if(currentTax < newTax) {
        uint16 diff = newTax - currentTax;
        require(_taxTotal + diff <= 10000, "Tax amount too high for current tax rate");
        _taxTotal = _taxTotal + diff;
      } else {
        uint16 diff = currentTax - newTax;
        _taxTotal = _taxTotal - diff;
      }
      _taxRecipientAmounts[wallet] = newTax;
      emit UpdateTaxPercentage(wallet, newTax);
    }

    /**
      * @notice : remove address from taxed list
      * @param wallet address to remove
     */
    function removeTaxRecipient(address wallet) external onlyOwner {
      require(wallet != address(0), "Cannot add 0 address");
      require(_isTaxRecipient[wallet], "Recipient has not been added");
      uint16 _tax = _taxRecipientAmounts[wallet];

      for(uint8 i = 0; i < _taxRecipients.length; i++) {
        if(_taxRecipients[i] == wallet) {
          _taxTotal = _taxTotal - _tax;
          _taxRecipientAmounts[wallet] = 0;
          _taxRecipients[i] = _taxRecipients[_taxRecipients.length - 1];
          _isTaxRecipient[wallet] = false;
          _taxRecipients.pop();
          emit RemoveTaxRecipient(wallet);

          break;
        }
      }
    }

    /**
    * @notice : add address to tax whitelist
    * @param wallet address to add to whitelist
    */
    function addToWhitelist(address wallet) external onlyOwner {
      require(wallet != address(0), "Cant use 0 address");
      require(!_whitelisted[wallet], "Address already added");
      _whitelisted[wallet] = true;

      emit AddToWhitelist(wallet);
    }

    /**
    * @notice : add address to whitelist (non taxed)
    * @param wallet address to remove from whitelist
    */
    function removeFromWhitelist(address wallet) external onlyOwner {
      require(wallet != address(0), "Cant use 0 address");
      require(_whitelisted[wallet], "Address not added");
      _whitelisted[wallet] = false;

      emit RemoveFromWhitelist(wallet);
    }

    /**
    * @notice : resets tax settings to initial state
    */
    function taxReset() external onlyOwner {
      _taxActive = false;
      _taxTotal = 0;

      for(uint8 i = 0; i < _taxRecipients.length; i++) {
        _taxRecipientAmounts[_taxRecipients[i]] = 0;
        _isTaxRecipient[_taxRecipients[i]] = false;
      }

      delete _taxRecipients;
    }

    /**
      * @notice : withdraws taxable amount to tax recipients
     */
    function distributeTaxes() external onlyOwner {
      require(balanceOf(address(this)) > 0, "Nothing to withdraw");
      uint256 taxableAmount = balanceOf(address(this));
      for(uint8 i = 0; i < _taxRecipients.length; i++) {
        address taxAddress = _taxRecipients[i];
        if(i == _taxRecipients.length - 1) {
           _transfer(address(this), taxAddress, balanceOf(address(this)));
        } else {
          uint256 amount = taxableAmount * _taxRecipientAmounts[taxAddress]/_taxTotal;
          _transfer(address(this), taxAddress, amount);
        }
      }
    }
}

File 2 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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 3 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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);
}

File 5 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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.zeppelin.solutions/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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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;
        }
        _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;
        _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;
        }
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

File 6 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public 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);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint16","name":"_taxAmount","type":"uint16"}],"name":"AddTaxRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"}],"name":"AddToWhitelist","type":"event"},{"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":"wallet","type":"address"}],"name":"RemoveFromWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"}],"name":"RemoveTaxRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_active","type":"bool"}],"name":"ToggleTax","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint16","name":"_newTaxAmount","type":"uint16"}],"name":"UpdateTaxPercentage","type":"event"},{"inputs":[],"name":"_taxActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxPercision","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_taxRecipientAmounts","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_taxRecipients","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxTotal","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint16","name":"_tax","type":"uint16"}],"name":"addTaxRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","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":[],"name":"distributeTaxes","outputs":[],"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":[{"internalType":"address","name":"wallet","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"removeTaxRecipient","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":"taxReset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTax","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint16","name":"newTax","type":"uint16"}],"name":"updateTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052620186a0600560146101000a81548163ffffffff021916908363ffffffff1602179055506040518060400160405280600e81526020017f53687565792052686f6e20496e750000000000000000000000000000000000008152506040518060400160405280600581526020017f53485545590000000000000000000000000000000000000000000000000000008152508160039080519060200190620000ac92919062000366565b508060049080519060200190620000c592919062000366565b505050620000e8620000dc6200011560201b60201c565b6200011d60201b60201c565b6b8e44c32aba120e50be000000600b819055506200010f33600b54620001e360201b60201c565b620005c2565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000256576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024d906200044e565b60405180910390fd5b6200026a600083836200035c60201b60201c565b80600260008282546200027e91906200049e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002d591906200049e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033c919062000470565b60405180910390a362000358600083836200036160201b60201c565b5050565b505050565b505050565b828054620003749062000505565b90600052602060002090601f016020900481019282620003985760008555620003e4565b82601f10620003b357805160ff1916838001178555620003e4565b82800160010185558215620003e4579182015b82811115620003e3578251825591602001919060010190620003c6565b5b509050620003f39190620003f7565b5090565b5b8082111562000412576000816000905550600101620003f8565b5090565b600062000425601f836200048d565b9150620004328262000599565b602082019050919050565b6200044881620004fb565b82525050565b60006020820190508181036000830152620004698162000416565b9050919050565b60006020820190506200048760008301846200043d565b92915050565b600082825260208201905092915050565b6000620004ab82620004fb565b9150620004b883620004fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004f057620004ef6200053b565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200051e57607f821691505b602082108114156200053557620005346200056a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b613f3e80620005d26000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063619f28ed1161010457806395d89b41116100a2578063dd62ed3e11610071578063dd62ed3e1461050a578063e43252d71461053a578063f2fde38b14610556578063fb369eb014610572576101cf565b806395d89b411461046e578063a457c2d71461048c578063a9059cbb146104bc578063bb47cc0c146104ec576101cf565b806371fc737c116100de57806371fc737c146104205780638ab1d6811461042a5780638da5cb5b146104465780639096565214610464576101cf565b8063619f28ed146103ca57806370a08231146103e6578063715018a614610416576101cf565b806323b872dd116101715780633a5fcb631161014b5780633a5fcb631461034457806342966c68146103745780634be317781461039057806354f12265146103ae576101cf565b806323b872dd146102c6578063313ce567146102f65780633950935114610314576101cf565b806310bf6029116101ad57806310bf60291461025257806310f6da921461025c57806318160ddd146102785780632354ee0314610296576101cf565b806301c4b316146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e99190612c8c565b610590565b6040516101fb91906131cc565b60405180910390f35b61020c6105b0565b60405161021991906131e7565b60405180910390f35b61023c60048036038101906102379190612d8c565b610642565b60405161024991906131cc565b60405180910390f35b61025a610665565b005b61027660048036038101906102719190612c8c565b610753565b005b610280610be6565b60405161028d9190613504565b60405180910390f35b6102b060048036038101906102ab9190612dcc565b610bf0565b6040516102bd91906131b1565b60405180910390f35b6102e060048036038101906102db9190612cf9565b610c2f565b6040516102ed91906131cc565b60405180910390f35b6102fe610dcc565b60405161030b919061353a565b60405180910390f35b61032e60048036038101906103299190612d8c565b610dd5565b60405161033b91906131cc565b60405180910390f35b61035e60048036038101906103599190612c8c565b610e7f565b60405161036b91906134e9565b60405180910390f35b61038e60048036038101906103899190612dcc565b610ea0565b005b610398610ead565b6040516103a5919061351f565b60405180910390f35b6103c860048036038101906103c39190612d4c565b610ec3565b005b6103e460048036038101906103df9190612d4c565b611291565b005b61040060048036038101906103fb9190612c8c565b611687565b60405161040d9190613504565b60405180910390f35b61041e6116cf565b005b610428611757565b005b610444600480360381019061043f9190612c8c565b61195d565b005b61044e611b73565b60405161045b91906131b1565b60405180910390f35b61046c611b9d565b005b610476611dbe565b60405161048391906131e7565b60405180910390f35b6104a660048036038101906104a19190612d8c565b611e50565b6040516104b391906131cc565b60405180910390f35b6104d660048036038101906104d19190612d8c565b611f3a565b6040516104e391906131cc565b60405180910390f35b6104f46120cb565b60405161050191906134e9565b60405180910390f35b610524600480360381019061051f9190612cb9565b6120df565b6040516105319190613504565b60405180910390f35b610554600480360381019061054f9190612c8c565b612166565b005b610570600480360381019061056b9190612c8c565b61237d565b005b61057a612475565b60405161058791906131cc565b60405180910390f35b600a6020528060005260406000206000915054906101000a900460ff1681565b6060600380546105bf906137c9565b80601f01602080910402602001604051908101604052809291908181526020018280546105eb906137c9565b80156106385780601f1061060d57610100808354040283529160200191610638565b820191906000526020600020905b81548152906001019060200180831161061b57829003601f168201915b5050505050905090565b60008061064d612488565b905061065a818585612490565b600191505092915050565b61066d612488565b73ffffffffffffffffffffffffffffffffffffffff1661068b611b73565b73ffffffffffffffffffffffffffffffffffffffff16146106e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d890613409565b60405180910390fd5b600760029054906101000a900460ff1615600760026101000a81548160ff0219169083151502179055507fdda4866fd658821eea607c5d6addd0c4a0cc347eb4cea313399e516e66019864600760029054906101000a900460ff1660405161074991906131cc565b60405180910390a1565b61075b612488565b73ffffffffffffffffffffffffffffffffffffffff16610779611b73565b73ffffffffffffffffffffffffffffffffffffffff16146107cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c690613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690613349565b60405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c2906133c9565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16905060005b6006805490508160ff161015610be1578273ffffffffffffffffffffffffffffffffffffffff1660068260ff168154811061095e5761095d6138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610bce5781600760009054906101000a900461ffff166109c191906136bb565b600760006101000a81548161ffff021916908361ffff1602179055506000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555060066001600680549050610a4c91906136ef565b81548110610a5d57610a5c6138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068260ff1681548110610a9f57610a9e6138e1565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006805480610b5157610b506138b2565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558273ffffffffffffffffffffffffffffffffffffffff167f4fd6fed175ab0b49d36124b1a61f8b0d9d15ea6289719749317cbb005ccb13f360405160405180910390a2610be1565b8080610bd9906137fb565b915050610920565b505050565b6000600254905090565b60068181548110610c0057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610c3a612488565b9050610c4785828561265b565b82610c5186611687565b1015610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990613309565b60405180910390fd5b600760029054906101000a900460ff168015610cf85750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610d4e5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610db5576000600560149054906101000a900463ffffffff1663ffffffff16600760009054906101000a900461ffff1661ffff1685610d8e9190613661565b610d9891906135ff565b90508084610da691906136ef565b9350610db38630836126e7565b505b610dc08585856126e7565b60019150509392505050565b60006012905090565b600080610de0612488565b9050610e74818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e6f91906135a9565b612490565b600191505092915050565b60086020528060005260406000206000915054906101000a900461ffff1681565b610eaa3382612968565b50565b600560149054906101000a900463ffffffff1681565b610ecb612488565b73ffffffffffffffffffffffffffffffffffffffff16610ee9611b73565b73ffffffffffffffffffffffffffffffffffffffff1614610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690613349565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906133a9565b60405180910390fd5b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1690508161ffff168161ffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90613429565b60405180910390fd5b8161ffff168161ffff16101561119a57600081836110f691906136bb565b905061271081600760009054906101000a900461ffff166111179190613571565b61ffff16111561115c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611153906132c9565b60405180910390fd5b80600760009054906101000a900461ffff166111789190613571565b600760006101000a81548161ffff021916908361ffff160217905550506111e4565b600082826111a891906136bb565b905080600760009054906101000a900461ffff166111c691906136bb565b600760006101000a81548161ffff021916908361ffff160217905550505b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff1602179055508273ffffffffffffffffffffffffffffffffffffffff167fee47ac5c77f2952467745dc55e7c0f653f25c603443f24d129d62712b57eeb5d8360405161128491906134e9565b60405180910390a2505050565b611299612488565b73ffffffffffffffffffffffffffffffffffffffff166112b7611b73565b73ffffffffffffffffffffffffffffffffffffffff161461130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490613409565b60405180910390fd5b606460068054905010611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90613269565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90613349565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990613329565b60405180910390fd5b60008161ffff161180156114a95750600a600560149054906101000a900463ffffffff166114809190613630565b63ffffffff16600760009054906101000a900461ffff16826114a29190613571565b61ffff1611155b6114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613389565b60405180910390fd5b6001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555080600760009054906101000a900461ffff166116199190613571565b600760006101000a81548161ffff021916908361ffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167ff0379f3a0fa1271904bae35478eacd47ea582a7e6316fb3d935a46c931f61c258260405161167b91906134e9565b60405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d7612488565b73ffffffffffffffffffffffffffffffffffffffff166116f5611b73565b73ffffffffffffffffffffffffffffffffffffffff161461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613409565b60405180910390fd5b6117556000612b3f565b565b61175f612488565b73ffffffffffffffffffffffffffffffffffffffff1661177d611b73565b73ffffffffffffffffffffffffffffffffffffffff16146117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca90613409565b60405180910390fd5b60006117de30611687565b1161181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613249565b60405180910390fd5b600061182930611687565b905060005b6006805490508160ff16101561195957600060068260ff1681548110611857576118566138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600160068054905061189691906136ef565b8260ff1614156118b8576118b330826118ae30611687565b6126e7565b611945565b6000600760009054906101000a900461ffff1661ffff16600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff168561192c9190613661565b61193691906135ff565b90506119433083836126e7565b505b508080611951906137fb565b91505061182e565b5050565b611965612488565b73ffffffffffffffffffffffffffffffffffffffff16611983611b73565b73ffffffffffffffffffffffffffffffffffffffff16146119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906134c9565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc906133e9565b60405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1f756c8b089af6b33ee121fee8badac2553a2fa89c0575ea91ff8792617746c260405160405180910390a250565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ba5612488565b73ffffffffffffffffffffffffffffffffffffffff16611bc3611b73565b73ffffffffffffffffffffffffffffffffffffffff1614611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1090613409565b60405180910390fd5b6000600760026101000a81548160ff0219169083151502179055506000600760006101000a81548161ffff021916908361ffff16021790555060005b6006805490508160ff161015611dad5760006008600060068460ff1681548110611c8257611c816138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555060006009600060068460ff1681548110611d1e57611d1d6138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611da5906137fb565b915050611c55565b5060066000611dbc9190612c0f565b565b606060048054611dcd906137c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611df9906137c9565b8015611e465780601f10611e1b57610100808354040283529160200191611e46565b820191906000526020600020905b815481529060010190602001808311611e2957829003601f168201915b5050505050905090565b600080611e5b612488565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f18906134a9565b60405180910390fd5b611f2e8286868403612490565b60019250505092915050565b600080611f45612488565b905082611f5182611687565b1015611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990613309565b60405180910390fd5b600760029054906101000a900460ff168015611ff85750600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561204e5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120b5576000600560149054906101000a900463ffffffff1663ffffffff16600760009054906101000a900461ffff1661ffff168561208e9190613661565b61209891906135ff565b905080846120a691906136ef565b93506120b38230836126e7565b505b6120c08185856126e7565b600191505092915050565b600760009054906101000a900461ffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61216e612488565b73ffffffffffffffffffffffffffffffffffffffff1661218c611b73565b73ffffffffffffffffffffffffffffffffffffffff16146121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d990613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612249906134c9565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690613369565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f75b2135d1c8c3519f3c09c43fe6527089ef09f40c7981ebf0ed46e79e79032c760405160405180910390a250565b612385612488565b73ffffffffffffffffffffffffffffffffffffffff166123a3611b73565b73ffffffffffffffffffffffffffffffffffffffff16146123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246090613289565b60405180910390fd5b61247281612b3f565b50565b600760029054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f790613489565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612567906132a9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161264e9190613504565b60405180910390a3505050565b600061266784846120df565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146126e157818110156126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca906132e9565b60405180910390fd5b6126e08484848403612490565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90613469565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127be90613209565b60405180910390fd5b6127d2838383612c05565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284f90613309565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128eb91906135a9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161294f9190613504565b60405180910390a3612962848484612c0a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cf90613449565b60405180910390fd5b6129e482600083612c05565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6190613229565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612ac191906136ef565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b269190613504565b60405180910390a3612b3a83600084612c0a565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5080546000825590600052602060002090810190612c2d9190612c30565b50565b5b80821115612c49576000816000905550600101612c31565b5090565b600081359050612c5c81613ec3565b92915050565b600081359050612c7181613eda565b92915050565b600081359050612c8681613ef1565b92915050565b600060208284031215612ca257612ca1613910565b5b6000612cb084828501612c4d565b91505092915050565b60008060408385031215612cd057612ccf613910565b5b6000612cde85828601612c4d565b9250506020612cef85828601612c4d565b9150509250929050565b600080600060608486031215612d1257612d11613910565b5b6000612d2086828701612c4d565b9350506020612d3186828701612c4d565b9250506040612d4286828701612c77565b9150509250925092565b60008060408385031215612d6357612d62613910565b5b6000612d7185828601612c4d565b9250506020612d8285828601612c62565b9150509250929050565b60008060408385031215612da357612da2613910565b5b6000612db185828601612c4d565b9250506020612dc285828601612c77565b9150509250929050565b600060208284031215612de257612de1613910565b5b6000612df084828501612c77565b91505092915050565b612e0281613723565b82525050565b612e1181613735565b82525050565b6000612e2282613555565b612e2c8185613560565b9350612e3c818560208601613796565b612e4581613915565b840191505092915050565b6000612e5d602383613560565b9150612e6882613926565b604082019050919050565b6000612e80602283613560565b9150612e8b82613975565b604082019050919050565b6000612ea3601383613560565b9150612eae826139c4565b602082019050919050565b6000612ec6602783613560565b9150612ed1826139ed565b604082019050919050565b6000612ee9602683613560565b9150612ef482613a3c565b604082019050919050565b6000612f0c602283613560565b9150612f1782613a8b565b604082019050919050565b6000612f2f602883613560565b9150612f3a82613ada565b604082019050919050565b6000612f52601d83613560565b9150612f5d82613b29565b602082019050919050565b6000612f75602683613560565b9150612f8082613b52565b604082019050919050565b6000612f98601783613560565b9150612fa382613ba1565b602082019050919050565b6000612fbb601483613560565b9150612fc682613bca565b602082019050919050565b6000612fde601583613560565b9150612fe982613bf3565b602082019050919050565b6000613001602a83613560565b915061300c82613c1c565b604082019050919050565b6000613024601183613560565b915061302f82613c6b565b602082019050919050565b6000613047601c83613560565b915061305282613c94565b602082019050919050565b600061306a601183613560565b915061307582613cbd565b602082019050919050565b600061308d602083613560565b915061309882613ce6565b602082019050919050565b60006130b0602883613560565b91506130bb82613d0f565b604082019050919050565b60006130d3602183613560565b91506130de82613d5e565b604082019050919050565b60006130f6602583613560565b915061310182613dad565b604082019050919050565b6000613119602483613560565b915061312482613dfc565b604082019050919050565b600061313c602583613560565b915061314782613e4b565b604082019050919050565b600061315f601283613560565b915061316a82613e9a565b602082019050919050565b61317e81613741565b82525050565b61318d8161376f565b82525050565b61319c81613779565b82525050565b6131ab81613789565b82525050565b60006020820190506131c66000830184612df9565b92915050565b60006020820190506131e16000830184612e08565b92915050565b600060208201905081810360008301526132018184612e17565b905092915050565b6000602082019050818103600083015261322281612e50565b9050919050565b6000602082019050818103600083015261324281612e73565b9050919050565b6000602082019050818103600083015261326281612e96565b9050919050565b6000602082019050818103600083015261328281612eb9565b9050919050565b600060208201905081810360008301526132a281612edc565b9050919050565b600060208201905081810360008301526132c281612eff565b9050919050565b600060208201905081810360008301526132e281612f22565b9050919050565b6000602082019050818103600083015261330281612f45565b9050919050565b6000602082019050818103600083015261332281612f68565b9050919050565b6000602082019050818103600083015261334281612f8b565b9050919050565b6000602082019050818103600083015261336281612fae565b9050919050565b6000602082019050818103600083015261338281612fd1565b9050919050565b600060208201905081810360008301526133a281612ff4565b9050919050565b600060208201905081810360008301526133c281613017565b9050919050565b600060208201905081810360008301526133e28161303a565b9050919050565b600060208201905081810360008301526134028161305d565b9050919050565b6000602082019050818103600083015261342281613080565b9050919050565b60006020820190508181036000830152613442816130a3565b9050919050565b60006020820190508181036000830152613462816130c6565b9050919050565b60006020820190508181036000830152613482816130e9565b9050919050565b600060208201905081810360008301526134a28161310c565b9050919050565b600060208201905081810360008301526134c28161312f565b9050919050565b600060208201905081810360008301526134e281613152565b9050919050565b60006020820190506134fe6000830184613175565b92915050565b60006020820190506135196000830184613184565b92915050565b60006020820190506135346000830184613193565b92915050565b600060208201905061354f60008301846131a2565b92915050565b600081519050919050565b600082825260208201905092915050565b600061357c82613741565b915061358783613741565b92508261ffff0382111561359e5761359d613825565b5b828201905092915050565b60006135b48261376f565b91506135bf8361376f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135f4576135f3613825565b5b828201905092915050565b600061360a8261376f565b91506136158361376f565b92508261362557613624613854565b5b828204905092915050565b600061363b82613779565b915061364683613779565b92508261365657613655613854565b5b828204905092915050565b600061366c8261376f565b91506136778361376f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136b0576136af613825565b5b828202905092915050565b60006136c682613741565b91506136d183613741565b9250828210156136e4576136e3613825565b5b828203905092915050565b60006136fa8261376f565b91506137058361376f565b92508282101561371857613717613825565b5b828203905092915050565b600061372e8261374f565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60005b838110156137b4578082015181840152602081019050613799565b838111156137c3576000848401525b50505050565b600060028204905060018216806137e157607f821691505b602082108114156137f5576137f4613883565b5b50919050565b600061380682613789565b915060ff82141561381a57613819613825565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f52656163686564206d6178696d756d206e756d626572206f662074617820616460008201527f6472657373657300000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f54617820616d6f756e7420746f6f206869676820666f722063757272656e742060008201527f7461782072617465000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f526563697069656e7420616c7265616479206164646564000000000000000000600082015250565b7f43616e6e6f742061646420302061646472657373000000000000000000000000600082015250565b7f4164647265737320616c72656164792061646465640000000000000000000000600082015250565b7f546f74616c2074617820616d6f756e74206d757374206265206265747765656e60008201527f203020616e642031302500000000000000000000000000000000000000000000602082015250565b7f4e6f742061207461782061646472657373000000000000000000000000000000600082015250565b7f526563697069656e7420686173206e6f74206265656e20616464656400000000600082015250565b7f41646472657373206e6f74206164646564000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54617820616c7265616479207468697320616d6f756e7420666f72207468697360008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f43616e7420757365203020616464726573730000000000000000000000000000600082015250565b613ecc81613723565b8114613ed757600080fd5b50565b613ee381613741565b8114613eee57600080fd5b50565b613efa8161376f565b8114613f0557600080fd5b5056fea264697066735822122066c12f65396faf395e2a9b8d61b5429f13fd6a0f128776d239e4ae470647f7bc64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063619f28ed1161010457806395d89b41116100a2578063dd62ed3e11610071578063dd62ed3e1461050a578063e43252d71461053a578063f2fde38b14610556578063fb369eb014610572576101cf565b806395d89b411461046e578063a457c2d71461048c578063a9059cbb146104bc578063bb47cc0c146104ec576101cf565b806371fc737c116100de57806371fc737c146104205780638ab1d6811461042a5780638da5cb5b146104465780639096565214610464576101cf565b8063619f28ed146103ca57806370a08231146103e6578063715018a614610416576101cf565b806323b872dd116101715780633a5fcb631161014b5780633a5fcb631461034457806342966c68146103745780634be317781461039057806354f12265146103ae576101cf565b806323b872dd146102c6578063313ce567146102f65780633950935114610314576101cf565b806310bf6029116101ad57806310bf60291461025257806310f6da921461025c57806318160ddd146102785780632354ee0314610296576101cf565b806301c4b316146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e99190612c8c565b610590565b6040516101fb91906131cc565b60405180910390f35b61020c6105b0565b60405161021991906131e7565b60405180910390f35b61023c60048036038101906102379190612d8c565b610642565b60405161024991906131cc565b60405180910390f35b61025a610665565b005b61027660048036038101906102719190612c8c565b610753565b005b610280610be6565b60405161028d9190613504565b60405180910390f35b6102b060048036038101906102ab9190612dcc565b610bf0565b6040516102bd91906131b1565b60405180910390f35b6102e060048036038101906102db9190612cf9565b610c2f565b6040516102ed91906131cc565b60405180910390f35b6102fe610dcc565b60405161030b919061353a565b60405180910390f35b61032e60048036038101906103299190612d8c565b610dd5565b60405161033b91906131cc565b60405180910390f35b61035e60048036038101906103599190612c8c565b610e7f565b60405161036b91906134e9565b60405180910390f35b61038e60048036038101906103899190612dcc565b610ea0565b005b610398610ead565b6040516103a5919061351f565b60405180910390f35b6103c860048036038101906103c39190612d4c565b610ec3565b005b6103e460048036038101906103df9190612d4c565b611291565b005b61040060048036038101906103fb9190612c8c565b611687565b60405161040d9190613504565b60405180910390f35b61041e6116cf565b005b610428611757565b005b610444600480360381019061043f9190612c8c565b61195d565b005b61044e611b73565b60405161045b91906131b1565b60405180910390f35b61046c611b9d565b005b610476611dbe565b60405161048391906131e7565b60405180910390f35b6104a660048036038101906104a19190612d8c565b611e50565b6040516104b391906131cc565b60405180910390f35b6104d660048036038101906104d19190612d8c565b611f3a565b6040516104e391906131cc565b60405180910390f35b6104f46120cb565b60405161050191906134e9565b60405180910390f35b610524600480360381019061051f9190612cb9565b6120df565b6040516105319190613504565b60405180910390f35b610554600480360381019061054f9190612c8c565b612166565b005b610570600480360381019061056b9190612c8c565b61237d565b005b61057a612475565b60405161058791906131cc565b60405180910390f35b600a6020528060005260406000206000915054906101000a900460ff1681565b6060600380546105bf906137c9565b80601f01602080910402602001604051908101604052809291908181526020018280546105eb906137c9565b80156106385780601f1061060d57610100808354040283529160200191610638565b820191906000526020600020905b81548152906001019060200180831161061b57829003601f168201915b5050505050905090565b60008061064d612488565b905061065a818585612490565b600191505092915050565b61066d612488565b73ffffffffffffffffffffffffffffffffffffffff1661068b611b73565b73ffffffffffffffffffffffffffffffffffffffff16146106e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d890613409565b60405180910390fd5b600760029054906101000a900460ff1615600760026101000a81548160ff0219169083151502179055507fdda4866fd658821eea607c5d6addd0c4a0cc347eb4cea313399e516e66019864600760029054906101000a900460ff1660405161074991906131cc565b60405180910390a1565b61075b612488565b73ffffffffffffffffffffffffffffffffffffffff16610779611b73565b73ffffffffffffffffffffffffffffffffffffffff16146107cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c690613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690613349565b60405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c2906133c9565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16905060005b6006805490508160ff161015610be1578273ffffffffffffffffffffffffffffffffffffffff1660068260ff168154811061095e5761095d6138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610bce5781600760009054906101000a900461ffff166109c191906136bb565b600760006101000a81548161ffff021916908361ffff1602179055506000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555060066001600680549050610a4c91906136ef565b81548110610a5d57610a5c6138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068260ff1681548110610a9f57610a9e6138e1565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006805480610b5157610b506138b2565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558273ffffffffffffffffffffffffffffffffffffffff167f4fd6fed175ab0b49d36124b1a61f8b0d9d15ea6289719749317cbb005ccb13f360405160405180910390a2610be1565b8080610bd9906137fb565b915050610920565b505050565b6000600254905090565b60068181548110610c0057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610c3a612488565b9050610c4785828561265b565b82610c5186611687565b1015610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990613309565b60405180910390fd5b600760029054906101000a900460ff168015610cf85750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610d4e5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610db5576000600560149054906101000a900463ffffffff1663ffffffff16600760009054906101000a900461ffff1661ffff1685610d8e9190613661565b610d9891906135ff565b90508084610da691906136ef565b9350610db38630836126e7565b505b610dc08585856126e7565b60019150509392505050565b60006012905090565b600080610de0612488565b9050610e74818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e6f91906135a9565b612490565b600191505092915050565b60086020528060005260406000206000915054906101000a900461ffff1681565b610eaa3382612968565b50565b600560149054906101000a900463ffffffff1681565b610ecb612488565b73ffffffffffffffffffffffffffffffffffffffff16610ee9611b73565b73ffffffffffffffffffffffffffffffffffffffff1614610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690613349565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906133a9565b60405180910390fd5b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1690508161ffff168161ffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90613429565b60405180910390fd5b8161ffff168161ffff16101561119a57600081836110f691906136bb565b905061271081600760009054906101000a900461ffff166111179190613571565b61ffff16111561115c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611153906132c9565b60405180910390fd5b80600760009054906101000a900461ffff166111789190613571565b600760006101000a81548161ffff021916908361ffff160217905550506111e4565b600082826111a891906136bb565b905080600760009054906101000a900461ffff166111c691906136bb565b600760006101000a81548161ffff021916908361ffff160217905550505b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff1602179055508273ffffffffffffffffffffffffffffffffffffffff167fee47ac5c77f2952467745dc55e7c0f653f25c603443f24d129d62712b57eeb5d8360405161128491906134e9565b60405180910390a2505050565b611299612488565b73ffffffffffffffffffffffffffffffffffffffff166112b7611b73565b73ffffffffffffffffffffffffffffffffffffffff161461130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490613409565b60405180910390fd5b606460068054905010611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90613269565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90613349565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990613329565b60405180910390fd5b60008161ffff161180156114a95750600a600560149054906101000a900463ffffffff166114809190613630565b63ffffffff16600760009054906101000a900461ffff16826114a29190613571565b61ffff1611155b6114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613389565b60405180910390fd5b6001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555080600760009054906101000a900461ffff166116199190613571565b600760006101000a81548161ffff021916908361ffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167ff0379f3a0fa1271904bae35478eacd47ea582a7e6316fb3d935a46c931f61c258260405161167b91906134e9565b60405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d7612488565b73ffffffffffffffffffffffffffffffffffffffff166116f5611b73565b73ffffffffffffffffffffffffffffffffffffffff161461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613409565b60405180910390fd5b6117556000612b3f565b565b61175f612488565b73ffffffffffffffffffffffffffffffffffffffff1661177d611b73565b73ffffffffffffffffffffffffffffffffffffffff16146117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca90613409565b60405180910390fd5b60006117de30611687565b1161181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613249565b60405180910390fd5b600061182930611687565b905060005b6006805490508160ff16101561195957600060068260ff1681548110611857576118566138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600160068054905061189691906136ef565b8260ff1614156118b8576118b330826118ae30611687565b6126e7565b611945565b6000600760009054906101000a900461ffff1661ffff16600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff168561192c9190613661565b61193691906135ff565b90506119433083836126e7565b505b508080611951906137fb565b91505061182e565b5050565b611965612488565b73ffffffffffffffffffffffffffffffffffffffff16611983611b73565b73ffffffffffffffffffffffffffffffffffffffff16146119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906134c9565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc906133e9565b60405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1f756c8b089af6b33ee121fee8badac2553a2fa89c0575ea91ff8792617746c260405160405180910390a250565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ba5612488565b73ffffffffffffffffffffffffffffffffffffffff16611bc3611b73565b73ffffffffffffffffffffffffffffffffffffffff1614611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1090613409565b60405180910390fd5b6000600760026101000a81548160ff0219169083151502179055506000600760006101000a81548161ffff021916908361ffff16021790555060005b6006805490508160ff161015611dad5760006008600060068460ff1681548110611c8257611c816138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555060006009600060068460ff1681548110611d1e57611d1d6138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611da5906137fb565b915050611c55565b5060066000611dbc9190612c0f565b565b606060048054611dcd906137c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611df9906137c9565b8015611e465780601f10611e1b57610100808354040283529160200191611e46565b820191906000526020600020905b815481529060010190602001808311611e2957829003601f168201915b5050505050905090565b600080611e5b612488565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f18906134a9565b60405180910390fd5b611f2e8286868403612490565b60019250505092915050565b600080611f45612488565b905082611f5182611687565b1015611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990613309565b60405180910390fd5b600760029054906101000a900460ff168015611ff85750600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561204e5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120b5576000600560149054906101000a900463ffffffff1663ffffffff16600760009054906101000a900461ffff1661ffff168561208e9190613661565b61209891906135ff565b905080846120a691906136ef565b93506120b38230836126e7565b505b6120c08185856126e7565b600191505092915050565b600760009054906101000a900461ffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61216e612488565b73ffffffffffffffffffffffffffffffffffffffff1661218c611b73565b73ffffffffffffffffffffffffffffffffffffffff16146121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d990613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612249906134c9565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690613369565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f75b2135d1c8c3519f3c09c43fe6527089ef09f40c7981ebf0ed46e79e79032c760405160405180910390a250565b612385612488565b73ffffffffffffffffffffffffffffffffffffffff166123a3611b73565b73ffffffffffffffffffffffffffffffffffffffff16146123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246090613289565b60405180910390fd5b61247281612b3f565b50565b600760029054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f790613489565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612567906132a9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161264e9190613504565b60405180910390a3505050565b600061266784846120df565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146126e157818110156126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca906132e9565b60405180910390fd5b6126e08484848403612490565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90613469565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127be90613209565b60405180910390fd5b6127d2838383612c05565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284f90613309565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128eb91906135a9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161294f9190613504565b60405180910390a3612962848484612c0a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cf90613449565b60405180910390fd5b6129e482600083612c05565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6190613229565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612ac191906136ef565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b269190613504565b60405180910390a3612b3a83600084612c0a565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5080546000825590600052602060002090810190612c2d9190612c30565b50565b5b80821115612c49576000816000905550600101612c31565b5090565b600081359050612c5c81613ec3565b92915050565b600081359050612c7181613eda565b92915050565b600081359050612c8681613ef1565b92915050565b600060208284031215612ca257612ca1613910565b5b6000612cb084828501612c4d565b91505092915050565b60008060408385031215612cd057612ccf613910565b5b6000612cde85828601612c4d565b9250506020612cef85828601612c4d565b9150509250929050565b600080600060608486031215612d1257612d11613910565b5b6000612d2086828701612c4d565b9350506020612d3186828701612c4d565b9250506040612d4286828701612c77565b9150509250925092565b60008060408385031215612d6357612d62613910565b5b6000612d7185828601612c4d565b9250506020612d8285828601612c62565b9150509250929050565b60008060408385031215612da357612da2613910565b5b6000612db185828601612c4d565b9250506020612dc285828601612c77565b9150509250929050565b600060208284031215612de257612de1613910565b5b6000612df084828501612c77565b91505092915050565b612e0281613723565b82525050565b612e1181613735565b82525050565b6000612e2282613555565b612e2c8185613560565b9350612e3c818560208601613796565b612e4581613915565b840191505092915050565b6000612e5d602383613560565b9150612e6882613926565b604082019050919050565b6000612e80602283613560565b9150612e8b82613975565b604082019050919050565b6000612ea3601383613560565b9150612eae826139c4565b602082019050919050565b6000612ec6602783613560565b9150612ed1826139ed565b604082019050919050565b6000612ee9602683613560565b9150612ef482613a3c565b604082019050919050565b6000612f0c602283613560565b9150612f1782613a8b565b604082019050919050565b6000612f2f602883613560565b9150612f3a82613ada565b604082019050919050565b6000612f52601d83613560565b9150612f5d82613b29565b602082019050919050565b6000612f75602683613560565b9150612f8082613b52565b604082019050919050565b6000612f98601783613560565b9150612fa382613ba1565b602082019050919050565b6000612fbb601483613560565b9150612fc682613bca565b602082019050919050565b6000612fde601583613560565b9150612fe982613bf3565b602082019050919050565b6000613001602a83613560565b915061300c82613c1c565b604082019050919050565b6000613024601183613560565b915061302f82613c6b565b602082019050919050565b6000613047601c83613560565b915061305282613c94565b602082019050919050565b600061306a601183613560565b915061307582613cbd565b602082019050919050565b600061308d602083613560565b915061309882613ce6565b602082019050919050565b60006130b0602883613560565b91506130bb82613d0f565b604082019050919050565b60006130d3602183613560565b91506130de82613d5e565b604082019050919050565b60006130f6602583613560565b915061310182613dad565b604082019050919050565b6000613119602483613560565b915061312482613dfc565b604082019050919050565b600061313c602583613560565b915061314782613e4b565b604082019050919050565b600061315f601283613560565b915061316a82613e9a565b602082019050919050565b61317e81613741565b82525050565b61318d8161376f565b82525050565b61319c81613779565b82525050565b6131ab81613789565b82525050565b60006020820190506131c66000830184612df9565b92915050565b60006020820190506131e16000830184612e08565b92915050565b600060208201905081810360008301526132018184612e17565b905092915050565b6000602082019050818103600083015261322281612e50565b9050919050565b6000602082019050818103600083015261324281612e73565b9050919050565b6000602082019050818103600083015261326281612e96565b9050919050565b6000602082019050818103600083015261328281612eb9565b9050919050565b600060208201905081810360008301526132a281612edc565b9050919050565b600060208201905081810360008301526132c281612eff565b9050919050565b600060208201905081810360008301526132e281612f22565b9050919050565b6000602082019050818103600083015261330281612f45565b9050919050565b6000602082019050818103600083015261332281612f68565b9050919050565b6000602082019050818103600083015261334281612f8b565b9050919050565b6000602082019050818103600083015261336281612fae565b9050919050565b6000602082019050818103600083015261338281612fd1565b9050919050565b600060208201905081810360008301526133a281612ff4565b9050919050565b600060208201905081810360008301526133c281613017565b9050919050565b600060208201905081810360008301526133e28161303a565b9050919050565b600060208201905081810360008301526134028161305d565b9050919050565b6000602082019050818103600083015261342281613080565b9050919050565b60006020820190508181036000830152613442816130a3565b9050919050565b60006020820190508181036000830152613462816130c6565b9050919050565b60006020820190508181036000830152613482816130e9565b9050919050565b600060208201905081810360008301526134a28161310c565b9050919050565b600060208201905081810360008301526134c28161312f565b9050919050565b600060208201905081810360008301526134e281613152565b9050919050565b60006020820190506134fe6000830184613175565b92915050565b60006020820190506135196000830184613184565b92915050565b60006020820190506135346000830184613193565b92915050565b600060208201905061354f60008301846131a2565b92915050565b600081519050919050565b600082825260208201905092915050565b600061357c82613741565b915061358783613741565b92508261ffff0382111561359e5761359d613825565b5b828201905092915050565b60006135b48261376f565b91506135bf8361376f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135f4576135f3613825565b5b828201905092915050565b600061360a8261376f565b91506136158361376f565b92508261362557613624613854565b5b828204905092915050565b600061363b82613779565b915061364683613779565b92508261365657613655613854565b5b828204905092915050565b600061366c8261376f565b91506136778361376f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136b0576136af613825565b5b828202905092915050565b60006136c682613741565b91506136d183613741565b9250828210156136e4576136e3613825565b5b828203905092915050565b60006136fa8261376f565b91506137058361376f565b92508282101561371857613717613825565b5b828203905092915050565b600061372e8261374f565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60005b838110156137b4578082015181840152602081019050613799565b838111156137c3576000848401525b50505050565b600060028204905060018216806137e157607f821691505b602082108114156137f5576137f4613883565b5b50919050565b600061380682613789565b915060ff82141561381a57613819613825565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f52656163686564206d6178696d756d206e756d626572206f662074617820616460008201527f6472657373657300000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f54617820616d6f756e7420746f6f206869676820666f722063757272656e742060008201527f7461782072617465000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f526563697069656e7420616c7265616479206164646564000000000000000000600082015250565b7f43616e6e6f742061646420302061646472657373000000000000000000000000600082015250565b7f4164647265737320616c72656164792061646465640000000000000000000000600082015250565b7f546f74616c2074617820616d6f756e74206d757374206265206265747765656e60008201527f203020616e642031302500000000000000000000000000000000000000000000602082015250565b7f4e6f742061207461782061646472657373000000000000000000000000000000600082015250565b7f526563697069656e7420686173206e6f74206265656e20616464656400000000600082015250565b7f41646472657373206e6f74206164646564000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54617820616c7265616479207468697320616d6f756e7420666f72207468697360008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f43616e7420757365203020616464726573730000000000000000000000000000600082015250565b613ecc81613723565b8114613ed757600080fd5b50565b613ee381613741565b8114613eee57600080fd5b50565b613efa8161376f565b8114613f0557600080fd5b5056fea264697066735822122066c12f65396faf395e2a9b8d61b5429f13fd6a0f128776d239e4ae470647f7bc64736f6c63430008070033

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.