ETH Price: $3,092.48 (-0.34%)
Gas: 2 Gwei

Token

MOONSHOT (MOON)
 

Overview

Max Total Supply

1,000,000,000 MOON

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
206,148,930.727798268224780652 MOON

Value
$0.00
0xd05f8fbc599f817bffa99a09eb46364322bf058d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x38C87dE0...2308cF2c6
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
FullFeatureToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : FullFeatureToken.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.7;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";
import {Address} from "@openzeppelin/contracts/utils/Address.sol";
import {Helpers} from "./libraries/Helpers.sol";

contract FullFeatureToken is ERC20, ERC20Burnable, ERC20Pausable, Ownable {
  uint8 public constant VERSION = 5;
  uint8 private immutable _decimals;

  struct ERC20ConfigProps {
    bool _isMintable;
    bool _isBurnable;
    bool _isPausable;
    bool _isBlacklistEnabled;
    bool _isDocumentAllowed;
    bool _isWhitelistEnabled;
    bool _isMaxAmountOfTokensSet;
    bool _isForceTransferAllowed;
  }

  ERC20ConfigProps private configProps; // contract properties describing available features
  mapping(address => bool) private _isBlacklisted; // list of blacklisted addresses
  mapping(address => bool) public whitelist; // whitelisted addresses map
  address[] whitelistedAddresses; // array for keeping track of whitelisted users
  string public initialDocumentUri;
  string public documentUri; // URI of the document that exist off-chain
  uint256 public immutable initialSupply;
  uint256 public immutable initialMaxTokenAmountPerAddress;
  uint256 public maxTokenAmountPerAddress; // max token amount per address
  address public immutable initialFeeReceiver;
  address public immutable initialTokenOwner;

  event UserBlacklisted(address blacklistedAddress);
  event UserUnBlacklisted(address whitelistedAddress);
  event DocumentUriSet(string newDocUri);
  event MaxTokenAmountPerSet(uint256 newMaxTokenAmount);
  event UsersWhitelisted(address[] updatedAddresses);

  constructor(
    string memory name_,
    string memory symbol_,
    uint256 initialSupplyToSet,
    uint8 decimalsToSet,
    address tokenOwner,
    ERC20ConfigProps memory customConfigProps,
    uint256 maxTokenAmount,
    string memory newDocumentUri,
    address payable feeReceiver
  ) payable ERC20(name_, symbol_) {
    require(msg.value > 0, "Deployment fee required");
    require(initialSupplyToSet > 0, "Initial supply must be greater than 0");
    if (customConfigProps._isMaxAmountOfTokensSet) {
      require(
        maxTokenAmount > 0,
        "Max token amount must be greater than 0"
      );
    }
    require(decimalsToSet <= 18, "Decimals are outside of allowed range: 0 - 18");

    Helpers.requireNonZeroAddress(tokenOwner);
    Helpers.requireNonZeroAddress(feeReceiver);

    Address.sendValue(feeReceiver, msg.value);

    initialSupply = initialSupplyToSet;
    initialMaxTokenAmountPerAddress = maxTokenAmount;
    initialDocumentUri = newDocumentUri;
    initialFeeReceiver = feeReceiver;
    initialTokenOwner = tokenOwner;

    _decimals = decimalsToSet;
    configProps = customConfigProps;
    documentUri = newDocumentUri;
    maxTokenAmountPerAddress = maxTokenAmount;

    _mint(tokenOwner, initialSupplyToSet * 10**decimalsToSet);

    if (tokenOwner != msg.sender) {
      transferOwnership(tokenOwner);
    }
  }

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual override(ERC20, ERC20Pausable) {
    super._beforeTokenTransfer(from, to, amount);
  }

  function isPausable() external view returns (bool) {
    return configProps._isPausable;
  }

  function isMintable() external view returns (bool) {
    return configProps._isMintable;
  }

  function isBurnable() external view returns (bool) {
    return configProps._isBurnable;
  }

  function isBlacklistEnabled() external view returns (bool) {
    return configProps._isBlacklistEnabled;
  }

  function isWhitelistEnabled() external view returns (bool) {
    return configProps._isWhitelistEnabled;
  }

  function isMaxAmountOfTokensSet() external view returns (bool) {
    return configProps._isMaxAmountOfTokensSet;
  }

  function isDocumentUriAllowed() external view returns (bool) {
    return configProps._isDocumentAllowed;
  }

  function isForceTransferAllowed() external view returns (bool) {
    return configProps._isForceTransferAllowed;
  }

  function decimals() public view virtual override returns (uint8) {
    return _decimals;
  }

  function setDocumentUri(string memory newDocUri) external onlyOwner {
    documentUri = newDocUri;

    emit DocumentUriSet(newDocUri);
  }

  function setMaxTokenAmountPerAddress(uint256 newMaxTokenAmount)
    external
    onlyOwner
  {
    require(
      newMaxTokenAmount > maxTokenAmountPerAddress,
      "Cannot set less than last value"
    );
    maxTokenAmountPerAddress = newMaxTokenAmount;

    emit MaxTokenAmountPerSet(newMaxTokenAmount);
  }

  function blackList(address user) external onlyOwner whenNotPaused {
    Helpers.requireNonZeroAddress(user);
    require(
      configProps._isBlacklistEnabled,
      "Blacklisting not possible on this contract"
    );
    require(!_isBlacklisted[user], "User already blacklisted!");

    if (configProps._isWhitelistEnabled && whitelist[user]) {
      revert("Cannot blacklist a whitelisted address");
    }

    _isBlacklisted[user] = true;

    emit UserBlacklisted(user);
  }

  function removeFromBlacklist(address user) external onlyOwner whenNotPaused {
    require(
      configProps._isBlacklistEnabled,
      "Blacklisting not possible on this contract"
    );
    require(_isBlacklisted[user], "User already whitelisted");
    _isBlacklisted[user] = false;

    emit UserUnBlacklisted(user);
  }

  function transfer(address to, uint256 value)
    public
    virtual
    override
    whenNotPaused
    returns (bool)
  {
    if (configProps._isBlacklistEnabled) {
      require(!_isBlacklisted[to], "Recipient is blacklisted");
      require(!_isBlacklisted[msg.sender], "Sender is blacklisted");
    }
    if (configProps._isWhitelistEnabled) {
      require(whitelist[to], "Recipient not whitelisted");
      require(whitelist[msg.sender], "Sender not whitelisted");
    }
    if (configProps._isMaxAmountOfTokensSet) {
      require(
        balanceOf(to) + value <= maxTokenAmountPerAddress,
        "This address cannot hold that amount of tokens"
      );
    }
    return super.transfer(to, value);
  }

  function transferFrom(
    address from,
    address to,
    uint256 value
  ) public virtual override whenNotPaused returns (bool) {
    if (configProps._isBlacklistEnabled) {
      require(!_isBlacklisted[to], "Recipient is blacklisted");
      require(!_isBlacklisted[from], "Sender is blacklisted");
    }
    if (configProps._isWhitelistEnabled) {
      require(whitelist[to], "Recipient not whitelisted");
      require(whitelist[from], "Sender not whitelisted");
    }
    if (configProps._isMaxAmountOfTokensSet) {
      require(
        balanceOf(to) + value <= maxTokenAmountPerAddress,
        "This address cannot hold that amount of tokens"
      );
    }

    if (configProps._isForceTransferAllowed && owner() == msg.sender) {
      _transfer(from, to, value);
      return true;
    } else {
      return super.transferFrom(from, to, value);
    }
  }

  function mint(address account, uint256 amount)
    external
    onlyOwner
    whenNotPaused
  {
    require(
      configProps._isMintable,
      "Error: mint is not allowed in this contract"
    );
    if (configProps._isMaxAmountOfTokensSet) {
      require(
        balanceOf(account) + amount <= maxTokenAmountPerAddress,
        "This address cannot hold that amount of tokens"
      );
    }
    if (configProps._isBlacklistEnabled) {
      require(!_isBlacklisted[account], "Recipient is blacklisted");
    }
    if (configProps._isWhitelistEnabled) {
      require(whitelist[account], "Recipient not whitelisted");
    }

    super._mint(account, amount);
  }

  function burn(uint256 amount) public override onlyOwner whenNotPaused {
    require(
      configProps._isBurnable,
      "Error: burn is not allowed in this contract"
    );

    super.burn(amount);
  }

  function burnFrom(address account, uint256 amount)
    public
    override
    onlyOwner
    whenNotPaused
  {
    require(
      configProps._isBurnable,
      "Error: burn is not allowed in this contract"
    );

    super.burnFrom(account, amount);
  }

  function pause() external onlyOwner {
    require(
      configProps._isPausable,
      "Error: pause is not allowed in this contract"
    );

    _pause();
  }

  function unpause() external onlyOwner {
    require(
      configProps._isPausable,
      "Error: unpause is not allowed in this contract"
    );

    _unpause();
  }

  function renounceOwnership() public override onlyOwner whenNotPaused {
    super.renounceOwnership();
  }

  function transferOwnership(address newOwner)
    public
    override
    onlyOwner
    whenNotPaused
  {
    super.transferOwnership(newOwner);
  }

  /**
   * @notice Method for updating whitelist
   * @param updatedAddresses new whitelist addresses
   */
  function updateWhitelist(address[] memory updatedAddresses)
    external
    payable
    onlyOwner
  {
    require(configProps._isWhitelistEnabled, "Whitelist not enabled");

    _removeFromWhitelist(whitelistedAddresses);
    _addManyToWhitelist(updatedAddresses);
    whitelistedAddresses = updatedAddresses;

    emit UsersWhitelisted(updatedAddresses);
  }

  function getWhitelistedAddresses() external view returns (address[] memory) {
    return whitelistedAddresses;
  }

  /**
   * @dev Adds list of addresses to whitelist.
   * @param _beneficiaries Addresses to be added to the whitelist
   */
  function _addManyToWhitelist(address[] memory _beneficiaries) internal {
    for (uint256 i = 0; i < _beneficiaries.length; i++) {
      Helpers.requireNonZeroAddress(_beneficiaries[i]);
      if (configProps._isBlacklistEnabled && _isBlacklisted[_beneficiaries[i]]) {
        revert("Cannot whitelist a blacklisted address");
      }

      whitelist[_beneficiaries[i]] = true;
    }
  }

  /**
   * @dev Cleans whitelist, removing every user.
   * @param _beneficiaries Addresses to be unlisted
   */
  function _removeFromWhitelist(address[] memory _beneficiaries) internal {
    for (uint256 i = 0; i < _beneficiaries.length; i++) {
      whitelist[_beneficiaries[i]] = false;
    }
  }
}

File 2 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

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

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

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

File 3 of 11 : 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);
    }
}

File 4 of 11 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 5 of 11 : ERC20Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Pausable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

File 6 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 7 of 11 : Helpers.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.7;

library Helpers {
  function requireNonZeroAddress(address addr) internal pure {
    require(addr != address(0x0), "Address can't be Zero");
  }
}

File 8 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

File 9 of 11 : 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 10 of 11 : 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 11 of 11 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialSupplyToSet","type":"uint256"},{"internalType":"uint8","name":"decimalsToSet","type":"uint8"},{"internalType":"address","name":"tokenOwner","type":"address"},{"components":[{"internalType":"bool","name":"_isMintable","type":"bool"},{"internalType":"bool","name":"_isBurnable","type":"bool"},{"internalType":"bool","name":"_isPausable","type":"bool"},{"internalType":"bool","name":"_isBlacklistEnabled","type":"bool"},{"internalType":"bool","name":"_isDocumentAllowed","type":"bool"},{"internalType":"bool","name":"_isWhitelistEnabled","type":"bool"},{"internalType":"bool","name":"_isMaxAmountOfTokensSet","type":"bool"},{"internalType":"bool","name":"_isForceTransferAllowed","type":"bool"}],"internalType":"struct FullFeatureToken.ERC20ConfigProps","name":"customConfigProps","type":"tuple"},{"internalType":"uint256","name":"maxTokenAmount","type":"uint256"},{"internalType":"string","name":"newDocumentUri","type":"string"},{"internalType":"address payable","name":"feeReceiver","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newDocUri","type":"string"}],"name":"DocumentUriSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxTokenAmount","type":"uint256"}],"name":"MaxTokenAmountPerSet","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"blacklistedAddress","type":"address"}],"name":"UserBlacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"whitelistedAddress","type":"address"}],"name":"UserUnBlacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"updatedAddresses","type":"address[]"}],"name":"UsersWhitelisted","type":"event"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"blackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"documentUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistedAddresses","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialDocumentUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialFeeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialMaxTokenAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialTokenOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBlacklistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDocumentUriAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isForceTransferAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMaxAmountOfTokensSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPausable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newDocUri","type":"string"}],"name":"setDocumentUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTokenAmount","type":"uint256"}],"name":"setMaxTokenAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"updatedAddresses","type":"address[]"}],"name":"updateWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

61012060405260405162006e2f38038062006e2f83398181016040528101906200002a919062000d7b565b888881600390805190602001906200004492919062000afb565b5080600490805190602001906200005d92919062000afb565b5050506000600560006101000a81548160ff0219169083151502179055506200009b6200008f6200045760201b60201c565b6200045f60201b60201c565b60003411620000e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000d890620011ec565b60405180910390fd5b6000871162000127576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011e90620010dc565b60405180910390fd5b8360c001511562000179576000831162000178576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016f90620010fe565b60405180910390fd5b5b60128660ff161115620001c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001ba90620011a8565b60405180910390fd5b620001d9856200052560201b6200281d1760201c565b620001ef816200052560201b6200281d1760201c565b6200020681346200059b60201b620028901760201c565b8660a081815250508260c0818152505081600a90805190602001906200022e92919062000afb565b508073ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508473ffffffffffffffffffffffffffffffffffffffff166101008173ffffffffffffffffffffffffffffffffffffffff1660601b815250508560ff1660808160ff1660f81b8152505083600660008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff02191690831515021790555060608201518160000160036101000a81548160ff02191690831515021790555060808201518160000160046101000a81548160ff02191690831515021790555060a08201518160000160056101000a81548160ff02191690831515021790555060c08201518160000160066101000a81548160ff02191690831515021790555060e08201518160000160076101000a81548160ff02191690831515021790555090505081600b9080519060200190620003cd92919062000afb565b5082600c81905550620004028587600a620003e99190620013c4565b89620003f6919062001501565b6200069960201b60201c565b3373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614620004485762000447856200081260201b60201c565b5b50505050505050505062001a88565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000598576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058f906200120e565b60405180910390fd5b50565b80471015620005e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d89062001164565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516200060990620010c5565b60006040518083038185875af1925050503d806000811462000648576040519150601f19603f3d011682016040523d82523d6000602084013e6200064d565b606091505b505090508062000694576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200068b9062001142565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200070c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007039062001230565b60405180910390fd5b62000720600083836200090d60201b60201c565b80600260008282546200073491906200130c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200078b91906200130c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007f2919062001274565b60405180910390a36200080e600083836200092a60201b60201c565b5050565b620008226200045760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008486200092f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089890620011ca565b60405180910390fd5b620008b16200095960201b60201c565b15620008f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008eb9062001186565b60405180910390fd5b6200090a816200097060201b620029841760201c565b50565b6200092583838362000a8660201b62002a7c1760201c565b505050565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560009054906101000a900460ff16905090565b620009806200045760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009a66200092f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f690620011ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000a72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a699062001120565b60405180910390fd5b62000a83816200045f60201b60201c565b50565b62000a9e83838362000af660201b62002ad41760201c565b62000aae6200095960201b60201c565b1562000af1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ae89062001252565b60405180910390fd5b505050565b505050565b82805462000b099062001603565b90600052602060002090601f01602090048101928262000b2d576000855562000b79565b82601f1062000b4857805160ff191683800117855562000b79565b8280016001018555821562000b79579182015b8281111562000b7857825182559160200191906001019062000b5b565b5b50905062000b88919062000b8c565b5090565b5b8082111562000ba757600081600090555060010162000b8d565b5090565b600062000bc262000bbc84620012ba565b62001291565b90508281526020810184848401111562000be15762000be062001706565b5b62000bee848285620015cd565b509392505050565b60008151905062000c078162001a06565b92915050565b60008151905062000c1e8162001a20565b92915050565b60008151905062000c358162001a3a565b92915050565b600082601f83011262000c535762000c52620016fc565b5b815162000c6584826020860162000bab565b91505092915050565b6000610100828403121562000c885762000c8762001701565b5b62000c9561010062001291565b9050600062000ca78482850162000c24565b600083015250602062000cbd8482850162000c24565b602083015250604062000cd38482850162000c24565b604083015250606062000ce98482850162000c24565b606083015250608062000cff8482850162000c24565b60808301525060a062000d158482850162000c24565b60a08301525060c062000d2b8482850162000c24565b60c08301525060e062000d418482850162000c24565b60e08301525092915050565b60008151905062000d5e8162001a54565b92915050565b60008151905062000d758162001a6e565b92915050565b60008060008060008060008060006102008a8c03121562000da15762000da062001710565b5b60008a015167ffffffffffffffff81111562000dc25762000dc16200170b565b5b62000dd08c828d0162000c3b565b99505060208a015167ffffffffffffffff81111562000df45762000df36200170b565b5b62000e028c828d0162000c3b565b985050604062000e158c828d0162000d4d565b975050606062000e288c828d0162000d64565b965050608062000e3b8c828d0162000bf6565b95505060a062000e4e8c828d0162000c6e565b9450506101a062000e628c828d0162000d4d565b9350506101c08a015167ffffffffffffffff81111562000e875762000e866200170b565b5b62000e958c828d0162000c3b565b9250506101e062000ea98c828d0162000c0d565b9150509295985092959850929598565b600062000ec8602583620012fb565b915062000ed58262001733565b604082019050919050565b600062000eef602783620012fb565b915062000efc8262001782565b604082019050919050565b600062000f16602683620012fb565b915062000f2382620017d1565b604082019050919050565b600062000f3d603a83620012fb565b915062000f4a8262001820565b604082019050919050565b600062000f64601d83620012fb565b915062000f71826200186f565b602082019050919050565b600062000f8b601083620012fb565b915062000f988262001898565b602082019050919050565b600062000fb2602d83620012fb565b915062000fbf82620018c1565b604082019050919050565b600062000fd9602083620012fb565b915062000fe68262001910565b602082019050919050565b600062001000601783620012fb565b91506200100d8262001939565b602082019050919050565b600062001027600083620012f0565b9150620010348262001962565b600082019050919050565b60006200104e601583620012fb565b91506200105b8262001965565b602082019050919050565b600062001075601f83620012fb565b915062001082826200198e565b602082019050919050565b60006200109c602a83620012fb565b9150620010a982620019b7565b604082019050919050565b620010bf81620015b6565b82525050565b6000620010d28262001018565b9150819050919050565b60006020820190508181036000830152620010f78162000eb9565b9050919050565b60006020820190508181036000830152620011198162000ee0565b9050919050565b600060208201905081810360008301526200113b8162000f07565b9050919050565b600060208201905081810360008301526200115d8162000f2e565b9050919050565b600060208201905081810360008301526200117f8162000f55565b9050919050565b60006020820190508181036000830152620011a18162000f7c565b9050919050565b60006020820190508181036000830152620011c38162000fa3565b9050919050565b60006020820190508181036000830152620011e58162000fca565b9050919050565b60006020820190508181036000830152620012078162000ff1565b9050919050565b6000602082019050818103600083015262001229816200103f565b9050919050565b600060208201905081810360008301526200124b8162001066565b9050919050565b600060208201905081810360008301526200126d816200108d565b9050919050565b60006020820190506200128b6000830184620010b4565b92915050565b60006200129d620012b0565b9050620012ab828262001639565b919050565b6000604051905090565b600067ffffffffffffffff821115620012d857620012d7620016cd565b5b620012e38262001715565b9050602081019050919050565b600081905092915050565b600082825260208201905092915050565b60006200131982620015b6565b91506200132683620015b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200135e576200135d6200166f565b5b828201905092915050565b6000808291508390505b6001851115620013bb578086048111156200139357620013926200166f565b5b6001851615620013a35780820291505b8081029050620013b38562001726565b945062001373565b94509492505050565b6000620013d182620015b6565b9150620013de83620015c0565b92506200140d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001415565b905092915050565b600082620014275760019050620014fa565b81620014375760009050620014fa565b81600181146200145057600281146200145b5762001491565b6001915050620014fa565b60ff84111562001470576200146f6200166f565b5b8360020a9150848211156200148a57620014896200166f565b5b50620014fa565b5060208310610133831016604e8410600b8410161715620014cb5782820a905083811115620014c557620014c46200166f565b5b620014fa565b620014da848484600162001369565b92509050818404811115620014f457620014f36200166f565b5b81810290505b9392505050565b60006200150e82620015b6565b91506200151b83620015b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200155757620015566200166f565b5b828202905092915050565b60006200156f8262001596565b9050919050565b6000620015838262001596565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015620015ed578082015181840152602081019050620015d0565b83811115620015fd576000848401525b50505050565b600060028204905060018216806200161c57607f821691505b602082108114156200163357620016326200169e565b5b50919050565b620016448262001715565b810181811067ffffffffffffffff82111715620016665762001665620016cd565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f496e697469616c20737570706c79206d7573742062652067726561746572207460008201527f68616e2030000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820746f6b656e20616d6f756e74206d757374206265206772656174657260008201527f207468616e203000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f446563696d616c7320617265206f757473696465206f6620616c6c6f7765642060008201527f72616e67653a2030202d20313800000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4465706c6f796d656e7420666565207265717569726564000000000000000000600082015250565b50565b7f416464726573732063616e2774206265205a65726f0000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b62001a118162001562565b811462001a1d57600080fd5b50565b62001a2b8162001576565b811462001a3757600080fd5b50565b62001a45816200158a565b811462001a5157600080fd5b50565b62001a5f81620015b6565b811462001a6b57600080fd5b50565b62001a7981620015c0565b811462001a8557600080fd5b50565b60805160f81c60a05160c05160e05160601c6101005160601c61535962001ad660003960006120680152600061270c01526000612158015260006111b601526000610fd901526153596000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063a32f6976116100b6578063d48e41271161007a578063d48e4127146108bd578063dd62ed3e146108e8578063f0576e2714610925578063f2fde38b14610950578063f820f56714610979578063ffa1ad74146109a45761025c565b8063a32f6976146107c4578063a457c2d7146107ef578063a476df611461082c578063a9059cbb14610855578063a9d86685146108925761025c565b8063883356d911610108578063883356d9146106b05780638da5cb5b146106db5780638dac71911461070657806395d89b41146107315780639b19251a1461075c578063a09a1601146107995761025c565b806370a08231146105f1578063715018a61461062e57806379cc6790146106455780638456cb591461066e578063878dd332146106855761025c565b806339509351116101dd5780634838d165116101a15780634838d165146104f3578063537df3b61461051c5780635a3990ce146105455780635c975abb146105705780636c5adaae1461059b5780636d028027146105c65761025c565b806339509351146104225780633f4ba83a1461045f57806340c10f191461047657806342966c681461049f57806346b45af7146104c85761025c565b8063184d69ab11610224578063184d69ab1461034857806323b872dd14610373578063313ce567146103b057806335377214146103db578063378dc3dc146103f75761025c565b806302252c4d14610261578063044ab74e1461028a57806306fdde03146102b5578063095ea7b3146102e057806318160ddd1461031d575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613c24565b6109cf565b005b34801561029657600080fd5b5061029f610ad0565b6040516102ac9190614281565b60405180910390f35b3480156102c157600080fd5b506102ca610b5e565b6040516102d79190614281565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190613b52565b610bf0565b6040516103149190614266565b60405180910390f35b34801561032957600080fd5b50610332610c13565b60405161033f91906146e3565b60405180910390f35b34801561035457600080fd5b5061035d610c1d565b60405161036a9190614266565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613aff565b610c37565b6040516103a79190614266565b60405180910390f35b3480156103bc57600080fd5b506103c5610fd5565b6040516103d291906146fe565b60405180910390f35b6103f560048036038101906103f09190613b92565b610ffd565b005b34801561040357600080fd5b5061040c6111b4565b60405161041991906146e3565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613b52565b6111d8565b6040516104569190614266565b60405180910390f35b34801561046b57600080fd5b5061047461120f565b005b34801561048257600080fd5b5061049d60048036038101906104989190613b52565b6112e7565b005b3480156104ab57600080fd5b506104c660048036038101906104c19190613c24565b6115c7565b005b3480156104d457600080fd5b506104dd6116e9565b6040516104ea9190614266565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190613a92565b611703565b005b34801561052857600080fd5b50610543600480360381019061053e9190613a92565b6119e9565b005b34801561055157600080fd5b5061055a611c1d565b6040516105679190614266565b60405180910390f35b34801561057c57600080fd5b50610585611c37565b6040516105929190614266565b60405180910390f35b3480156105a757600080fd5b506105b0611c4e565b6040516105bd9190614266565b60405180910390f35b3480156105d257600080fd5b506105db611c68565b6040516105e89190614244565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190613a92565b611cf6565b60405161062591906146e3565b60405180910390f35b34801561063a57600080fd5b50610643611d3e565b005b34801561065157600080fd5b5061066c60048036038101906106679190613b52565b611e0c565b005b34801561067a57600080fd5b50610683611f30565b005b34801561069157600080fd5b5061069a612008565b6040516106a79190614266565b60405180910390f35b3480156106bc57600080fd5b506106c5612022565b6040516106d29190614266565b60405180910390f35b3480156106e757600080fd5b506106f061203c565b6040516106fd9190614229565b60405180910390f35b34801561071257600080fd5b5061071b612066565b6040516107289190614229565b60405180910390f35b34801561073d57600080fd5b5061074661208a565b6040516107539190614281565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613a92565b61211c565b6040516107909190614266565b60405180910390f35b3480156107a557600080fd5b506107ae61213c565b6040516107bb9190614266565b60405180910390f35b3480156107d057600080fd5b506107d9612156565b6040516107e691906146e3565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613b52565b61217a565b6040516108239190614266565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e9190613bdb565b6121f1565b005b34801561086157600080fd5b5061087c60048036038101906108779190613b52565b6122be565b6040516108899190614266565b60405180910390f35b34801561089e57600080fd5b506108a76125ef565b6040516108b49190614281565b60405180910390f35b3480156108c957600080fd5b506108d261267d565b6040516108df91906146e3565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a9190613abf565b612683565b60405161091c91906146e3565b60405180910390f35b34801561093157600080fd5b5061093a61270a565b6040516109479190614229565b60405180910390f35b34801561095c57600080fd5b5061097760048036038101906109729190613a92565b61272e565b005b34801561098557600080fd5b5061098e6127fe565b60405161099b9190614266565b60405180910390f35b3480156109b057600080fd5b506109b9612818565b6040516109c691906146fe565b60405180910390f35b6109d7612ad9565b73ffffffffffffffffffffffffffffffffffffffff166109f561203c565b73ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290614563565b60405180910390fd5b600c548111610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690614543565b60405180910390fd5b80600c819055507f2905481c6fd1a037492016c4760435a52203d82a6f34dc3de40f464c1bf42d5981604051610ac591906146e3565b60405180910390a150565b600b8054610add9061491c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b099061491c565b8015610b565780601f10610b2b57610100808354040283529160200191610b56565b820191906000526020600020905b815481529060010190602001808311610b3957829003601f168201915b505050505081565b606060038054610b6d9061491c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b999061491c565b8015610be65780601f10610bbb57610100808354040283529160200191610be6565b820191906000526020600020905b815481529060010190602001808311610bc957829003601f168201915b5050505050905090565b600080610bfb612ad9565b9050610c08818585612ae1565b600191505092915050565b6000600254905090565b6000600660000160059054906101000a900460ff16905090565b6000610c41611c37565b15610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c78906144e3565b60405180910390fd5b600660000160039054906101000a900460ff1615610db457600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90614423565b60405180910390fd5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90614503565b60405180910390fd5b5b600660000160059054906101000a900460ff1615610ee557600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90614523565b60405180910390fd5b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90614683565b60405180910390fd5b5b600660000160069054906101000a900460ff1615610f5657600c5482610f0a85611cf6565b610f1491906147fb565b1115610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90614403565b60405180910390fd5b5b600660000160079054906101000a900460ff168015610fa757503373ffffffffffffffffffffffffffffffffffffffff16610f8f61203c565b73ffffffffffffffffffffffffffffffffffffffff16145b15610fc057610fb7848484612cac565b60019050610fce565b610fcb848484612f2d565b90505b9392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b611005612ad9565b73ffffffffffffffffffffffffffffffffffffffff1661102361203c565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090614563565b60405180910390fd5b600660000160059054906101000a900460ff166110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290614623565b60405180910390fd5b61115a600980548060200260200160405190810160405280929190818152602001828054801561115057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611106575b5050505050612f5c565b61116381612ff1565b806009908051906020019061117992919061382d565b507f6141feff42f24e29d1af3d91bffa3d40521e53485e9c92e358c4d946c0adbd38816040516111a99190614244565b60405180910390a150565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806111e3612ad9565b90506112048185856111f58589612683565b6111ff91906147fb565b612ae1565b600191505092915050565b611217612ad9565b73ffffffffffffffffffffffffffffffffffffffff1661123561203c565b73ffffffffffffffffffffffffffffffffffffffff161461128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290614563565b60405180910390fd5b600660000160029054906101000a900460ff166112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d4906143a3565b60405180910390fd5b6112e561316b565b565b6112ef612ad9565b73ffffffffffffffffffffffffffffffffffffffff1661130d61203c565b73ffffffffffffffffffffffffffffffffffffffff1614611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90614563565b60405180910390fd5b61136b611c37565b156113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a2906144e3565b60405180910390fd5b600660000160009054906101000a900460ff166113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f4906143e3565b60405180910390fd5b600660000160069054906101000a900460ff161561146e57600c548161142284611cf6565b61142c91906147fb565b111561146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490614403565b60405180910390fd5b5b600660000160039054906101000a900460ff161561151457600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90614423565b60405180910390fd5b5b600660000160059054906101000a900460ff16156115b957600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90614523565b60405180910390fd5b5b6115c3828261320d565b5050565b6115cf612ad9565b73ffffffffffffffffffffffffffffffffffffffff166115ed61203c565b73ffffffffffffffffffffffffffffffffffffffff1614611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90614563565b60405180910390fd5b61164b611c37565b1561168b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611682906144e3565b60405180910390fd5b600660000160019054906101000a900460ff166116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490614443565b60405180910390fd5b6116e68161336d565b50565b6000600660000160009054906101000a900460ff16905090565b61170b612ad9565b73ffffffffffffffffffffffffffffffffffffffff1661172961203c565b73ffffffffffffffffffffffffffffffffffffffff161461177f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177690614563565b60405180910390fd5b611787611c37565b156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906144e3565b60405180910390fd5b6117d08161281d565b600660000160039054906101000a900460ff16611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990614663565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a690614343565b60405180910390fd5b600660000160059054906101000a900460ff1680156119175750600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614323565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f7f8b7dc89dae85811a7a85800b892b5816ad5d381c856f1b56490f8fc470c9cb816040516119de9190614229565b60405180910390a150565b6119f1612ad9565b73ffffffffffffffffffffffffffffffffffffffff16611a0f61203c565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90614563565b60405180910390fd5b611a6d611c37565b15611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa4906144e3565b60405180910390fd5b600660000160039054906101000a900460ff16611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690614663565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b82906142c3565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f4ca5b343d678ca6f1f96e8c8a2115c41c2d40641fd872b928ba6f95d3648b9d181604051611c129190614229565b60405180910390a150565b6000600660000160069054906101000a900460ff16905090565b6000600560009054906101000a900460ff16905090565b6000600660000160079054906101000a900460ff16905090565b60606009805480602002602001604051908101604052809291908181526020018280548015611cec57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611ca2575b5050505050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d46612ad9565b73ffffffffffffffffffffffffffffffffffffffff16611d6461203c565b73ffffffffffffffffffffffffffffffffffffffff1614611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190614563565b60405180910390fd5b611dc2611c37565b15611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df9906144e3565b60405180910390fd5b611e0a613381565b565b611e14612ad9565b73ffffffffffffffffffffffffffffffffffffffff16611e3261203c565b73ffffffffffffffffffffffffffffffffffffffff1614611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90614563565b60405180910390fd5b611e90611c37565b15611ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec7906144e3565b60405180910390fd5b600660000160019054906101000a900460ff16611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990614443565b60405180910390fd5b611f2c8282613409565b5050565b611f38612ad9565b73ffffffffffffffffffffffffffffffffffffffff16611f5661203c565b73ffffffffffffffffffffffffffffffffffffffff1614611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa390614563565b60405180910390fd5b600660000160029054906101000a900460ff16611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff5906144c3565b60405180910390fd5b612006613429565b565b6000600660000160039054906101000a900460ff16905090565b6000600660000160019054906101000a900460ff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060600480546120999061491c565b80601f01602080910402602001604051908101604052809291908181526020018280546120c59061491c565b80156121125780601f106120e757610100808354040283529160200191612112565b820191906000526020600020905b8154815290600101906020018083116120f557829003601f168201915b5050505050905090565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600660000160029054906101000a900460ff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080612185612ad9565b905060006121938286612683565b9050838110156121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf90614643565b60405180910390fd5b6121e58286868403612ae1565b60019250505092915050565b6121f9612ad9565b73ffffffffffffffffffffffffffffffffffffffff1661221761203c565b73ffffffffffffffffffffffffffffffffffffffff161461226d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226490614563565b60405180910390fd5b80600b90805190602001906122839291906138b7565b507f4456a0b562609d67398ddb488f136db285cd3c92343e0a7ba684925669237ade816040516122b39190614281565b60405180910390a150565b60006122c8611c37565b15612308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ff906144e3565b60405180910390fd5b600660000160039054906101000a900460ff161561243b57600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614423565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190614503565b60405180910390fd5b5b600660000160059054906101000a900460ff161561256c57600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d690614523565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661256b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256290614683565b60405180910390fd5b5b600660000160069054906101000a900460ff16156125dd57600c548261259185611cf6565b61259b91906147fb565b11156125dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d390614403565b60405180910390fd5b5b6125e783836134cc565b905092915050565b600a80546125fc9061491c565b80601f01602080910402602001604051908101604052809291908181526020018280546126289061491c565b80156126755780601f1061264a57610100808354040283529160200191612675565b820191906000526020600020905b81548152906001019060200180831161265857829003601f168201915b505050505081565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b612736612ad9565b73ffffffffffffffffffffffffffffffffffffffff1661275461203c565b73ffffffffffffffffffffffffffffffffffffffff16146127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a190614563565b60405180910390fd5b6127b2611c37565b156127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e9906144e3565b60405180910390fd5b6127fb81612984565b50565b6000600660000160049054906101000a900460ff16905090565b600581565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561288d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288490614603565b60405180910390fd5b50565b804710156128d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ca906144a3565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516128f990614214565b60006040518083038185875af1925050503d8060008114612936576040519150601f19603f3d011682016040523d82523d6000602084013e61293b565b606091505b505090508061297f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297690614483565b60405180910390fd5b505050565b61298c612ad9565b73ffffffffffffffffffffffffffffffffffffffff166129aa61203c565b73ffffffffffffffffffffffffffffffffffffffff1614612a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f790614563565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6790614363565b60405180910390fd5b612a79816134ef565b50565b612a87838383612ad4565b612a8f611c37565b15612acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac6906146c3565b60405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b48906145e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb890614383565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c9f91906146e3565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d13906145c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d83906142a3565b60405180910390fd5b612d978383836135b5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1490614463565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eb091906147fb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f1491906146e3565b60405180910390a3612f278484846135c5565b50505050565b600080612f38612ad9565b9050612f458582856135ca565b612f50858585612cac565b60019150509392505050565b60005b8151811015612fed57600060086000848481518110612f8157612f80614a26565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612fe59061497f565b915050612f5f565b5050565b60005b81518110156131675761302082828151811061301357613012614a26565b5b602002602001015161281d565b600660000160039054906101000a900460ff1680156130a257506007600083838151811061305157613050614a26565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156130e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d990614583565b60405180910390fd5b6001600860008484815181106130fb576130fa614a26565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061315f9061497f565b915050612ff4565b5050565b613173611c37565b6131b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a9906142e3565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6131f6612ad9565b6040516132039190614229565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561327d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613274906146a3565b60405180910390fd5b613289600083836135b5565b806002600082825461329b91906147fb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132f091906147fb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161335591906146e3565b60405180910390a3613369600083836135c5565b5050565b61337e613378612ad9565b82613656565b50565b613389612ad9565b73ffffffffffffffffffffffffffffffffffffffff166133a761203c565b73ffffffffffffffffffffffffffffffffffffffff16146133fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f490614563565b60405180910390fd5b61340760006134ef565b565b61341b82613415612ad9565b836135ca565b6134258282613656565b5050565b613431611c37565b15613471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613468906144e3565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586134b5612ad9565b6040516134c29190614229565b60405180910390a1565b6000806134d7612ad9565b90506134e4818585612cac565b600191505092915050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6135c0838383612a7c565b505050565b505050565b60006135d68484612683565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146136505781811015613642576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613639906143c3565b60405180910390fd5b61364f8484848403612ae1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136bd906145a3565b60405180910390fd5b6136d2826000836135b5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374f90614303565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546137af9190614851565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161381491906146e3565b60405180910390a3613828836000846135c5565b505050565b8280548282559060005260206000209081019282156138a6579160200282015b828111156138a55782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061384d565b5b5090506138b3919061393d565b5090565b8280546138c39061491c565b90600052602060002090601f0160209004810192826138e5576000855561392c565b82601f106138fe57805160ff191683800117855561392c565b8280016001018555821561392c579182015b8281111561392b578251825591602001919060010190613910565b5b509050613939919061393d565b5090565b5b8082111561395657600081600090555060010161393e565b5090565b600061396d6139688461473e565b614719565b905080838252602082019050828560208602820111156139905761398f614a89565b5b60005b858110156139c057816139a68882613a0c565b845260208401935060208301925050600181019050613993565b5050509392505050565b60006139dd6139d88461476a565b614719565b9050828152602081018484840111156139f9576139f8614a8e565b5b613a048482856148da565b509392505050565b600081359050613a1b816152f5565b92915050565b600082601f830112613a3657613a35614a84565b5b8135613a4684826020860161395a565b91505092915050565b600082601f830112613a6457613a63614a84565b5b8135613a748482602086016139ca565b91505092915050565b600081359050613a8c8161530c565b92915050565b600060208284031215613aa857613aa7614a98565b5b6000613ab684828501613a0c565b91505092915050565b60008060408385031215613ad657613ad5614a98565b5b6000613ae485828601613a0c565b9250506020613af585828601613a0c565b9150509250929050565b600080600060608486031215613b1857613b17614a98565b5b6000613b2686828701613a0c565b9350506020613b3786828701613a0c565b9250506040613b4886828701613a7d565b9150509250925092565b60008060408385031215613b6957613b68614a98565b5b6000613b7785828601613a0c565b9250506020613b8885828601613a7d565b9150509250929050565b600060208284031215613ba857613ba7614a98565b5b600082013567ffffffffffffffff811115613bc657613bc5614a93565b5b613bd284828501613a21565b91505092915050565b600060208284031215613bf157613bf0614a98565b5b600082013567ffffffffffffffff811115613c0f57613c0e614a93565b5b613c1b84828501613a4f565b91505092915050565b600060208284031215613c3a57613c39614a98565b5b6000613c4884828501613a7d565b91505092915050565b6000613c5d8383613c69565b60208301905092915050565b613c7281614885565b82525050565b613c8181614885565b82525050565b6000613c92826147ab565b613c9c81856147ce565b9350613ca78361479b565b8060005b83811015613cd8578151613cbf8882613c51565b9750613cca836147c1565b925050600181019050613cab565b5085935050505092915050565b613cee81614897565b82525050565b6000613cff826147b6565b613d0981856147ea565b9350613d198185602086016148e9565b613d2281614a9d565b840191505092915050565b6000613d3a6023836147ea565b9150613d4582614aae565b604082019050919050565b6000613d5d6018836147ea565b9150613d6882614afd565b602082019050919050565b6000613d806014836147ea565b9150613d8b82614b26565b602082019050919050565b6000613da36022836147ea565b9150613dae82614b4f565b604082019050919050565b6000613dc66026836147ea565b9150613dd182614b9e565b604082019050919050565b6000613de96019836147ea565b9150613df482614bed565b602082019050919050565b6000613e0c6026836147ea565b9150613e1782614c16565b604082019050919050565b6000613e2f6022836147ea565b9150613e3a82614c65565b604082019050919050565b6000613e52602e836147ea565b9150613e5d82614cb4565b604082019050919050565b6000613e75601d836147ea565b9150613e8082614d03565b602082019050919050565b6000613e98602b836147ea565b9150613ea382614d2c565b604082019050919050565b6000613ebb602e836147ea565b9150613ec682614d7b565b604082019050919050565b6000613ede6018836147ea565b9150613ee982614dca565b602082019050919050565b6000613f01602b836147ea565b9150613f0c82614df3565b604082019050919050565b6000613f246026836147ea565b9150613f2f82614e42565b604082019050919050565b6000613f47603a836147ea565b9150613f5282614e91565b604082019050919050565b6000613f6a601d836147ea565b9150613f7582614ee0565b602082019050919050565b6000613f8d602c836147ea565b9150613f9882614f09565b604082019050919050565b6000613fb06010836147ea565b9150613fbb82614f58565b602082019050919050565b6000613fd36015836147ea565b9150613fde82614f81565b602082019050919050565b6000613ff66019836147ea565b915061400182614faa565b602082019050919050565b6000614019601f836147ea565b915061402482614fd3565b602082019050919050565b600061403c6020836147ea565b915061404782614ffc565b602082019050919050565b600061405f6026836147ea565b915061406a82615025565b604082019050919050565b60006140826021836147ea565b915061408d82615074565b604082019050919050565b60006140a56025836147ea565b91506140b0826150c3565b604082019050919050565b60006140c86000836147df565b91506140d382615112565b600082019050919050565b60006140eb6024836147ea565b91506140f682615115565b604082019050919050565b600061410e6015836147ea565b915061411982615164565b602082019050919050565b60006141316015836147ea565b915061413c8261518d565b602082019050919050565b60006141546025836147ea565b915061415f826151b6565b604082019050919050565b6000614177602a836147ea565b915061418282615205565b604082019050919050565b600061419a6016836147ea565b91506141a582615254565b602082019050919050565b60006141bd601f836147ea565b91506141c88261527d565b602082019050919050565b60006141e0602a836147ea565b91506141eb826152a6565b604082019050919050565b6141ff816148c3565b82525050565b61420e816148cd565b82525050565b600061421f826140bb565b9150819050919050565b600060208201905061423e6000830184613c78565b92915050565b6000602082019050818103600083015261425e8184613c87565b905092915050565b600060208201905061427b6000830184613ce5565b92915050565b6000602082019050818103600083015261429b8184613cf4565b905092915050565b600060208201905081810360008301526142bc81613d2d565b9050919050565b600060208201905081810360008301526142dc81613d50565b9050919050565b600060208201905081810360008301526142fc81613d73565b9050919050565b6000602082019050818103600083015261431c81613d96565b9050919050565b6000602082019050818103600083015261433c81613db9565b9050919050565b6000602082019050818103600083015261435c81613ddc565b9050919050565b6000602082019050818103600083015261437c81613dff565b9050919050565b6000602082019050818103600083015261439c81613e22565b9050919050565b600060208201905081810360008301526143bc81613e45565b9050919050565b600060208201905081810360008301526143dc81613e68565b9050919050565b600060208201905081810360008301526143fc81613e8b565b9050919050565b6000602082019050818103600083015261441c81613eae565b9050919050565b6000602082019050818103600083015261443c81613ed1565b9050919050565b6000602082019050818103600083015261445c81613ef4565b9050919050565b6000602082019050818103600083015261447c81613f17565b9050919050565b6000602082019050818103600083015261449c81613f3a565b9050919050565b600060208201905081810360008301526144bc81613f5d565b9050919050565b600060208201905081810360008301526144dc81613f80565b9050919050565b600060208201905081810360008301526144fc81613fa3565b9050919050565b6000602082019050818103600083015261451c81613fc6565b9050919050565b6000602082019050818103600083015261453c81613fe9565b9050919050565b6000602082019050818103600083015261455c8161400c565b9050919050565b6000602082019050818103600083015261457c8161402f565b9050919050565b6000602082019050818103600083015261459c81614052565b9050919050565b600060208201905081810360008301526145bc81614075565b9050919050565b600060208201905081810360008301526145dc81614098565b9050919050565b600060208201905081810360008301526145fc816140de565b9050919050565b6000602082019050818103600083015261461c81614101565b9050919050565b6000602082019050818103600083015261463c81614124565b9050919050565b6000602082019050818103600083015261465c81614147565b9050919050565b6000602082019050818103600083015261467c8161416a565b9050919050565b6000602082019050818103600083015261469c8161418d565b9050919050565b600060208201905081810360008301526146bc816141b0565b9050919050565b600060208201905081810360008301526146dc816141d3565b9050919050565b60006020820190506146f860008301846141f6565b92915050565b60006020820190506147136000830184614205565b92915050565b6000614723614734565b905061472f828261494e565b919050565b6000604051905090565b600067ffffffffffffffff82111561475957614758614a55565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561478557614784614a55565b5b61478e82614a9d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000614806826148c3565b9150614811836148c3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614846576148456149c8565b5b828201905092915050565b600061485c826148c3565b9150614867836148c3565b92508282101561487a576148796149c8565b5b828203905092915050565b6000614890826148a3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156149075780820151818401526020810190506148ec565b83811115614916576000848401525b50505050565b6000600282049050600182168061493457607f821691505b60208210811415614948576149476149f7565b5b50919050565b61495782614a9d565b810181811067ffffffffffffffff8211171561497657614975614a55565b5b80604052505050565b600061498a826148c3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149bd576149bc6149c8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5573657220616c72656164792077686974656c69737465640000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f7420626c61636b6c69737420612077686974656c6973746564206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5573657220616c726561647920626c61636b6c69737465642100000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a20756e7061757365206973206e6f7420616c6c6f77656420696e60008201527f207468697320636f6e7472616374000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f4572726f723a206d696e74206973206e6f7420616c6c6f77656420696e20746860008201527f697320636f6e7472616374000000000000000000000000000000000000000000602082015250565b7f5468697320616464726573732063616e6e6f7420686f6c64207468617420616d60008201527f6f756e74206f6620746f6b656e73000000000000000000000000000000000000602082015250565b7f526563697069656e7420697320626c61636b6c69737465640000000000000000600082015250565b7f4572726f723a206275726e206973206e6f7420616c6c6f77656420696e20746860008201527f697320636f6e7472616374000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4572726f723a207061757365206973206e6f7420616c6c6f77656420696e207460008201527f68697320636f6e74726163740000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b7f526563697069656e74206e6f742077686974656c697374656400000000000000600082015250565b7f43616e6e6f7420736574206c657373207468616e206c6173742076616c756500600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e6e6f742077686974656c697374206120626c61636b6c6973746564206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573732063616e2774206265205a65726f0000000000000000000000600082015250565b7f57686974656c697374206e6f7420656e61626c65640000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c697374696e67206e6f7420706f737369626c65206f6e2074686960008201527f7320636f6e747261637400000000000000000000000000000000000000000000602082015250565b7f53656e646572206e6f742077686974656c697374656400000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6152fe81614885565b811461530957600080fd5b50565b615315816148c3565b811461532057600080fd5b5056fea26469706673582212208a3b6217be253ef09ab9befef03267d9804c7f392d9625986976c3c62caa10ab64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000196e919f74baeafca10c313043848c39a8f5effd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002800000000000000000000000009254c0fcb2faa4550b9ba582558ce1d03ba3d05d000000000000000000000000000000000000000000000000000000000000001e4d564d463a204d6574617665727365204d7573696320466573746976616c000000000000000000000000000000000000000000000000000000000000000000044d564d46000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806370a0823111610144578063a32f6976116100b6578063d48e41271161007a578063d48e4127146108bd578063dd62ed3e146108e8578063f0576e2714610925578063f2fde38b14610950578063f820f56714610979578063ffa1ad74146109a45761025c565b8063a32f6976146107c4578063a457c2d7146107ef578063a476df611461082c578063a9059cbb14610855578063a9d86685146108925761025c565b8063883356d911610108578063883356d9146106b05780638da5cb5b146106db5780638dac71911461070657806395d89b41146107315780639b19251a1461075c578063a09a1601146107995761025c565b806370a08231146105f1578063715018a61461062e57806379cc6790146106455780638456cb591461066e578063878dd332146106855761025c565b806339509351116101dd5780634838d165116101a15780634838d165146104f3578063537df3b61461051c5780635a3990ce146105455780635c975abb146105705780636c5adaae1461059b5780636d028027146105c65761025c565b806339509351146104225780633f4ba83a1461045f57806340c10f191461047657806342966c681461049f57806346b45af7146104c85761025c565b8063184d69ab11610224578063184d69ab1461034857806323b872dd14610373578063313ce567146103b057806335377214146103db578063378dc3dc146103f75761025c565b806302252c4d14610261578063044ab74e1461028a57806306fdde03146102b5578063095ea7b3146102e057806318160ddd1461031d575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613c24565b6109cf565b005b34801561029657600080fd5b5061029f610ad0565b6040516102ac9190614281565b60405180910390f35b3480156102c157600080fd5b506102ca610b5e565b6040516102d79190614281565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190613b52565b610bf0565b6040516103149190614266565b60405180910390f35b34801561032957600080fd5b50610332610c13565b60405161033f91906146e3565b60405180910390f35b34801561035457600080fd5b5061035d610c1d565b60405161036a9190614266565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613aff565b610c37565b6040516103a79190614266565b60405180910390f35b3480156103bc57600080fd5b506103c5610fd5565b6040516103d291906146fe565b60405180910390f35b6103f560048036038101906103f09190613b92565b610ffd565b005b34801561040357600080fd5b5061040c6111b4565b60405161041991906146e3565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613b52565b6111d8565b6040516104569190614266565b60405180910390f35b34801561046b57600080fd5b5061047461120f565b005b34801561048257600080fd5b5061049d60048036038101906104989190613b52565b6112e7565b005b3480156104ab57600080fd5b506104c660048036038101906104c19190613c24565b6115c7565b005b3480156104d457600080fd5b506104dd6116e9565b6040516104ea9190614266565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190613a92565b611703565b005b34801561052857600080fd5b50610543600480360381019061053e9190613a92565b6119e9565b005b34801561055157600080fd5b5061055a611c1d565b6040516105679190614266565b60405180910390f35b34801561057c57600080fd5b50610585611c37565b6040516105929190614266565b60405180910390f35b3480156105a757600080fd5b506105b0611c4e565b6040516105bd9190614266565b60405180910390f35b3480156105d257600080fd5b506105db611c68565b6040516105e89190614244565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190613a92565b611cf6565b60405161062591906146e3565b60405180910390f35b34801561063a57600080fd5b50610643611d3e565b005b34801561065157600080fd5b5061066c60048036038101906106679190613b52565b611e0c565b005b34801561067a57600080fd5b50610683611f30565b005b34801561069157600080fd5b5061069a612008565b6040516106a79190614266565b60405180910390f35b3480156106bc57600080fd5b506106c5612022565b6040516106d29190614266565b60405180910390f35b3480156106e757600080fd5b506106f061203c565b6040516106fd9190614229565b60405180910390f35b34801561071257600080fd5b5061071b612066565b6040516107289190614229565b60405180910390f35b34801561073d57600080fd5b5061074661208a565b6040516107539190614281565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613a92565b61211c565b6040516107909190614266565b60405180910390f35b3480156107a557600080fd5b506107ae61213c565b6040516107bb9190614266565b60405180910390f35b3480156107d057600080fd5b506107d9612156565b6040516107e691906146e3565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613b52565b61217a565b6040516108239190614266565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e9190613bdb565b6121f1565b005b34801561086157600080fd5b5061087c60048036038101906108779190613b52565b6122be565b6040516108899190614266565b60405180910390f35b34801561089e57600080fd5b506108a76125ef565b6040516108b49190614281565b60405180910390f35b3480156108c957600080fd5b506108d261267d565b6040516108df91906146e3565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a9190613abf565b612683565b60405161091c91906146e3565b60405180910390f35b34801561093157600080fd5b5061093a61270a565b6040516109479190614229565b60405180910390f35b34801561095c57600080fd5b5061097760048036038101906109729190613a92565b61272e565b005b34801561098557600080fd5b5061098e6127fe565b60405161099b9190614266565b60405180910390f35b3480156109b057600080fd5b506109b9612818565b6040516109c691906146fe565b60405180910390f35b6109d7612ad9565b73ffffffffffffffffffffffffffffffffffffffff166109f561203c565b73ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290614563565b60405180910390fd5b600c548111610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690614543565b60405180910390fd5b80600c819055507f2905481c6fd1a037492016c4760435a52203d82a6f34dc3de40f464c1bf42d5981604051610ac591906146e3565b60405180910390a150565b600b8054610add9061491c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b099061491c565b8015610b565780601f10610b2b57610100808354040283529160200191610b56565b820191906000526020600020905b815481529060010190602001808311610b3957829003601f168201915b505050505081565b606060038054610b6d9061491c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b999061491c565b8015610be65780601f10610bbb57610100808354040283529160200191610be6565b820191906000526020600020905b815481529060010190602001808311610bc957829003601f168201915b5050505050905090565b600080610bfb612ad9565b9050610c08818585612ae1565b600191505092915050565b6000600254905090565b6000600660000160059054906101000a900460ff16905090565b6000610c41611c37565b15610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c78906144e3565b60405180910390fd5b600660000160039054906101000a900460ff1615610db457600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90614423565b60405180910390fd5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90614503565b60405180910390fd5b5b600660000160059054906101000a900460ff1615610ee557600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90614523565b60405180910390fd5b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90614683565b60405180910390fd5b5b600660000160069054906101000a900460ff1615610f5657600c5482610f0a85611cf6565b610f1491906147fb565b1115610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90614403565b60405180910390fd5b5b600660000160079054906101000a900460ff168015610fa757503373ffffffffffffffffffffffffffffffffffffffff16610f8f61203c565b73ffffffffffffffffffffffffffffffffffffffff16145b15610fc057610fb7848484612cac565b60019050610fce565b610fcb848484612f2d565b90505b9392505050565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b611005612ad9565b73ffffffffffffffffffffffffffffffffffffffff1661102361203c565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090614563565b60405180910390fd5b600660000160059054906101000a900460ff166110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290614623565b60405180910390fd5b61115a600980548060200260200160405190810160405280929190818152602001828054801561115057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611106575b5050505050612f5c565b61116381612ff1565b806009908051906020019061117992919061382d565b507f6141feff42f24e29d1af3d91bffa3d40521e53485e9c92e358c4d946c0adbd38816040516111a99190614244565b60405180910390a150565b7f0000000000000000000000000000000000000000000000000000000005f5e10081565b6000806111e3612ad9565b90506112048185856111f58589612683565b6111ff91906147fb565b612ae1565b600191505092915050565b611217612ad9565b73ffffffffffffffffffffffffffffffffffffffff1661123561203c565b73ffffffffffffffffffffffffffffffffffffffff161461128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290614563565b60405180910390fd5b600660000160029054906101000a900460ff166112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d4906143a3565b60405180910390fd5b6112e561316b565b565b6112ef612ad9565b73ffffffffffffffffffffffffffffffffffffffff1661130d61203c565b73ffffffffffffffffffffffffffffffffffffffff1614611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90614563565b60405180910390fd5b61136b611c37565b156113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a2906144e3565b60405180910390fd5b600660000160009054906101000a900460ff166113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f4906143e3565b60405180910390fd5b600660000160069054906101000a900460ff161561146e57600c548161142284611cf6565b61142c91906147fb565b111561146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490614403565b60405180910390fd5b5b600660000160039054906101000a900460ff161561151457600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90614423565b60405180910390fd5b5b600660000160059054906101000a900460ff16156115b957600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90614523565b60405180910390fd5b5b6115c3828261320d565b5050565b6115cf612ad9565b73ffffffffffffffffffffffffffffffffffffffff166115ed61203c565b73ffffffffffffffffffffffffffffffffffffffff1614611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90614563565b60405180910390fd5b61164b611c37565b1561168b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611682906144e3565b60405180910390fd5b600660000160019054906101000a900460ff166116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490614443565b60405180910390fd5b6116e68161336d565b50565b6000600660000160009054906101000a900460ff16905090565b61170b612ad9565b73ffffffffffffffffffffffffffffffffffffffff1661172961203c565b73ffffffffffffffffffffffffffffffffffffffff161461177f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177690614563565b60405180910390fd5b611787611c37565b156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906144e3565b60405180910390fd5b6117d08161281d565b600660000160039054906101000a900460ff16611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990614663565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a690614343565b60405180910390fd5b600660000160059054906101000a900460ff1680156119175750600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614323565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f7f8b7dc89dae85811a7a85800b892b5816ad5d381c856f1b56490f8fc470c9cb816040516119de9190614229565b60405180910390a150565b6119f1612ad9565b73ffffffffffffffffffffffffffffffffffffffff16611a0f61203c565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90614563565b60405180910390fd5b611a6d611c37565b15611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa4906144e3565b60405180910390fd5b600660000160039054906101000a900460ff16611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690614663565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b82906142c3565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f4ca5b343d678ca6f1f96e8c8a2115c41c2d40641fd872b928ba6f95d3648b9d181604051611c129190614229565b60405180910390a150565b6000600660000160069054906101000a900460ff16905090565b6000600560009054906101000a900460ff16905090565b6000600660000160079054906101000a900460ff16905090565b60606009805480602002602001604051908101604052809291908181526020018280548015611cec57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611ca2575b5050505050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d46612ad9565b73ffffffffffffffffffffffffffffffffffffffff16611d6461203c565b73ffffffffffffffffffffffffffffffffffffffff1614611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190614563565b60405180910390fd5b611dc2611c37565b15611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df9906144e3565b60405180910390fd5b611e0a613381565b565b611e14612ad9565b73ffffffffffffffffffffffffffffffffffffffff16611e3261203c565b73ffffffffffffffffffffffffffffffffffffffff1614611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90614563565b60405180910390fd5b611e90611c37565b15611ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec7906144e3565b60405180910390fd5b600660000160019054906101000a900460ff16611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990614443565b60405180910390fd5b611f2c8282613409565b5050565b611f38612ad9565b73ffffffffffffffffffffffffffffffffffffffff16611f5661203c565b73ffffffffffffffffffffffffffffffffffffffff1614611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa390614563565b60405180910390fd5b600660000160029054906101000a900460ff16611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff5906144c3565b60405180910390fd5b612006613429565b565b6000600660000160039054906101000a900460ff16905090565b6000600660000160019054906101000a900460ff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000196e919f74baeafca10c313043848c39a8f5effd81565b6060600480546120999061491c565b80601f01602080910402602001604051908101604052809291908181526020018280546120c59061491c565b80156121125780601f106120e757610100808354040283529160200191612112565b820191906000526020600020905b8154815290600101906020018083116120f557829003601f168201915b5050505050905090565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600660000160029054906101000a900460ff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080612185612ad9565b905060006121938286612683565b9050838110156121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf90614643565b60405180910390fd5b6121e58286868403612ae1565b60019250505092915050565b6121f9612ad9565b73ffffffffffffffffffffffffffffffffffffffff1661221761203c565b73ffffffffffffffffffffffffffffffffffffffff161461226d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226490614563565b60405180910390fd5b80600b90805190602001906122839291906138b7565b507f4456a0b562609d67398ddb488f136db285cd3c92343e0a7ba684925669237ade816040516122b39190614281565b60405180910390a150565b60006122c8611c37565b15612308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ff906144e3565b60405180910390fd5b600660000160039054906101000a900460ff161561243b57600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614423565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190614503565b60405180910390fd5b5b600660000160059054906101000a900460ff161561256c57600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d690614523565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661256b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256290614683565b60405180910390fd5b5b600660000160069054906101000a900460ff16156125dd57600c548261259185611cf6565b61259b91906147fb565b11156125dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d390614403565b60405180910390fd5b5b6125e783836134cc565b905092915050565b600a80546125fc9061491c565b80601f01602080910402602001604051908101604052809291908181526020018280546126289061491c565b80156126755780601f1061264a57610100808354040283529160200191612675565b820191906000526020600020905b81548152906001019060200180831161265857829003601f168201915b505050505081565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f0000000000000000000000009254c0fcb2faa4550b9ba582558ce1d03ba3d05d81565b612736612ad9565b73ffffffffffffffffffffffffffffffffffffffff1661275461203c565b73ffffffffffffffffffffffffffffffffffffffff16146127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a190614563565b60405180910390fd5b6127b2611c37565b156127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e9906144e3565b60405180910390fd5b6127fb81612984565b50565b6000600660000160049054906101000a900460ff16905090565b600581565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561288d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288490614603565b60405180910390fd5b50565b804710156128d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ca906144a3565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516128f990614214565b60006040518083038185875af1925050503d8060008114612936576040519150601f19603f3d011682016040523d82523d6000602084013e61293b565b606091505b505090508061297f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297690614483565b60405180910390fd5b505050565b61298c612ad9565b73ffffffffffffffffffffffffffffffffffffffff166129aa61203c565b73ffffffffffffffffffffffffffffffffffffffff1614612a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f790614563565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6790614363565b60405180910390fd5b612a79816134ef565b50565b612a87838383612ad4565b612a8f611c37565b15612acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac6906146c3565b60405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b48906145e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb890614383565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c9f91906146e3565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d13906145c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d83906142a3565b60405180910390fd5b612d978383836135b5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1490614463565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eb091906147fb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f1491906146e3565b60405180910390a3612f278484846135c5565b50505050565b600080612f38612ad9565b9050612f458582856135ca565b612f50858585612cac565b60019150509392505050565b60005b8151811015612fed57600060086000848481518110612f8157612f80614a26565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612fe59061497f565b915050612f5f565b5050565b60005b81518110156131675761302082828151811061301357613012614a26565b5b602002602001015161281d565b600660000160039054906101000a900460ff1680156130a257506007600083838151811061305157613050614a26565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156130e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d990614583565b60405180910390fd5b6001600860008484815181106130fb576130fa614a26565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061315f9061497f565b915050612ff4565b5050565b613173611c37565b6131b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a9906142e3565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6131f6612ad9565b6040516132039190614229565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561327d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613274906146a3565b60405180910390fd5b613289600083836135b5565b806002600082825461329b91906147fb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132f091906147fb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161335591906146e3565b60405180910390a3613369600083836135c5565b5050565b61337e613378612ad9565b82613656565b50565b613389612ad9565b73ffffffffffffffffffffffffffffffffffffffff166133a761203c565b73ffffffffffffffffffffffffffffffffffffffff16146133fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f490614563565b60405180910390fd5b61340760006134ef565b565b61341b82613415612ad9565b836135ca565b6134258282613656565b5050565b613431611c37565b15613471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613468906144e3565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586134b5612ad9565b6040516134c29190614229565b60405180910390a1565b6000806134d7612ad9565b90506134e4818585612cac565b600191505092915050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6135c0838383612a7c565b505050565b505050565b60006135d68484612683565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146136505781811015613642576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613639906143c3565b60405180910390fd5b61364f8484848403612ae1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136bd906145a3565b60405180910390fd5b6136d2826000836135b5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374f90614303565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546137af9190614851565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161381491906146e3565b60405180910390a3613828836000846135c5565b505050565b8280548282559060005260206000209081019282156138a6579160200282015b828111156138a55782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061384d565b5b5090506138b3919061393d565b5090565b8280546138c39061491c565b90600052602060002090601f0160209004810192826138e5576000855561392c565b82601f106138fe57805160ff191683800117855561392c565b8280016001018555821561392c579182015b8281111561392b578251825591602001919060010190613910565b5b509050613939919061393d565b5090565b5b8082111561395657600081600090555060010161393e565b5090565b600061396d6139688461473e565b614719565b905080838252602082019050828560208602820111156139905761398f614a89565b5b60005b858110156139c057816139a68882613a0c565b845260208401935060208301925050600181019050613993565b5050509392505050565b60006139dd6139d88461476a565b614719565b9050828152602081018484840111156139f9576139f8614a8e565b5b613a048482856148da565b509392505050565b600081359050613a1b816152f5565b92915050565b600082601f830112613a3657613a35614a84565b5b8135613a4684826020860161395a565b91505092915050565b600082601f830112613a6457613a63614a84565b5b8135613a748482602086016139ca565b91505092915050565b600081359050613a8c8161530c565b92915050565b600060208284031215613aa857613aa7614a98565b5b6000613ab684828501613a0c565b91505092915050565b60008060408385031215613ad657613ad5614a98565b5b6000613ae485828601613a0c565b9250506020613af585828601613a0c565b9150509250929050565b600080600060608486031215613b1857613b17614a98565b5b6000613b2686828701613a0c565b9350506020613b3786828701613a0c565b9250506040613b4886828701613a7d565b9150509250925092565b60008060408385031215613b6957613b68614a98565b5b6000613b7785828601613a0c565b9250506020613b8885828601613a7d565b9150509250929050565b600060208284031215613ba857613ba7614a98565b5b600082013567ffffffffffffffff811115613bc657613bc5614a93565b5b613bd284828501613a21565b91505092915050565b600060208284031215613bf157613bf0614a98565b5b600082013567ffffffffffffffff811115613c0f57613c0e614a93565b5b613c1b84828501613a4f565b91505092915050565b600060208284031215613c3a57613c39614a98565b5b6000613c4884828501613a7d565b91505092915050565b6000613c5d8383613c69565b60208301905092915050565b613c7281614885565b82525050565b613c8181614885565b82525050565b6000613c92826147ab565b613c9c81856147ce565b9350613ca78361479b565b8060005b83811015613cd8578151613cbf8882613c51565b9750613cca836147c1565b925050600181019050613cab565b5085935050505092915050565b613cee81614897565b82525050565b6000613cff826147b6565b613d0981856147ea565b9350613d198185602086016148e9565b613d2281614a9d565b840191505092915050565b6000613d3a6023836147ea565b9150613d4582614aae565b604082019050919050565b6000613d5d6018836147ea565b9150613d6882614afd565b602082019050919050565b6000613d806014836147ea565b9150613d8b82614b26565b602082019050919050565b6000613da36022836147ea565b9150613dae82614b4f565b604082019050919050565b6000613dc66026836147ea565b9150613dd182614b9e565b604082019050919050565b6000613de96019836147ea565b9150613df482614bed565b602082019050919050565b6000613e0c6026836147ea565b9150613e1782614c16565b604082019050919050565b6000613e2f6022836147ea565b9150613e3a82614c65565b604082019050919050565b6000613e52602e836147ea565b9150613e5d82614cb4565b604082019050919050565b6000613e75601d836147ea565b9150613e8082614d03565b602082019050919050565b6000613e98602b836147ea565b9150613ea382614d2c565b604082019050919050565b6000613ebb602e836147ea565b9150613ec682614d7b565b604082019050919050565b6000613ede6018836147ea565b9150613ee982614dca565b602082019050919050565b6000613f01602b836147ea565b9150613f0c82614df3565b604082019050919050565b6000613f246026836147ea565b9150613f2f82614e42565b604082019050919050565b6000613f47603a836147ea565b9150613f5282614e91565b604082019050919050565b6000613f6a601d836147ea565b9150613f7582614ee0565b602082019050919050565b6000613f8d602c836147ea565b9150613f9882614f09565b604082019050919050565b6000613fb06010836147ea565b9150613fbb82614f58565b602082019050919050565b6000613fd36015836147ea565b9150613fde82614f81565b602082019050919050565b6000613ff66019836147ea565b915061400182614faa565b602082019050919050565b6000614019601f836147ea565b915061402482614fd3565b602082019050919050565b600061403c6020836147ea565b915061404782614ffc565b602082019050919050565b600061405f6026836147ea565b915061406a82615025565b604082019050919050565b60006140826021836147ea565b915061408d82615074565b604082019050919050565b60006140a56025836147ea565b91506140b0826150c3565b604082019050919050565b60006140c86000836147df565b91506140d382615112565b600082019050919050565b60006140eb6024836147ea565b91506140f682615115565b604082019050919050565b600061410e6015836147ea565b915061411982615164565b602082019050919050565b60006141316015836147ea565b915061413c8261518d565b602082019050919050565b60006141546025836147ea565b915061415f826151b6565b604082019050919050565b6000614177602a836147ea565b915061418282615205565b604082019050919050565b600061419a6016836147ea565b91506141a582615254565b602082019050919050565b60006141bd601f836147ea565b91506141c88261527d565b602082019050919050565b60006141e0602a836147ea565b91506141eb826152a6565b604082019050919050565b6141ff816148c3565b82525050565b61420e816148cd565b82525050565b600061421f826140bb565b9150819050919050565b600060208201905061423e6000830184613c78565b92915050565b6000602082019050818103600083015261425e8184613c87565b905092915050565b600060208201905061427b6000830184613ce5565b92915050565b6000602082019050818103600083015261429b8184613cf4565b905092915050565b600060208201905081810360008301526142bc81613d2d565b9050919050565b600060208201905081810360008301526142dc81613d50565b9050919050565b600060208201905081810360008301526142fc81613d73565b9050919050565b6000602082019050818103600083015261431c81613d96565b9050919050565b6000602082019050818103600083015261433c81613db9565b9050919050565b6000602082019050818103600083015261435c81613ddc565b9050919050565b6000602082019050818103600083015261437c81613dff565b9050919050565b6000602082019050818103600083015261439c81613e22565b9050919050565b600060208201905081810360008301526143bc81613e45565b9050919050565b600060208201905081810360008301526143dc81613e68565b9050919050565b600060208201905081810360008301526143fc81613e8b565b9050919050565b6000602082019050818103600083015261441c81613eae565b9050919050565b6000602082019050818103600083015261443c81613ed1565b9050919050565b6000602082019050818103600083015261445c81613ef4565b9050919050565b6000602082019050818103600083015261447c81613f17565b9050919050565b6000602082019050818103600083015261449c81613f3a565b9050919050565b600060208201905081810360008301526144bc81613f5d565b9050919050565b600060208201905081810360008301526144dc81613f80565b9050919050565b600060208201905081810360008301526144fc81613fa3565b9050919050565b6000602082019050818103600083015261451c81613fc6565b9050919050565b6000602082019050818103600083015261453c81613fe9565b9050919050565b6000602082019050818103600083015261455c8161400c565b9050919050565b6000602082019050818103600083015261457c8161402f565b9050919050565b6000602082019050818103600083015261459c81614052565b9050919050565b600060208201905081810360008301526145bc81614075565b9050919050565b600060208201905081810360008301526145dc81614098565b9050919050565b600060208201905081810360008301526145fc816140de565b9050919050565b6000602082019050818103600083015261461c81614101565b9050919050565b6000602082019050818103600083015261463c81614124565b9050919050565b6000602082019050818103600083015261465c81614147565b9050919050565b6000602082019050818103600083015261467c8161416a565b9050919050565b6000602082019050818103600083015261469c8161418d565b9050919050565b600060208201905081810360008301526146bc816141b0565b9050919050565b600060208201905081810360008301526146dc816141d3565b9050919050565b60006020820190506146f860008301846141f6565b92915050565b60006020820190506147136000830184614205565b92915050565b6000614723614734565b905061472f828261494e565b919050565b6000604051905090565b600067ffffffffffffffff82111561475957614758614a55565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561478557614784614a55565b5b61478e82614a9d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000614806826148c3565b9150614811836148c3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614846576148456149c8565b5b828201905092915050565b600061485c826148c3565b9150614867836148c3565b92508282101561487a576148796149c8565b5b828203905092915050565b6000614890826148a3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156149075780820151818401526020810190506148ec565b83811115614916576000848401525b50505050565b6000600282049050600182168061493457607f821691505b60208210811415614948576149476149f7565b5b50919050565b61495782614a9d565b810181811067ffffffffffffffff8211171561497657614975614a55565b5b80604052505050565b600061498a826148c3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149bd576149bc6149c8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5573657220616c72656164792077686974656c69737465640000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f7420626c61636b6c69737420612077686974656c6973746564206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5573657220616c726561647920626c61636b6c69737465642100000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a20756e7061757365206973206e6f7420616c6c6f77656420696e60008201527f207468697320636f6e7472616374000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f4572726f723a206d696e74206973206e6f7420616c6c6f77656420696e20746860008201527f697320636f6e7472616374000000000000000000000000000000000000000000602082015250565b7f5468697320616464726573732063616e6e6f7420686f6c64207468617420616d60008201527f6f756e74206f6620746f6b656e73000000000000000000000000000000000000602082015250565b7f526563697069656e7420697320626c61636b6c69737465640000000000000000600082015250565b7f4572726f723a206275726e206973206e6f7420616c6c6f77656420696e20746860008201527f697320636f6e7472616374000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4572726f723a207061757365206973206e6f7420616c6c6f77656420696e207460008201527f68697320636f6e74726163740000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b7f526563697069656e74206e6f742077686974656c697374656400000000000000600082015250565b7f43616e6e6f7420736574206c657373207468616e206c6173742076616c756500600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e6e6f742077686974656c697374206120626c61636b6c6973746564206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573732063616e2774206265205a65726f0000000000000000000000600082015250565b7f57686974656c697374206e6f7420656e61626c65640000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c697374696e67206e6f7420706f737369626c65206f6e2074686960008201527f7320636f6e747261637400000000000000000000000000000000000000000000602082015250565b7f53656e646572206e6f742077686974656c697374656400000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6152fe81614885565b811461530957600080fd5b50565b615315816148c3565b811461532057600080fd5b5056fea26469706673582212208a3b6217be253ef09ab9befef03267d9804c7f392d9625986976c3c62caa10ab64736f6c63430008070033

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.