ETH Price: $2,518.65 (+2.86%)

Token

RODO (RODO)
 

Overview

Max Total Supply

54,510 RODO

Holders

233

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

Filtered by Token Holder
capodicapi.eth
Balance
1 RODO

Value
$0.00
0x956124621bbc5f8eba2a4c1282a3f15e74814fb0
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
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.0;

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 version = 5;

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

  uint256 public initialSupply;
  uint256 public initialMaxTokenAmountPerAddress;
  string public initialDocumentUri;
  address public initialFeeReceiver;
  address public initialTokenOwner;

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

  event UserBlacklistedEvent(address _blacklistedAddress);
  event UserUnBlacklistedEvent(address _whitelistedAddress);

  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");
    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() public view returns (bool) {
    return configProps._isPausable;
  }

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

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

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

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

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

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

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

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

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

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

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

    emit UserBlacklistedEvent(_user);
  }

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

    emit UserUnBlacklistedEvent(_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)
    public
    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"
      );
    }

    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() public onlyOwner {
    require(
      configProps._isPausable,
      "Error: pause is not allowed in this contract"
    );

    super._pause();
  }

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

    super._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)
    public
    payable
    onlyOwner
  {
    require(configProps._isWhitelistEnabled, "Whitelist not enabled");

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

  function getWhitelistedAddresses() public 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]);

      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.1;

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":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":"UserBlacklistedEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_whitelistedAddress","type":"address"}],"name":"UserUnBlacklistedEvent","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_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":[],"name":"version","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60a060405260058060156101000a81548160ff021916908360ff160217905550604051620066d9380380620066d9833981810160405281019062000044919062000cc4565b888881600390805190602001906200005e92919062000a44565b5080600490805190602001906200007792919062000a44565b5050506000600560006101000a81548160ff021916908315150217905550620000b5620000a9620003a060201b60201c565b620003a860201b60201c565b60003411620000fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000f2906200105a565b60405180910390fd5b62000111856200046e60201b6200255b1760201c565b62000127816200046e60201b6200255b1760201c565b6200013e8134620004e460201b620025ce1760201c565b866006819055508260078190555081600890805190602001906200016492919062000a44565b5080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508560ff1660808160ff1660f81b8152505083600b60008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff02191690831515021790555060608201518160000160036101000a81548160ff02191690831515021790555060808201518160000160046101000a81548160ff02191690831515021790555060a08201518160000160056101000a81548160ff02191690831515021790555060c08201518160000160066101000a81548160ff02191690831515021790555060e08201518160000160076101000a81548160ff02191690831515021790555090505081600d90805190602001906200031692919062000a44565b50826010819055506200034b8587600a62000332919062001232565b896200033f91906200136f565b620005e260201b60201c565b3373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614620003915762000390856200075b60201b60201c565b5b50505050505050505062001809565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620004e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d8906200107c565b60405180910390fd5b50565b804710156200052a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005219062000ff4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051620005529062000f99565b60006040518083038185875af1925050503d806000811462000591576040519150601f19603f3d011682016040523d82523d6000602084013e62000596565b606091505b5050905080620005dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d49062000fd2565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000655576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064c906200109e565b60405180910390fd5b62000669600083836200085660201b60201c565b80600260008282546200067d91906200117a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006d491906200117a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200073b9190620010e2565b60405180910390a362000757600083836200087360201b60201c565b5050565b6200076b620003a060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007916200087860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e19062001038565b60405180910390fd5b620007fa620008a260201b60201c565b156200083d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008349062001016565b60405180910390fd5b6200085381620008b960201b620026c21760201c565b50565b6200086e838383620009cf60201b620027ba1760201c565b505050565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560009054906101000a900460ff16905090565b620008c9620003a060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008ef6200087860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000948576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093f9062001038565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620009bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b29062000fb0565b60405180910390fd5b620009cc81620003a860201b60201c565b50565b620009e783838362000a3f60201b620028121760201c565b620009f7620008a260201b60201c565b1562000a3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3190620010c0565b60405180910390fd5b505050565b505050565b82805462000a529062001471565b90600052602060002090601f01602090048101928262000a76576000855562000ac2565b82601f1062000a9157805160ff191683800117855562000ac2565b8280016001018555821562000ac2579182015b8281111562000ac157825182559160200191906001019062000aa4565b5b50905062000ad1919062000ad5565b5090565b5b8082111562000af057600081600090555060010162000ad6565b5090565b600062000b0b62000b058462001128565b620010ff565b90508281526020810184848401111562000b2a5762000b2962001574565b5b62000b378482856200143b565b509392505050565b60008151905062000b508162001787565b92915050565b60008151905062000b6781620017a1565b92915050565b60008151905062000b7e81620017bb565b92915050565b600082601f83011262000b9c5762000b9b6200156a565b5b815162000bae84826020860162000af4565b91505092915050565b6000610100828403121562000bd15762000bd06200156f565b5b62000bde610100620010ff565b9050600062000bf08482850162000b6d565b600083015250602062000c068482850162000b6d565b602083015250604062000c1c8482850162000b6d565b604083015250606062000c328482850162000b6d565b606083015250608062000c488482850162000b6d565b60808301525060a062000c5e8482850162000b6d565b60a08301525060c062000c748482850162000b6d565b60c08301525060e062000c8a8482850162000b6d565b60e08301525092915050565b60008151905062000ca781620017d5565b92915050565b60008151905062000cbe81620017ef565b92915050565b60008060008060008060008060006102008a8c03121562000cea5762000ce96200157e565b5b60008a015167ffffffffffffffff81111562000d0b5762000d0a62001579565b5b62000d198c828d0162000b84565b99505060208a015167ffffffffffffffff81111562000d3d5762000d3c62001579565b5b62000d4b8c828d0162000b84565b985050604062000d5e8c828d0162000c96565b975050606062000d718c828d0162000cad565b965050608062000d848c828d0162000b3f565b95505060a062000d978c828d0162000bb7565b9450506101a062000dab8c828d0162000c96565b9350506101c08a015167ffffffffffffffff81111562000dd05762000dcf62001579565b5b62000dde8c828d0162000b84565b9250506101e062000df28c828d0162000b56565b9150509295985092959850929598565b600062000e1160268362001169565b915062000e1e82620015a1565b604082019050919050565b600062000e38603a8362001169565b915062000e4582620015f0565b604082019050919050565b600062000e5f601d8362001169565b915062000e6c826200163f565b602082019050919050565b600062000e8660108362001169565b915062000e938262001668565b602082019050919050565b600062000ead60208362001169565b915062000eba8262001691565b602082019050919050565b600062000ed460178362001169565b915062000ee182620016ba565b602082019050919050565b600062000efb6000836200115e565b915062000f0882620016e3565b600082019050919050565b600062000f2260158362001169565b915062000f2f82620016e6565b602082019050919050565b600062000f49601f8362001169565b915062000f56826200170f565b602082019050919050565b600062000f70602a8362001169565b915062000f7d8262001738565b604082019050919050565b62000f938162001424565b82525050565b600062000fa68262000eec565b9150819050919050565b6000602082019050818103600083015262000fcb8162000e02565b9050919050565b6000602082019050818103600083015262000fed8162000e29565b9050919050565b600060208201905081810360008301526200100f8162000e50565b9050919050565b60006020820190508181036000830152620010318162000e77565b9050919050565b60006020820190508181036000830152620010538162000e9e565b9050919050565b60006020820190508181036000830152620010758162000ec5565b9050919050565b60006020820190508181036000830152620010978162000f13565b9050919050565b60006020820190508181036000830152620010b98162000f3a565b9050919050565b60006020820190508181036000830152620010db8162000f61565b9050919050565b6000602082019050620010f9600083018462000f88565b92915050565b60006200110b6200111e565b9050620011198282620014a7565b919050565b6000604051905090565b600067ffffffffffffffff8211156200114657620011456200153b565b5b620011518262001583565b9050602081019050919050565b600081905092915050565b600082825260208201905092915050565b6000620011878262001424565b9150620011948362001424565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011cc57620011cb620014dd565b5b828201905092915050565b6000808291508390505b60018511156200122957808604811115620012015762001200620014dd565b5b6001851615620012115780820291505b8081029050620012218562001594565b9450620011e1565b94509492505050565b60006200123f8262001424565b91506200124c836200142e565b92506200127b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001283565b905092915050565b60008262001295576001905062001368565b81620012a5576000905062001368565b8160018114620012be5760028114620012c957620012ff565b600191505062001368565b60ff841115620012de57620012dd620014dd565b5b8360020a915084821115620012f857620012f7620014dd565b5b5062001368565b5060208310610133831016604e8410600b8410161715620013395782820a905083811115620013335762001332620014dd565b5b62001368565b620013488484846001620011d7565b92509050818404811115620013625762001361620014dd565b5b81810290505b9392505050565b60006200137c8262001424565b9150620013898362001424565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620013c557620013c4620014dd565b5b828202905092915050565b6000620013dd8262001404565b9050919050565b6000620013f18262001404565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156200145b5780820151818401526020810190506200143e565b838111156200146b576000848401525b50505050565b600060028204905060018216806200148a57607f821691505b60208210811415620014a157620014a06200150c565b5b50919050565b620014b28262001583565b810181811067ffffffffffffffff82111715620014d457620014d36200153b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4465706c6f796d656e7420666565207265717569726564000000000000000000600082015250565b50565b7f416464726573732063616e2774206265205a65726f0000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6200179281620013d0565b81146200179e57600080fd5b50565b620017ac81620013e4565b8114620017b857600080fd5b50565b620017c681620013f8565b8114620017d257600080fd5b50565b620017e08162001424565b8114620017ec57600080fd5b50565b620017fa816200142e565b81146200180657600080fd5b50565b60805160f81c614eb1620018286000396000610fa20152614eb16000f3fe60806040526004361061025c5760003560e01c80636d02802711610144578063a09a1601116100b6578063a9d866851161007a578063a9d86685146108bd578063d48e4127146108e8578063dd62ed3e14610913578063f0576e2714610950578063f2fde38b1461097b578063f820f567146109a45761025c565b8063a09a1601146107c4578063a32f6976146107ef578063a457c2d71461081a578063a476df6114610857578063a9059cbb146108805761025c565b8063878dd33211610108578063878dd332146106b0578063883356d9146106db5780638da5cb5b146107065780638dac71911461073157806395d89b411461075c5780639b19251a146107875761025c565b80636d028027146105f157806370a082311461061c578063715018a61461065957806379cc6790146106705780638456cb59146106995761025c565b806339509351116101dd5780634838d165116101a15780634838d165146104f3578063537df3b61461051c57806354fd4d50146105455780635a3990ce146105705780635c975abb1461059b5780636c5adaae146105c65761025c565b806339509351146104225780633f4ba83a1461045f57806340c10f191461047657806342966c681461049f57806346b45af7146104c85761025c565b8063184d69ab11610224578063184d69ab1461034857806323b872dd14610373578063313ce567146103b057806335377214146103db578063378dc3dc146103f75761025c565b806302252c4d14610261578063044ab74e1461028a57806306fdde03146102b5578063095ea7b3146102e057806318160ddd1461031d575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906138a0565b6109cf565b005b34801561029657600080fd5b5061029f610a99565b6040516102ac9190613eb7565b60405180910390f35b3480156102c157600080fd5b506102ca610b27565b6040516102d79190613eb7565b60405180910390f35b3480156102ec57600080fd5b50610307600480360381019061030291906137ce565b610bb9565b6040516103149190613e9c565b60405180910390f35b34801561032957600080fd5b50610332610bdc565b60405161033f91906142d9565b60405180910390f35b34801561035457600080fd5b5061035d610be6565b60405161036a9190613e9c565b60405180910390f35b34801561037f57600080fd5b5061039a6004803603810190610395919061377b565b610c00565b6040516103a79190613e9c565b60405180910390f35b3480156103bc57600080fd5b506103c5610f9e565b6040516103d291906142f4565b60405180910390f35b6103f560048036038101906103f0919061380e565b610fc6565b005b34801561040357600080fd5b5061040c611146565b60405161041991906142d9565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906137ce565b61114c565b6040516104569190613e9c565b60405180910390f35b34801561046b57600080fd5b50610474611183565b005b34801561048257600080fd5b5061049d600480360381019061049891906137ce565b61125b565b005b3480156104ab57600080fd5b506104c660048036038101906104c191906138a0565b6113f0565b005b3480156104d457600080fd5b506104dd611512565b6040516104ea9190613e9c565b60405180910390f35b3480156104ff57600080fd5b5061051a6004803603810190610515919061370e565b61152c565b005b34801561052857600080fd5b50610543600480360381019061053e919061370e565b61176a565b005b34801561055157600080fd5b5061055a61199e565b60405161056791906142f4565b60405180910390f35b34801561057c57600080fd5b506105856119b1565b6040516105929190613e9c565b60405180910390f35b3480156105a757600080fd5b506105b06119cb565b6040516105bd9190613e9c565b60405180910390f35b3480156105d257600080fd5b506105db6119e2565b6040516105e89190613e9c565b60405180910390f35b3480156105fd57600080fd5b506106066119fc565b6040516106139190613e7a565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e919061370e565b611a8a565b60405161065091906142d9565b60405180910390f35b34801561066557600080fd5b5061066e611ad2565b005b34801561067c57600080fd5b50610697600480360381019061069291906137ce565b611ba0565b005b3480156106a557600080fd5b506106ae611cc4565b005b3480156106bc57600080fd5b506106c5611d9c565b6040516106d29190613e9c565b60405180910390f35b3480156106e757600080fd5b506106f0611db6565b6040516106fd9190613e9c565b60405180910390f35b34801561071257600080fd5b5061071b611dd0565b6040516107289190613e5f565b60405180910390f35b34801561073d57600080fd5b50610746611dfa565b6040516107539190613e5f565b60405180910390f35b34801561076857600080fd5b50610771611e20565b60405161077e9190613eb7565b60405180910390f35b34801561079357600080fd5b506107ae60048036038101906107a9919061370e565b611eb2565b6040516107bb9190613e9c565b60405180910390f35b3480156107d057600080fd5b506107d9611ed2565b6040516107e69190613e9c565b60405180910390f35b3480156107fb57600080fd5b50610804611eec565b60405161081191906142d9565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c91906137ce565b611ef2565b60405161084e9190613e9c565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190613857565b611f69565b005b34801561088c57600080fd5b506108a760048036038101906108a291906137ce565b611fff565b6040516108b49190613e9c565b60405180910390f35b3480156108c957600080fd5b506108d2612330565b6040516108df9190613eb7565b60405180910390f35b3480156108f457600080fd5b506108fd6123be565b60405161090a91906142d9565b60405180910390f35b34801561091f57600080fd5b5061093a6004803603810190610935919061373b565b6123c4565b60405161094791906142d9565b60405180910390f35b34801561095c57600080fd5b5061096561244b565b6040516109729190613e5f565b60405180910390f35b34801561098757600080fd5b506109a2600480360381019061099d919061370e565b612471565b005b3480156109b057600080fd5b506109b9612541565b6040516109c69190613e9c565b60405180910390f35b6109d7612817565b73ffffffffffffffffffffffffffffffffffffffff166109f5611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290614179565b60405180910390fd5b6010548111610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690614159565b60405180910390fd5b8060108190555050565b600d8054610aa690614512565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad290614512565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b505050505081565b606060038054610b3690614512565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6290614512565b8015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b600080610bc4612817565b9050610bd181858561281f565b600191505092915050565b6000600254905090565b6000600b60000160059054906101000a900460ff16905090565b6000610c0a6119cb565b15610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c41906140f9565b60405180910390fd5b600b60000160039054906101000a900460ff1615610d7d57600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690614039565b60405180910390fd5b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390614119565b60405180910390fd5b5b600b60000160059054906101000a900460ff1615610eae57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890614139565b60405180910390fd5b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490614279565b60405180910390fd5b5b600b60000160069054906101000a900460ff1615610f1f5760105482610ed385611a8a565b610edd91906143f1565b1115610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590614019565b60405180910390fd5b5b600b60000160079054906101000a900460ff168015610f7057503373ffffffffffffffffffffffffffffffffffffffff16610f58611dd0565b73ffffffffffffffffffffffffffffffffffffffff16145b15610f8957610f808484846129ea565b60019050610f97565b610f94848484612c6b565b90505b9392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b610fce612817565b73ffffffffffffffffffffffffffffffffffffffff16610fec611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990614179565b60405180910390fd5b600b60000160059054906101000a900460ff16611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90614219565b60405180910390fd5b611123600f80548060200260200160405190810160405280929190818152602001828054801561111957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116110cf575b5050505050612c9a565b61112c81612d2f565b80600f90805190602001906111429291906134a9565b5050565b60065481565b600080611157612817565b905061117881858561116985896123c4565b61117391906143f1565b61281f565b600191505092915050565b61118b612817565b73ffffffffffffffffffffffffffffffffffffffff166111a9611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690614179565b60405180910390fd5b600b60000160029054906101000a900460ff16611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613fb9565b60405180910390fd5b611259612de7565b565b611263612817565b73ffffffffffffffffffffffffffffffffffffffff16611281611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90614179565b60405180910390fd5b6112df6119cb565b1561131f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611316906140f9565b60405180910390fd5b600b60000160009054906101000a900460ff16611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613ff9565b60405180910390fd5b600b60000160069054906101000a900460ff16156113e2576010548161139684611a8a565b6113a091906143f1565b11156113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890614019565b60405180910390fd5b5b6113ec8282612e89565b5050565b6113f8612817565b73ffffffffffffffffffffffffffffffffffffffff16611416611dd0565b73ffffffffffffffffffffffffffffffffffffffff161461146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390614179565b60405180910390fd5b6114746119cb565b156114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab906140f9565b60405180910390fd5b600b60000160019054906101000a900460ff16611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90614059565b60405180910390fd5b61150f81612fe9565b50565b6000600b60000160009054906101000a900460ff16905090565b611534612817565b73ffffffffffffffffffffffffffffffffffffffff16611552611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614179565b60405180910390fd5b6115b06119cb565b156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e7906140f9565b60405180910390fd5b6115f98161255b565b600b60000160039054906101000a900460ff1661164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290614259565b60405180910390fd5b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90613f59565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f16c91aa72a8077fd74f8a1e560a7c4a08163a96f6c33c8bec63023729015c8c38160405161175f9190613e5f565b60405180910390a150565b611772612817565b73ffffffffffffffffffffffffffffffffffffffff16611790611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90614179565b60405180910390fd5b6117ee6119cb565b1561182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611825906140f9565b60405180910390fd5b600b60000160039054906101000a900460ff16611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790614259565b60405180910390fd5b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390613ef9565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f53b5784bb7136e9078b4ff63d2cca56b3508aa09f28771aefb80b49053e6969d816040516119939190613e5f565b60405180910390a150565b600560159054906101000a900460ff1681565b6000600b60000160069054906101000a900460ff16905090565b6000600560009054906101000a900460ff16905090565b6000600b60000160079054906101000a900460ff16905090565b6060600f805480602002602001604051908101604052809291908181526020018280548015611a8057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611a36575b5050505050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ada612817565b73ffffffffffffffffffffffffffffffffffffffff16611af8611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4590614179565b60405180910390fd5b611b566119cb565b15611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d906140f9565b60405180910390fd5b611b9e612ffd565b565b611ba8612817565b73ffffffffffffffffffffffffffffffffffffffff16611bc6611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614179565b60405180910390fd5b611c246119cb565b15611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b906140f9565b60405180910390fd5b600b60000160019054906101000a900460ff16611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad90614059565b60405180910390fd5b611cc08282613085565b5050565b611ccc612817565b73ffffffffffffffffffffffffffffffffffffffff16611cea611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3790614179565b60405180910390fd5b600b60000160029054906101000a900460ff16611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d89906140d9565b60405180910390fd5b611d9a6130a5565b565b6000600b60000160039054906101000a900460ff16905090565b6000600b60000160019054906101000a900460ff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054611e2f90614512565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5b90614512565b8015611ea85780601f10611e7d57610100808354040283529160200191611ea8565b820191906000526020600020905b815481529060010190602001808311611e8b57829003601f168201915b5050505050905090565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600b60000160029054906101000a900460ff16905090565b60075481565b600080611efd612817565b90506000611f0b82866123c4565b905083811015611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4790614239565b60405180910390fd5b611f5d828686840361281f565b60019250505092915050565b611f71612817565b73ffffffffffffffffffffffffffffffffffffffff16611f8f611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdc90614179565b60405180910390fd5b80600d9080519060200190611ffb929190613533565b5050565b60006120096119cb565b15612049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612040906140f9565b60405180910390fd5b600b60000160039054906101000a900460ff161561217c57600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e590614039565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561217b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217290614119565b60405180910390fd5b5b600b60000160059054906101000a900460ff16156122ad57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790614139565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a390614279565b60405180910390fd5b5b600b60000160069054906101000a900460ff161561231e57601054826122d285611a8a565b6122dc91906143f1565b111561231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490614019565b60405180910390fd5b5b6123288383613148565b905092915050565b6008805461233d90614512565b80601f016020809104026020016040519081016040528092919081815260200182805461236990614512565b80156123b65780601f1061238b576101008083540402835291602001916123b6565b820191906000526020600020905b81548152906001019060200180831161239957829003601f168201915b505050505081565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612479612817565b73ffffffffffffffffffffffffffffffffffffffff16612497611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146124ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e490614179565b60405180910390fd5b6124f56119cb565b15612535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252c906140f9565b60405180910390fd5b61253e816126c2565b50565b6000600b60000160049054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c2906141f9565b60405180910390fd5b50565b80471015612611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612608906140b9565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161263790613e4a565b60006040518083038185875af1925050503d8060008114612674576040519150601f19603f3d011682016040523d82523d6000602084013e612679565b606091505b50509050806126bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b490614099565b60405180910390fd5b505050565b6126ca612817565b73ffffffffffffffffffffffffffffffffffffffff166126e8611dd0565b73ffffffffffffffffffffffffffffffffffffffff161461273e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273590614179565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590613f79565b60405180910390fd5b6127b78161316b565b50565b6127c5838383612812565b6127cd6119cb565b1561280d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612804906142b9565b60405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561288f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612886906141d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f690613f99565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129dd91906142d9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a51906141b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac190613ed9565b60405180910390fd5b612ad5838383613231565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5290614079565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bee91906143f1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c5291906142d9565b60405180910390a3612c65848484613241565b50505050565b600080612c76612817565b9050612c83858285613246565b612c8e8585856129ea565b60019150509392505050565b60005b8151811015612d2b576000600e6000848481518110612cbf57612cbe61461c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612d2390614575565b915050612c9d565b5050565b60005b8151811015612de357612d5e828281518110612d5157612d5061461c565b5b602002602001015161255b565b6001600e6000848481518110612d7757612d7661461c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612ddb90614575565b915050612d32565b5050565b612def6119cb565b612e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2590613f19565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612e72612817565b604051612e7f9190613e5f565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef090614299565b60405180910390fd5b612f0560008383613231565b8060026000828254612f1791906143f1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f6c91906143f1565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612fd191906142d9565b60405180910390a3612fe560008383613241565b5050565b612ffa612ff4612817565b826132d2565b50565b613005612817565b73ffffffffffffffffffffffffffffffffffffffff16613023611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614613079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307090614179565b60405180910390fd5b613083600061316b565b565b61309782613091612817565b83613246565b6130a182826132d2565b5050565b6130ad6119cb565b156130ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e4906140f9565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613131612817565b60405161313e9190613e5f565b60405180910390a1565b600080613153612817565b90506131608185856129ea565b600191505092915050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61323c8383836127ba565b505050565b505050565b600061325284846123c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146132cc57818110156132be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b590613fd9565b60405180910390fd5b6132cb848484840361281f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333990614199565b60405180910390fd5b61334e82600083613231565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156133d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cb90613f39565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461342b9190614447565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161349091906142d9565b60405180910390a36134a483600084613241565b505050565b828054828255906000526020600020908101928215613522579160200282015b828111156135215782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906134c9565b5b50905061352f91906135b9565b5090565b82805461353f90614512565b90600052602060002090601f01602090048101928261356157600085556135a8565b82601f1061357a57805160ff19168380011785556135a8565b828001600101855582156135a8579182015b828111156135a757825182559160200191906001019061358c565b5b5090506135b591906135b9565b5090565b5b808211156135d25760008160009055506001016135ba565b5090565b60006135e96135e484614334565b61430f565b9050808382526020820190508285602086028201111561360c5761360b61467f565b5b60005b8581101561363c57816136228882613688565b84526020840193506020830192505060018101905061360f565b5050509392505050565b600061365961365484614360565b61430f565b90508281526020810184848401111561367557613674614684565b5b6136808482856144d0565b509392505050565b60008135905061369781614e4d565b92915050565b600082601f8301126136b2576136b161467a565b5b81356136c28482602086016135d6565b91505092915050565b600082601f8301126136e0576136df61467a565b5b81356136f0848260208601613646565b91505092915050565b60008135905061370881614e64565b92915050565b6000602082840312156137245761372361468e565b5b600061373284828501613688565b91505092915050565b600080604083850312156137525761375161468e565b5b600061376085828601613688565b925050602061377185828601613688565b9150509250929050565b6000806000606084860312156137945761379361468e565b5b60006137a286828701613688565b93505060206137b386828701613688565b92505060406137c4868287016136f9565b9150509250925092565b600080604083850312156137e5576137e461468e565b5b60006137f385828601613688565b9250506020613804858286016136f9565b9150509250929050565b6000602082840312156138245761382361468e565b5b600082013567ffffffffffffffff81111561384257613841614689565b5b61384e8482850161369d565b91505092915050565b60006020828403121561386d5761386c61468e565b5b600082013567ffffffffffffffff81111561388b5761388a614689565b5b613897848285016136cb565b91505092915050565b6000602082840312156138b6576138b561468e565b5b60006138c4848285016136f9565b91505092915050565b60006138d983836138e5565b60208301905092915050565b6138ee8161447b565b82525050565b6138fd8161447b565b82525050565b600061390e826143a1565b61391881856143c4565b935061392383614391565b8060005b8381101561395457815161393b88826138cd565b9750613946836143b7565b925050600181019050613927565b5085935050505092915050565b61396a8161448d565b82525050565b600061397b826143ac565b61398581856143e0565b93506139958185602086016144df565b61399e81614693565b840191505092915050565b60006139b66023836143e0565b91506139c1826146a4565b604082019050919050565b60006139d96018836143e0565b91506139e4826146f3565b602082019050919050565b60006139fc6014836143e0565b9150613a078261471c565b602082019050919050565b6000613a1f6022836143e0565b9150613a2a82614745565b604082019050919050565b6000613a426019836143e0565b9150613a4d82614794565b602082019050919050565b6000613a656026836143e0565b9150613a70826147bd565b604082019050919050565b6000613a886022836143e0565b9150613a938261480c565b604082019050919050565b6000613aab602e836143e0565b9150613ab68261485b565b604082019050919050565b6000613ace601d836143e0565b9150613ad9826148aa565b602082019050919050565b6000613af1602b836143e0565b9150613afc826148d3565b604082019050919050565b6000613b14602e836143e0565b9150613b1f82614922565b604082019050919050565b6000613b376018836143e0565b9150613b4282614971565b602082019050919050565b6000613b5a602b836143e0565b9150613b658261499a565b604082019050919050565b6000613b7d6026836143e0565b9150613b88826149e9565b604082019050919050565b6000613ba0603a836143e0565b9150613bab82614a38565b604082019050919050565b6000613bc3601d836143e0565b9150613bce82614a87565b602082019050919050565b6000613be6602c836143e0565b9150613bf182614ab0565b604082019050919050565b6000613c096010836143e0565b9150613c1482614aff565b602082019050919050565b6000613c2c6015836143e0565b9150613c3782614b28565b602082019050919050565b6000613c4f6019836143e0565b9150613c5a82614b51565b602082019050919050565b6000613c72601f836143e0565b9150613c7d82614b7a565b602082019050919050565b6000613c956020836143e0565b9150613ca082614ba3565b602082019050919050565b6000613cb86021836143e0565b9150613cc382614bcc565b604082019050919050565b6000613cdb6025836143e0565b9150613ce682614c1b565b604082019050919050565b6000613cfe6000836143d5565b9150613d0982614c6a565b600082019050919050565b6000613d216024836143e0565b9150613d2c82614c6d565b604082019050919050565b6000613d446015836143e0565b9150613d4f82614cbc565b602082019050919050565b6000613d676015836143e0565b9150613d7282614ce5565b602082019050919050565b6000613d8a6025836143e0565b9150613d9582614d0e565b604082019050919050565b6000613dad602a836143e0565b9150613db882614d5d565b604082019050919050565b6000613dd06016836143e0565b9150613ddb82614dac565b602082019050919050565b6000613df3601f836143e0565b9150613dfe82614dd5565b602082019050919050565b6000613e16602a836143e0565b9150613e2182614dfe565b604082019050919050565b613e35816144b9565b82525050565b613e44816144c3565b82525050565b6000613e5582613cf1565b9150819050919050565b6000602082019050613e7460008301846138f4565b92915050565b60006020820190508181036000830152613e948184613903565b905092915050565b6000602082019050613eb16000830184613961565b92915050565b60006020820190508181036000830152613ed18184613970565b905092915050565b60006020820190508181036000830152613ef2816139a9565b9050919050565b60006020820190508181036000830152613f12816139cc565b9050919050565b60006020820190508181036000830152613f32816139ef565b9050919050565b60006020820190508181036000830152613f5281613a12565b9050919050565b60006020820190508181036000830152613f7281613a35565b9050919050565b60006020820190508181036000830152613f9281613a58565b9050919050565b60006020820190508181036000830152613fb281613a7b565b9050919050565b60006020820190508181036000830152613fd281613a9e565b9050919050565b60006020820190508181036000830152613ff281613ac1565b9050919050565b6000602082019050818103600083015261401281613ae4565b9050919050565b6000602082019050818103600083015261403281613b07565b9050919050565b6000602082019050818103600083015261405281613b2a565b9050919050565b6000602082019050818103600083015261407281613b4d565b9050919050565b6000602082019050818103600083015261409281613b70565b9050919050565b600060208201905081810360008301526140b281613b93565b9050919050565b600060208201905081810360008301526140d281613bb6565b9050919050565b600060208201905081810360008301526140f281613bd9565b9050919050565b6000602082019050818103600083015261411281613bfc565b9050919050565b6000602082019050818103600083015261413281613c1f565b9050919050565b6000602082019050818103600083015261415281613c42565b9050919050565b6000602082019050818103600083015261417281613c65565b9050919050565b6000602082019050818103600083015261419281613c88565b9050919050565b600060208201905081810360008301526141b281613cab565b9050919050565b600060208201905081810360008301526141d281613cce565b9050919050565b600060208201905081810360008301526141f281613d14565b9050919050565b6000602082019050818103600083015261421281613d37565b9050919050565b6000602082019050818103600083015261423281613d5a565b9050919050565b6000602082019050818103600083015261425281613d7d565b9050919050565b6000602082019050818103600083015261427281613da0565b9050919050565b6000602082019050818103600083015261429281613dc3565b9050919050565b600060208201905081810360008301526142b281613de6565b9050919050565b600060208201905081810360008301526142d281613e09565b9050919050565b60006020820190506142ee6000830184613e2c565b92915050565b60006020820190506143096000830184613e3b565b92915050565b600061431961432a565b90506143258282614544565b919050565b6000604051905090565b600067ffffffffffffffff82111561434f5761434e61464b565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561437b5761437a61464b565b5b61438482614693565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006143fc826144b9565b9150614407836144b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561443c5761443b6145be565b5b828201905092915050565b6000614452826144b9565b915061445d836144b9565b9250828210156144705761446f6145be565b5b828203905092915050565b600061448682614499565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156144fd5780820151818401526020810190506144e2565b8381111561450c576000848401525b50505050565b6000600282049050600182168061452a57607f821691505b6020821081141561453e5761453d6145ed565b5b50919050565b61454d82614693565b810181811067ffffffffffffffff8211171561456c5761456b61464b565b5b80604052505050565b6000614580826144b9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145b3576145b26145be565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5573657220616c72656164792077686974656c69737465640000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f5573657220616c726561647920626c61636b6c69737465642100000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a20756e7061757365206973206e6f7420616c6c6f77656420696e60008201527f207468697320636f6e7472616374000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f4572726f723a206d696e74206973206e6f7420616c6c6f77656420696e20746860008201527f697320636f6e7472616374000000000000000000000000000000000000000000602082015250565b7f5468697320616464726573732063616e6e6f7420686f6c64207468617420616d60008201527f6f756e74206f6620746f6b656e73000000000000000000000000000000000000602082015250565b7f526563697069656e7420697320626c61636b6c69737465640000000000000000600082015250565b7f4572726f723a206275726e206973206e6f7420616c6c6f77656420696e20746860008201527f697320636f6e7472616374000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4572726f723a207061757365206973206e6f7420616c6c6f77656420696e207460008201527f68697320636f6e74726163740000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b7f526563697069656e74206e6f742077686974656c697374656400000000000000600082015250565b7f43616e6e6f7420736574206c657373207468616e206c6173742076616c756500600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573732063616e2774206265205a65726f0000000000000000000000600082015250565b7f57686974656c697374206e6f7420656e61626c65640000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c697374696e67206e6f7420706f737369626c65206f6e2074686960008201527f7320636f6e747261637400000000000000000000000000000000000000000000602082015250565b7f53656e646572206e6f742077686974656c697374656400000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b614e568161447b565b8114614e6157600080fd5b50565b614e6d816144b9565b8114614e7857600080fd5b5056fea26469706673582212202182e1e2146e0736fe91ff1920a871322568a517e417b28cc444b335c6eac56964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000c3500000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a69ab783a864af92b4c425f45f54f85900ee51fb00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002800000000000000000000000009254c0fcb2faa4550b9ba582558ce1d03ba3d05d0000000000000000000000000000000000000000000000000000000000000004524f444f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f444f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000134f776e65727368697020446f63756d656e747300000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636d02802711610144578063a09a1601116100b6578063a9d866851161007a578063a9d86685146108bd578063d48e4127146108e8578063dd62ed3e14610913578063f0576e2714610950578063f2fde38b1461097b578063f820f567146109a45761025c565b8063a09a1601146107c4578063a32f6976146107ef578063a457c2d71461081a578063a476df6114610857578063a9059cbb146108805761025c565b8063878dd33211610108578063878dd332146106b0578063883356d9146106db5780638da5cb5b146107065780638dac71911461073157806395d89b411461075c5780639b19251a146107875761025c565b80636d028027146105f157806370a082311461061c578063715018a61461065957806379cc6790146106705780638456cb59146106995761025c565b806339509351116101dd5780634838d165116101a15780634838d165146104f3578063537df3b61461051c57806354fd4d50146105455780635a3990ce146105705780635c975abb1461059b5780636c5adaae146105c65761025c565b806339509351146104225780633f4ba83a1461045f57806340c10f191461047657806342966c681461049f57806346b45af7146104c85761025c565b8063184d69ab11610224578063184d69ab1461034857806323b872dd14610373578063313ce567146103b057806335377214146103db578063378dc3dc146103f75761025c565b806302252c4d14610261578063044ab74e1461028a57806306fdde03146102b5578063095ea7b3146102e057806318160ddd1461031d575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906138a0565b6109cf565b005b34801561029657600080fd5b5061029f610a99565b6040516102ac9190613eb7565b60405180910390f35b3480156102c157600080fd5b506102ca610b27565b6040516102d79190613eb7565b60405180910390f35b3480156102ec57600080fd5b50610307600480360381019061030291906137ce565b610bb9565b6040516103149190613e9c565b60405180910390f35b34801561032957600080fd5b50610332610bdc565b60405161033f91906142d9565b60405180910390f35b34801561035457600080fd5b5061035d610be6565b60405161036a9190613e9c565b60405180910390f35b34801561037f57600080fd5b5061039a6004803603810190610395919061377b565b610c00565b6040516103a79190613e9c565b60405180910390f35b3480156103bc57600080fd5b506103c5610f9e565b6040516103d291906142f4565b60405180910390f35b6103f560048036038101906103f0919061380e565b610fc6565b005b34801561040357600080fd5b5061040c611146565b60405161041991906142d9565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906137ce565b61114c565b6040516104569190613e9c565b60405180910390f35b34801561046b57600080fd5b50610474611183565b005b34801561048257600080fd5b5061049d600480360381019061049891906137ce565b61125b565b005b3480156104ab57600080fd5b506104c660048036038101906104c191906138a0565b6113f0565b005b3480156104d457600080fd5b506104dd611512565b6040516104ea9190613e9c565b60405180910390f35b3480156104ff57600080fd5b5061051a6004803603810190610515919061370e565b61152c565b005b34801561052857600080fd5b50610543600480360381019061053e919061370e565b61176a565b005b34801561055157600080fd5b5061055a61199e565b60405161056791906142f4565b60405180910390f35b34801561057c57600080fd5b506105856119b1565b6040516105929190613e9c565b60405180910390f35b3480156105a757600080fd5b506105b06119cb565b6040516105bd9190613e9c565b60405180910390f35b3480156105d257600080fd5b506105db6119e2565b6040516105e89190613e9c565b60405180910390f35b3480156105fd57600080fd5b506106066119fc565b6040516106139190613e7a565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e919061370e565b611a8a565b60405161065091906142d9565b60405180910390f35b34801561066557600080fd5b5061066e611ad2565b005b34801561067c57600080fd5b50610697600480360381019061069291906137ce565b611ba0565b005b3480156106a557600080fd5b506106ae611cc4565b005b3480156106bc57600080fd5b506106c5611d9c565b6040516106d29190613e9c565b60405180910390f35b3480156106e757600080fd5b506106f0611db6565b6040516106fd9190613e9c565b60405180910390f35b34801561071257600080fd5b5061071b611dd0565b6040516107289190613e5f565b60405180910390f35b34801561073d57600080fd5b50610746611dfa565b6040516107539190613e5f565b60405180910390f35b34801561076857600080fd5b50610771611e20565b60405161077e9190613eb7565b60405180910390f35b34801561079357600080fd5b506107ae60048036038101906107a9919061370e565b611eb2565b6040516107bb9190613e9c565b60405180910390f35b3480156107d057600080fd5b506107d9611ed2565b6040516107e69190613e9c565b60405180910390f35b3480156107fb57600080fd5b50610804611eec565b60405161081191906142d9565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c91906137ce565b611ef2565b60405161084e9190613e9c565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190613857565b611f69565b005b34801561088c57600080fd5b506108a760048036038101906108a291906137ce565b611fff565b6040516108b49190613e9c565b60405180910390f35b3480156108c957600080fd5b506108d2612330565b6040516108df9190613eb7565b60405180910390f35b3480156108f457600080fd5b506108fd6123be565b60405161090a91906142d9565b60405180910390f35b34801561091f57600080fd5b5061093a6004803603810190610935919061373b565b6123c4565b60405161094791906142d9565b60405180910390f35b34801561095c57600080fd5b5061096561244b565b6040516109729190613e5f565b60405180910390f35b34801561098757600080fd5b506109a2600480360381019061099d919061370e565b612471565b005b3480156109b057600080fd5b506109b9612541565b6040516109c69190613e9c565b60405180910390f35b6109d7612817565b73ffffffffffffffffffffffffffffffffffffffff166109f5611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290614179565b60405180910390fd5b6010548111610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690614159565b60405180910390fd5b8060108190555050565b600d8054610aa690614512565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad290614512565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b505050505081565b606060038054610b3690614512565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6290614512565b8015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b600080610bc4612817565b9050610bd181858561281f565b600191505092915050565b6000600254905090565b6000600b60000160059054906101000a900460ff16905090565b6000610c0a6119cb565b15610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c41906140f9565b60405180910390fd5b600b60000160039054906101000a900460ff1615610d7d57600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690614039565b60405180910390fd5b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390614119565b60405180910390fd5b5b600b60000160059054906101000a900460ff1615610eae57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890614139565b60405180910390fd5b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490614279565b60405180910390fd5b5b600b60000160069054906101000a900460ff1615610f1f5760105482610ed385611a8a565b610edd91906143f1565b1115610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590614019565b60405180910390fd5b5b600b60000160079054906101000a900460ff168015610f7057503373ffffffffffffffffffffffffffffffffffffffff16610f58611dd0565b73ffffffffffffffffffffffffffffffffffffffff16145b15610f8957610f808484846129ea565b60019050610f97565b610f94848484612c6b565b90505b9392505050565b60007f0000000000000000000000000000000000000000000000000000000000000002905090565b610fce612817565b73ffffffffffffffffffffffffffffffffffffffff16610fec611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990614179565b60405180910390fd5b600b60000160059054906101000a900460ff16611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90614219565b60405180910390fd5b611123600f80548060200260200160405190810160405280929190818152602001828054801561111957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116110cf575b5050505050612c9a565b61112c81612d2f565b80600f90805190602001906111429291906134a9565b5050565b60065481565b600080611157612817565b905061117881858561116985896123c4565b61117391906143f1565b61281f565b600191505092915050565b61118b612817565b73ffffffffffffffffffffffffffffffffffffffff166111a9611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690614179565b60405180910390fd5b600b60000160029054906101000a900460ff16611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613fb9565b60405180910390fd5b611259612de7565b565b611263612817565b73ffffffffffffffffffffffffffffffffffffffff16611281611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90614179565b60405180910390fd5b6112df6119cb565b1561131f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611316906140f9565b60405180910390fd5b600b60000160009054906101000a900460ff16611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613ff9565b60405180910390fd5b600b60000160069054906101000a900460ff16156113e2576010548161139684611a8a565b6113a091906143f1565b11156113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890614019565b60405180910390fd5b5b6113ec8282612e89565b5050565b6113f8612817565b73ffffffffffffffffffffffffffffffffffffffff16611416611dd0565b73ffffffffffffffffffffffffffffffffffffffff161461146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390614179565b60405180910390fd5b6114746119cb565b156114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab906140f9565b60405180910390fd5b600b60000160019054906101000a900460ff16611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90614059565b60405180910390fd5b61150f81612fe9565b50565b6000600b60000160009054906101000a900460ff16905090565b611534612817565b73ffffffffffffffffffffffffffffffffffffffff16611552611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614179565b60405180910390fd5b6115b06119cb565b156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e7906140f9565b60405180910390fd5b6115f98161255b565b600b60000160039054906101000a900460ff1661164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290614259565b60405180910390fd5b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90613f59565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f16c91aa72a8077fd74f8a1e560a7c4a08163a96f6c33c8bec63023729015c8c38160405161175f9190613e5f565b60405180910390a150565b611772612817565b73ffffffffffffffffffffffffffffffffffffffff16611790611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90614179565b60405180910390fd5b6117ee6119cb565b1561182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611825906140f9565b60405180910390fd5b600b60000160039054906101000a900460ff16611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790614259565b60405180910390fd5b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390613ef9565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f53b5784bb7136e9078b4ff63d2cca56b3508aa09f28771aefb80b49053e6969d816040516119939190613e5f565b60405180910390a150565b600560159054906101000a900460ff1681565b6000600b60000160069054906101000a900460ff16905090565b6000600560009054906101000a900460ff16905090565b6000600b60000160079054906101000a900460ff16905090565b6060600f805480602002602001604051908101604052809291908181526020018280548015611a8057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611a36575b5050505050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ada612817565b73ffffffffffffffffffffffffffffffffffffffff16611af8611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4590614179565b60405180910390fd5b611b566119cb565b15611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d906140f9565b60405180910390fd5b611b9e612ffd565b565b611ba8612817565b73ffffffffffffffffffffffffffffffffffffffff16611bc6611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614179565b60405180910390fd5b611c246119cb565b15611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b906140f9565b60405180910390fd5b600b60000160019054906101000a900460ff16611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad90614059565b60405180910390fd5b611cc08282613085565b5050565b611ccc612817565b73ffffffffffffffffffffffffffffffffffffffff16611cea611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3790614179565b60405180910390fd5b600b60000160029054906101000a900460ff16611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d89906140d9565b60405180910390fd5b611d9a6130a5565b565b6000600b60000160039054906101000a900460ff16905090565b6000600b60000160019054906101000a900460ff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054611e2f90614512565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5b90614512565b8015611ea85780601f10611e7d57610100808354040283529160200191611ea8565b820191906000526020600020905b815481529060010190602001808311611e8b57829003601f168201915b5050505050905090565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600b60000160029054906101000a900460ff16905090565b60075481565b600080611efd612817565b90506000611f0b82866123c4565b905083811015611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4790614239565b60405180910390fd5b611f5d828686840361281f565b60019250505092915050565b611f71612817565b73ffffffffffffffffffffffffffffffffffffffff16611f8f611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614611fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdc90614179565b60405180910390fd5b80600d9080519060200190611ffb929190613533565b5050565b60006120096119cb565b15612049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612040906140f9565b60405180910390fd5b600b60000160039054906101000a900460ff161561217c57600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e590614039565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561217b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217290614119565b60405180910390fd5b5b600b60000160059054906101000a900460ff16156122ad57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790614139565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a390614279565b60405180910390fd5b5b600b60000160069054906101000a900460ff161561231e57601054826122d285611a8a565b6122dc91906143f1565b111561231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490614019565b60405180910390fd5b5b6123288383613148565b905092915050565b6008805461233d90614512565b80601f016020809104026020016040519081016040528092919081815260200182805461236990614512565b80156123b65780601f1061238b576101008083540402835291602001916123b6565b820191906000526020600020905b81548152906001019060200180831161239957829003601f168201915b505050505081565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612479612817565b73ffffffffffffffffffffffffffffffffffffffff16612497611dd0565b73ffffffffffffffffffffffffffffffffffffffff16146124ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e490614179565b60405180910390fd5b6124f56119cb565b15612535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252c906140f9565b60405180910390fd5b61253e816126c2565b50565b6000600b60000160049054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c2906141f9565b60405180910390fd5b50565b80471015612611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612608906140b9565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161263790613e4a565b60006040518083038185875af1925050503d8060008114612674576040519150601f19603f3d011682016040523d82523d6000602084013e612679565b606091505b50509050806126bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b490614099565b60405180910390fd5b505050565b6126ca612817565b73ffffffffffffffffffffffffffffffffffffffff166126e8611dd0565b73ffffffffffffffffffffffffffffffffffffffff161461273e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273590614179565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590613f79565b60405180910390fd5b6127b78161316b565b50565b6127c5838383612812565b6127cd6119cb565b1561280d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612804906142b9565b60405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561288f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612886906141d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f690613f99565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129dd91906142d9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a51906141b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac190613ed9565b60405180910390fd5b612ad5838383613231565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5290614079565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bee91906143f1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c5291906142d9565b60405180910390a3612c65848484613241565b50505050565b600080612c76612817565b9050612c83858285613246565b612c8e8585856129ea565b60019150509392505050565b60005b8151811015612d2b576000600e6000848481518110612cbf57612cbe61461c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612d2390614575565b915050612c9d565b5050565b60005b8151811015612de357612d5e828281518110612d5157612d5061461c565b5b602002602001015161255b565b6001600e6000848481518110612d7757612d7661461c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612ddb90614575565b915050612d32565b5050565b612def6119cb565b612e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2590613f19565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612e72612817565b604051612e7f9190613e5f565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef090614299565b60405180910390fd5b612f0560008383613231565b8060026000828254612f1791906143f1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f6c91906143f1565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612fd191906142d9565b60405180910390a3612fe560008383613241565b5050565b612ffa612ff4612817565b826132d2565b50565b613005612817565b73ffffffffffffffffffffffffffffffffffffffff16613023611dd0565b73ffffffffffffffffffffffffffffffffffffffff1614613079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307090614179565b60405180910390fd5b613083600061316b565b565b61309782613091612817565b83613246565b6130a182826132d2565b5050565b6130ad6119cb565b156130ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e4906140f9565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613131612817565b60405161313e9190613e5f565b60405180910390a1565b600080613153612817565b90506131608185856129ea565b600191505092915050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61323c8383836127ba565b505050565b505050565b600061325284846123c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146132cc57818110156132be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b590613fd9565b60405180910390fd5b6132cb848484840361281f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333990614199565b60405180910390fd5b61334e82600083613231565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156133d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cb90613f39565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461342b9190614447565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161349091906142d9565b60405180910390a36134a483600084613241565b505050565b828054828255906000526020600020908101928215613522579160200282015b828111156135215782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906134c9565b5b50905061352f91906135b9565b5090565b82805461353f90614512565b90600052602060002090601f01602090048101928261356157600085556135a8565b82601f1061357a57805160ff19168380011785556135a8565b828001600101855582156135a8579182015b828111156135a757825182559160200191906001019061358c565b5b5090506135b591906135b9565b5090565b5b808211156135d25760008160009055506001016135ba565b5090565b60006135e96135e484614334565b61430f565b9050808382526020820190508285602086028201111561360c5761360b61467f565b5b60005b8581101561363c57816136228882613688565b84526020840193506020830192505060018101905061360f565b5050509392505050565b600061365961365484614360565b61430f565b90508281526020810184848401111561367557613674614684565b5b6136808482856144d0565b509392505050565b60008135905061369781614e4d565b92915050565b600082601f8301126136b2576136b161467a565b5b81356136c28482602086016135d6565b91505092915050565b600082601f8301126136e0576136df61467a565b5b81356136f0848260208601613646565b91505092915050565b60008135905061370881614e64565b92915050565b6000602082840312156137245761372361468e565b5b600061373284828501613688565b91505092915050565b600080604083850312156137525761375161468e565b5b600061376085828601613688565b925050602061377185828601613688565b9150509250929050565b6000806000606084860312156137945761379361468e565b5b60006137a286828701613688565b93505060206137b386828701613688565b92505060406137c4868287016136f9565b9150509250925092565b600080604083850312156137e5576137e461468e565b5b60006137f385828601613688565b9250506020613804858286016136f9565b9150509250929050565b6000602082840312156138245761382361468e565b5b600082013567ffffffffffffffff81111561384257613841614689565b5b61384e8482850161369d565b91505092915050565b60006020828403121561386d5761386c61468e565b5b600082013567ffffffffffffffff81111561388b5761388a614689565b5b613897848285016136cb565b91505092915050565b6000602082840312156138b6576138b561468e565b5b60006138c4848285016136f9565b91505092915050565b60006138d983836138e5565b60208301905092915050565b6138ee8161447b565b82525050565b6138fd8161447b565b82525050565b600061390e826143a1565b61391881856143c4565b935061392383614391565b8060005b8381101561395457815161393b88826138cd565b9750613946836143b7565b925050600181019050613927565b5085935050505092915050565b61396a8161448d565b82525050565b600061397b826143ac565b61398581856143e0565b93506139958185602086016144df565b61399e81614693565b840191505092915050565b60006139b66023836143e0565b91506139c1826146a4565b604082019050919050565b60006139d96018836143e0565b91506139e4826146f3565b602082019050919050565b60006139fc6014836143e0565b9150613a078261471c565b602082019050919050565b6000613a1f6022836143e0565b9150613a2a82614745565b604082019050919050565b6000613a426019836143e0565b9150613a4d82614794565b602082019050919050565b6000613a656026836143e0565b9150613a70826147bd565b604082019050919050565b6000613a886022836143e0565b9150613a938261480c565b604082019050919050565b6000613aab602e836143e0565b9150613ab68261485b565b604082019050919050565b6000613ace601d836143e0565b9150613ad9826148aa565b602082019050919050565b6000613af1602b836143e0565b9150613afc826148d3565b604082019050919050565b6000613b14602e836143e0565b9150613b1f82614922565b604082019050919050565b6000613b376018836143e0565b9150613b4282614971565b602082019050919050565b6000613b5a602b836143e0565b9150613b658261499a565b604082019050919050565b6000613b7d6026836143e0565b9150613b88826149e9565b604082019050919050565b6000613ba0603a836143e0565b9150613bab82614a38565b604082019050919050565b6000613bc3601d836143e0565b9150613bce82614a87565b602082019050919050565b6000613be6602c836143e0565b9150613bf182614ab0565b604082019050919050565b6000613c096010836143e0565b9150613c1482614aff565b602082019050919050565b6000613c2c6015836143e0565b9150613c3782614b28565b602082019050919050565b6000613c4f6019836143e0565b9150613c5a82614b51565b602082019050919050565b6000613c72601f836143e0565b9150613c7d82614b7a565b602082019050919050565b6000613c956020836143e0565b9150613ca082614ba3565b602082019050919050565b6000613cb86021836143e0565b9150613cc382614bcc565b604082019050919050565b6000613cdb6025836143e0565b9150613ce682614c1b565b604082019050919050565b6000613cfe6000836143d5565b9150613d0982614c6a565b600082019050919050565b6000613d216024836143e0565b9150613d2c82614c6d565b604082019050919050565b6000613d446015836143e0565b9150613d4f82614cbc565b602082019050919050565b6000613d676015836143e0565b9150613d7282614ce5565b602082019050919050565b6000613d8a6025836143e0565b9150613d9582614d0e565b604082019050919050565b6000613dad602a836143e0565b9150613db882614d5d565b604082019050919050565b6000613dd06016836143e0565b9150613ddb82614dac565b602082019050919050565b6000613df3601f836143e0565b9150613dfe82614dd5565b602082019050919050565b6000613e16602a836143e0565b9150613e2182614dfe565b604082019050919050565b613e35816144b9565b82525050565b613e44816144c3565b82525050565b6000613e5582613cf1565b9150819050919050565b6000602082019050613e7460008301846138f4565b92915050565b60006020820190508181036000830152613e948184613903565b905092915050565b6000602082019050613eb16000830184613961565b92915050565b60006020820190508181036000830152613ed18184613970565b905092915050565b60006020820190508181036000830152613ef2816139a9565b9050919050565b60006020820190508181036000830152613f12816139cc565b9050919050565b60006020820190508181036000830152613f32816139ef565b9050919050565b60006020820190508181036000830152613f5281613a12565b9050919050565b60006020820190508181036000830152613f7281613a35565b9050919050565b60006020820190508181036000830152613f9281613a58565b9050919050565b60006020820190508181036000830152613fb281613a7b565b9050919050565b60006020820190508181036000830152613fd281613a9e565b9050919050565b60006020820190508181036000830152613ff281613ac1565b9050919050565b6000602082019050818103600083015261401281613ae4565b9050919050565b6000602082019050818103600083015261403281613b07565b9050919050565b6000602082019050818103600083015261405281613b2a565b9050919050565b6000602082019050818103600083015261407281613b4d565b9050919050565b6000602082019050818103600083015261409281613b70565b9050919050565b600060208201905081810360008301526140b281613b93565b9050919050565b600060208201905081810360008301526140d281613bb6565b9050919050565b600060208201905081810360008301526140f281613bd9565b9050919050565b6000602082019050818103600083015261411281613bfc565b9050919050565b6000602082019050818103600083015261413281613c1f565b9050919050565b6000602082019050818103600083015261415281613c42565b9050919050565b6000602082019050818103600083015261417281613c65565b9050919050565b6000602082019050818103600083015261419281613c88565b9050919050565b600060208201905081810360008301526141b281613cab565b9050919050565b600060208201905081810360008301526141d281613cce565b9050919050565b600060208201905081810360008301526141f281613d14565b9050919050565b6000602082019050818103600083015261421281613d37565b9050919050565b6000602082019050818103600083015261423281613d5a565b9050919050565b6000602082019050818103600083015261425281613d7d565b9050919050565b6000602082019050818103600083015261427281613da0565b9050919050565b6000602082019050818103600083015261429281613dc3565b9050919050565b600060208201905081810360008301526142b281613de6565b9050919050565b600060208201905081810360008301526142d281613e09565b9050919050565b60006020820190506142ee6000830184613e2c565b92915050565b60006020820190506143096000830184613e3b565b92915050565b600061431961432a565b90506143258282614544565b919050565b6000604051905090565b600067ffffffffffffffff82111561434f5761434e61464b565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561437b5761437a61464b565b5b61438482614693565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006143fc826144b9565b9150614407836144b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561443c5761443b6145be565b5b828201905092915050565b6000614452826144b9565b915061445d836144b9565b9250828210156144705761446f6145be565b5b828203905092915050565b600061448682614499565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156144fd5780820151818401526020810190506144e2565b8381111561450c576000848401525b50505050565b6000600282049050600182168061452a57607f821691505b6020821081141561453e5761453d6145ed565b5b50919050565b61454d82614693565b810181811067ffffffffffffffff8211171561456c5761456b61464b565b5b80604052505050565b6000614580826144b9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145b3576145b26145be565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5573657220616c72656164792077686974656c69737465640000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f5573657220616c726561647920626c61636b6c69737465642100000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a20756e7061757365206973206e6f7420616c6c6f77656420696e60008201527f207468697320636f6e7472616374000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f4572726f723a206d696e74206973206e6f7420616c6c6f77656420696e20746860008201527f697320636f6e7472616374000000000000000000000000000000000000000000602082015250565b7f5468697320616464726573732063616e6e6f7420686f6c64207468617420616d60008201527f6f756e74206f6620746f6b656e73000000000000000000000000000000000000602082015250565b7f526563697069656e7420697320626c61636b6c69737465640000000000000000600082015250565b7f4572726f723a206275726e206973206e6f7420616c6c6f77656420696e20746860008201527f697320636f6e7472616374000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4572726f723a207061757365206973206e6f7420616c6c6f77656420696e207460008201527f68697320636f6e74726163740000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b7f526563697069656e74206e6f742077686974656c697374656400000000000000600082015250565b7f43616e6e6f7420736574206c657373207468616e206c6173742076616c756500600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573732063616e2774206265205a65726f0000000000000000000000600082015250565b7f57686974656c697374206e6f7420656e61626c65640000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c697374696e67206e6f7420706f737369626c65206f6e2074686960008201527f7320636f6e747261637400000000000000000000000000000000000000000000602082015250565b7f53656e646572206e6f742077686974656c697374656400000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b614e568161447b565b8114614e6157600080fd5b50565b614e6d816144b9565b8114614e7857600080fd5b5056fea26469706673582212202182e1e2146e0736fe91ff1920a871322568a517e417b28cc444b335c6eac56964736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000c3500000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a69ab783a864af92b4c425f45f54f85900ee51fb00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002800000000000000000000000009254c0fcb2faa4550b9ba582558ce1d03ba3d05d0000000000000000000000000000000000000000000000000000000000000004524f444f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f444f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000134f776e65727368697020446f63756d656e747300000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): RODO
Arg [1] : symbol (string): RODO
Arg [2] : initialSupplyToSet (uint256): 50000
Arg [3] : decimalsToSet (uint8): 2
Arg [4] : tokenOwner (address): 0xa69ab783A864AF92b4C425F45F54f85900EE51FB
Arg [5] : customConfigProps (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [6] : maxTokenAmount (uint256): 0
Arg [7] : newDocumentUri (string): Ownership Documents
Arg [8] : feeReceiver (address): 0x9254C0fcB2FaA4550B9ba582558cE1D03Ba3d05d

-----Encoded View---------------
22 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [2] : 000000000000000000000000000000000000000000000000000000000000c350
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 000000000000000000000000a69ab783a864af92b4c425f45f54f85900ee51fb
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [15] : 0000000000000000000000009254c0fcb2faa4550b9ba582558ce1d03ba3d05d
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [17] : 524f444f00000000000000000000000000000000000000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [19] : 524f444f00000000000000000000000000000000000000000000000000000000
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [21] : 4f776e65727368697020446f63756d656e747300000000000000000000000000


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.