ETH Price: $2,875.49 (-2.50%)
 

Overview

Max Total Supply

150,000 wNPT

Holders

550 (0.00%)

Market

Price

$0.3496 @ 0.000122 ETH (-18.57%)

Onchain Market Cap

$52,435.80

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.00863702982908775 wNPT

Value
$0.00 ( ~0 ETH) [0.0000%]
0x9932ea613039fbb1b095201dd7234f62ecc8db36
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Neptune Cash is more than a privacy coin. It's the first blockchain to integrate zk-STARKs directly at Layer-1 and to introduce Mutator Sets, a breakthrough in private transactions that scale without compromise, as well as programmability through the built-in Triton vm.

Market

Volume (24H):$3,562.16
Market Capitalization:$0.00
Circulating Supply:0.00 wNPT
Market Data Source: Coinmarketcap

Contract Source Code Verified (Exact Match)

Contract Name:
BitbondTokenToolAssetToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.17;

/**
####################################

This token or smart contract has been created by Safetrade.com Inc

Wrapped Neptune is honored 1:1 with Neptune Cash native.

When the Neptune Cash bridge is complete, this token and its will be permanently transferred to it 1:1 to provide trustless bridging.  No action from holders is required.

####################################
*/

import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { ERC20Burnable } from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import { ERC20Pausable } from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";
import { LibCommon } from "./lib/LibCommon.sol";

contract BitbondTokenToolAssetToken is ERC20, ERC20Burnable, ERC20Pausable, Ownable {
  uint256 private constant MAX_BPS_AMOUNT = 10_000;
  uint256 private constant MAX_ALLOWED_BPS = 5_000;
  string public constant VERSION = "security_v_2";
  string public constant CONTRACT_NAME = "BitbondTokenToolAssetToken";
  bytes32 public constant CONTRACT_HASH =
    0x24ed082a170bd12924328c135e7b42b89c4e2a1de12e18c0e5b356d918ac9bed;
  /// @notice mapping of blacklisted addresses to a boolean
  mapping(address => bool) private _isBlacklisted;
  /// @notice mapping of whitelisted addresses to a boolean
  mapping(address => bool) public whitelist;
  /// @notice array holding all whitelisted addresses
  address[] public whitelistedAddresses;
  /// @notice support for attaching of documentation for security tokens
  string public initialDocumentUri;
  /// @notice the security token documentation
  string public documentUri;
  /// @notice initial number of tokens which will be minted during initialization
  uint256 public immutable initialSupply;
  /// @notice initial max amount of tokens allowed per wallet
  uint256 public immutable initialMaxTokenAmountPerAddress;
  /// @notice max amount of tokens allowed per wallet
  uint256 public maxTokenAmountPerAddress;
  /// @notice set of features supported by the token
  struct ERC20ConfigProps {
    bool _isMintable;
    bool _isBurnable;
    bool _isPausable;
    bool _isBlacklistEnabled;
    bool _isDocumentAllowed;
    bool _isWhitelistEnabled;
    bool _isMaxSupplySet;
    bool _isMaxAmountOfTokensSet;
    bool _isForceTransferAllowed;
    bool _isTaxable;
    bool _isDeflationary;
  }
  /// @notice features of the token
  ERC20ConfigProps private configProps;
  /// @notice owner of the contract
  address public immutable initialTokenOwner;
  /// @notice number of decimals of the token
  uint8 private immutable _decimals;
  address public taxAddress;
  uint256 public taxBPS;
  uint256 public deflationBPS;
  uint256 public maxTotalSupply;

  /// @notice emitted when an address is blacklisted
  event UserBlacklisted(address indexed addr);
  /// @notice emitted when an address is unblacklisted
  event UserUnBlacklisted(address indexed addr);
  /// @notice emitted when a new document is set for the security token
  event DocumentUriSet(string newDocUri);
  /// @notice emitted when a new max amount of tokens per wallet is set
  event MaxTokenAmountPerSet(uint256 newMaxTokenAmount);
  /// @notice emitted when a new whitelist is set
  event UsersWhitelisted(address[] updatedAddresses);
  /// @notice emitted when a new tax address or taxBPS is set
  event TaxConfigSet(address indexed _taxAddress, uint256 indexed _taxBPS);
  /// @notice emitted when a new deflationBPS is set
  event DeflationConfigSet(uint256 indexed _deflationBPS);

  /// @notice raised when the amount sent is zero
  error InvalidMaxTokenAmount(uint256 maxTokenAmount);
  /// @notice raised when the decimals are not in the range 0 - 18
  error InvalidDecimals(uint8 decimals);
  /// @notice raised when setting maxTokenAmount less than current
  error MaxTokenAmountPerAddrLtPrevious();
  /// @notice raised when blacklisting is not enabled
  error BlacklistNotEnabled();
  /// @notice raised when the address is already blacklisted
  error AddrAlreadyBlacklisted(address addr);
  /// @notice raised when the address is already unblacklisted
  error AddrAlreadyUnblacklisted(address addr);
  /// @notice raised when attempting to blacklist a whitelisted address
  error CannotBlacklistWhitelistedAddr(address addr);
  /// @notice raised when a recipient address is blacklisted
  error RecipientBlacklisted(address addr);
  /// @notice raised when a sender address is blacklisted
  error SenderBlacklisted(address addr);
  /// @notice raised when a recipient address is not whitelisted
  error RecipientNotWhitelisted(address addr);
  /// @notice raised when a sender address is not whitelisted
  error SenderNotWhitelisted(address addr);
  /// @notice raised when recipient balance exceeds maxTokenAmountPerAddress
  error DestBalanceExceedsMaxAllowed(address addr);
  /// @notice raised minting is not enabled
  error MintingNotEnabled();
  /// @notice raised when burning is not enabled
  error BurningNotEnabled();
  /// @notice raised when pause is not enabled
  error PausingNotEnabled();
  /// @notice raised when whitelist is not enabled
  error WhitelistNotEnabled();
  /// @notice raised when attempting to whitelist a blacklisted address
  error CannotWhitelistBlacklistedAddr(address addr);
  /// @notice raised when trying to set a document URI when not allowed
  error DocumentUriNotAllowed();
  /// @notice raised when trying to set a max amount of tokens when not allowed
  error MaxTokenAmountNotAllowed();
  /// @notice raised when trying to set a tax address or taxBPS when not allowed
  error TokenIsNotTaxable();
  /// @notice raised when trying to set a deflationBPS when not allowed
  error TokenIsNotDeflationary();
  /// @notice raised when trying to set an invalid taxBPS
  error InvalidTaxBPS(uint256 bps);
  /// @notice raised when trying to set and invalid deflationBPS
  error InvalidDeflationBPS(uint256 bps);
  /// @notice raised when trying to set an invalid max supply
  error InvalidMaxSupplyConfig();
  /// @notice raised when trying to mint more than the max supply
  error TotalSupplyExceedsMaxAllowedAmount();

  /**
   * @notice modifier for validating if transfer is possible and valid
   * @param sender the sender of the transaction
   * @param recipient the recipient of the transaction
   */
  modifier validateTransfer(address sender, address recipient) {
    if (isWhitelistEnabled()) {
      if (!whitelist[sender]) {
        revert SenderNotWhitelisted(sender);
      }
      if (!whitelist[recipient]) {
        revert RecipientNotWhitelisted(recipient);
      }
      if (
        sender != msg.sender && msg.sender != owner() && !whitelist[msg.sender]
      ) {
        revert SenderNotWhitelisted(msg.sender);
      }
    }
    if (isBlacklistEnabled()) {
      if (_isBlacklisted[sender]) {
        revert SenderBlacklisted(sender);
      }
      if (_isBlacklisted[recipient]) {
        revert RecipientBlacklisted(recipient);
      }
      if (
        sender != msg.sender &&
        msg.sender != owner() &&
        _isBlacklisted[msg.sender]
      ) {
        revert SenderBlacklisted(msg.sender);
      }
    }
    _;
  }

  /// @notice Constructor to initialize the Security token
  /// @param name_ Name of the token
  /// @param symbol_ Symbol of the token
  /// @param initialSupplyToSet Initial supply of tokens
  /// @param decimalsToSet Number of decimals for the token
  /// @param tokenOwner Address of the initial token owner
  /// @param customConfigProps Configuration properties for the token
  /// @param newDocumentUri URI for the document associated with the token
  /// @param _taxAddress Address where tax will be sent
  /// @param bpsParams array of BPS values in this order:
  ///           taxBPS = bpsParams[0],
  ///           deflationBPS = bpsParams[1],
  /// @param amountParams array of amounts for amount specific config:
  ///           maxTokenAmount = amountParams[0], Maximum token amount per address
  ///           maxSupplyAmount = amountParams[1], Maximum token token supply amount

  constructor(
    string memory name_,
    string memory symbol_,
    uint256 initialSupplyToSet,
    uint8 decimalsToSet,
    address tokenOwner,
    ERC20ConfigProps memory customConfigProps,
    string memory newDocumentUri,
    address _taxAddress,
    uint256[2] memory bpsParams,
    uint256[2] memory amountParams
  ) ERC20(name_, symbol_) {
    if (customConfigProps._isMaxAmountOfTokensSet) {
      if (amountParams[0] == 0) {
        revert InvalidMaxTokenAmount(amountParams[0]);
      }
    }
    if (decimalsToSet > 18) {
      revert InvalidDecimals(decimalsToSet);
    }

    uint256 initialSupplyWithDecimals = initialSupplyToSet *
      10 ** decimalsToSet;

    if (
      customConfigProps._isMaxSupplySet &&
      (!customConfigProps._isMintable ||
        (initialSupplyWithDecimals > amountParams[1]))
    ) {
      revert InvalidMaxSupplyConfig();
    }

    bpsInitChecks(customConfigProps, bpsParams);

    LibCommon.validateAddress(tokenOwner);
    LibCommon.validateAddress(_taxAddress);
    taxBPS = bpsParams[0];
    deflationBPS = bpsParams[1];
    taxAddress = _taxAddress;
    initialSupply = initialSupplyToSet;
    initialMaxTokenAmountPerAddress = amountParams[0];
    initialDocumentUri = newDocumentUri;
    initialTokenOwner = tokenOwner;
    _decimals = decimalsToSet;
    configProps = customConfigProps;
    documentUri = newDocumentUri;
    maxTokenAmountPerAddress = amountParams[0];
    maxTotalSupply = amountParams[1];

    if (initialSupplyToSet != 0) {
      _mint(tokenOwner, initialSupplyWithDecimals);
    }

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

  function bpsInitChecks(
    ERC20ConfigProps memory customConfigProps,
    uint256[2] memory bpsParams
  ) private pure {
    if (customConfigProps._isTaxable) {
      if (bpsParams[0] > MAX_ALLOWED_BPS) {
        revert InvalidTaxBPS(bpsParams[0]);
      }
    }
    if (customConfigProps._isDeflationary) {
      if (bpsParams[1] > MAX_ALLOWED_BPS) {
        revert InvalidDeflationBPS(bpsParams[1]);
      }
    }
  }

  /**
   * @notice hook called before any transfer of tokens. This includes minting and burning
   * imposed by the ERC20 standard
   * @param from - address of the sender
   * @param to - address of the recipient
   * @param amount - amount of tokens to transfer
   */
  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual override(ERC20, ERC20Pausable) {
    super._beforeTokenTransfer(from, to, amount);
  }

  /// @notice method which checks if the token is pausable
  function isPausable() public view returns (bool) {
    return configProps._isPausable;
  }

  /// @notice Checks if the maximum amount of token supply is set
  /// @return True if there is a maximum limit for token supply
  function isMaxSupplySet() public view returns (bool) {
    return configProps._isMaxSupplySet;
  }

  /// @notice method which checks if the token is mintable
  function isMintable() public view returns (bool) {
    return configProps._isMintable;
  }

  /// @notice method which checks if the token is burnable
  function isBurnable() public view returns (bool) {
    return configProps._isBurnable;
  }

  /// @notice method which checks if the token supports blacklisting
  function isBlacklistEnabled() public view returns (bool) {
    return configProps._isBlacklistEnabled;
  }

  /// @notice method which checks if the token supports whitelisting
  function isWhitelistEnabled() public view returns (bool) {
    return configProps._isWhitelistEnabled;
  }

  /// @notice method which checks if the token supports max amount of tokens per wallet
  function isMaxAmountOfTokensSet() public view returns (bool) {
    return configProps._isMaxAmountOfTokensSet;
  }

  /// @notice method which checks if the token supports documentUris
  function isDocumentUriAllowed() public view returns (bool) {
    return configProps._isDocumentAllowed;
  }

  /// @notice method which checks if the token supports force transfers
  function isForceTransferAllowed() public view returns (bool) {
    return configProps._isForceTransferAllowed;
  }

  /// @notice method which returns the number of decimals for the token
  function decimals() public view virtual override returns (uint8) {
    return _decimals;
  }

  /// @notice method which checks if the token is taxable
  function isTaxable() public view returns (bool) {
    return configProps._isTaxable;
  }

  /// @notice method which checks if the token is deflationary
  function isDeflationary() public view returns (bool) {
    return configProps._isDeflationary;
  }

  /**
   * @notice which returns an array of all the whitelisted addresses
   * @return whitelistedAddresses array of all the whitelisted addresses
   */
  function getWhitelistedAddresses() external view returns (address[] memory) {
    return whitelistedAddresses;
  }

  /**
   * @notice method which allows the owner to set a documentUri
   * @param newDocumentUri - the new documentUri
   * @dev only callable by the owner
   */
  function setDocumentUri(
    string memory newDocumentUri
  ) external onlyOwner whenNotPaused {
    if (!isDocumentUriAllowed()) {
      revert DocumentUriNotAllowed();
    }
    documentUri = newDocumentUri;
    emit DocumentUriSet(newDocumentUri);
  }

  /**
   * @notice method which allows the owner to set a max amount of tokens per wallet
   * @param newMaxTokenAmount - the new max amount of tokens per wallet
   * @dev only callable by the owner
   */
  function setMaxTokenAmountPerAddress(
    uint256 newMaxTokenAmount
  ) external onlyOwner whenNotPaused {
    if (!isMaxAmountOfTokensSet()) {
      revert MaxTokenAmountNotAllowed();
    }
    if (newMaxTokenAmount <= maxTokenAmountPerAddress) {
      revert MaxTokenAmountPerAddrLtPrevious();
    }

    maxTokenAmountPerAddress = newMaxTokenAmount;
    emit MaxTokenAmountPerSet(newMaxTokenAmount);
  }

  /**
   * @notice method which allows the owner to blacklist an address
   * @param addr - the address to blacklist
   * @dev only callable by the owner
   * @dev only callable if the token is not paused
   * @dev only callable if the token supports blacklisting
   * @dev only callable if the address is not already blacklisted
   * @dev only callable if the address is not whitelisted
   */
  function blackList(address addr) external onlyOwner whenNotPaused {
    LibCommon.validateAddress(addr);
    if (!isBlacklistEnabled()) {
      revert BlacklistNotEnabled();
    }
    if (_isBlacklisted[addr]) {
      revert AddrAlreadyBlacklisted(addr);
    }
    if (isWhitelistEnabled() && whitelist[addr]) {
      revert CannotBlacklistWhitelistedAddr(addr);
    }

    _isBlacklisted[addr] = true;
    emit UserBlacklisted(addr);
  }

  /**
   * @notice method which allows the owner to unblacklist an address
   * @param addr - the address to unblacklist
   * @dev only callable by the owner
   * @dev only callable if the token is not paused
   * @dev only callable if the token supports blacklisting
   * @dev only callable if the address is blacklisted
   */
  function removeFromBlacklist(address addr) external onlyOwner whenNotPaused {
    LibCommon.validateAddress(addr);
    if (!isBlacklistEnabled()) {
      revert BlacklistNotEnabled();
    }
    if (!_isBlacklisted[addr]) {
      revert AddrAlreadyUnblacklisted(addr);
    }
    delete _isBlacklisted[addr];
    emit UserUnBlacklisted(addr);
  }

  /**
   * @notice method which allows the owner to set the tax config
   * @param _taxAddress - the new taxAddress
   * @param _taxBPS - the new taxBPS
   */
  function setTaxConfig(
    address _taxAddress,
    uint256 _taxBPS
  ) external onlyOwner whenNotPaused {
    if (!isTaxable()) {
      revert TokenIsNotTaxable();
    }
    if (_taxBPS > MAX_ALLOWED_BPS) {
      revert InvalidTaxBPS(_taxBPS);
    }
    LibCommon.validateAddress(_taxAddress);
    taxAddress = _taxAddress;
    taxBPS = _taxBPS;
    emit TaxConfigSet(_taxAddress, _taxBPS);
  }

  /**
   * @notice method which allows the owner to set the deflation config
   * @param _deflationBPS - the new deflationBPS
   */
  function setDeflationConfig(
    uint256 _deflationBPS
  ) external onlyOwner whenNotPaused {
    if (!isDeflationary()) {
      revert TokenIsNotDeflationary();
    }
    if (_deflationBPS > MAX_ALLOWED_BPS) {
      revert InvalidDeflationBPS(_deflationBPS);
    }
    deflationBPS = _deflationBPS;
    emit DeflationConfigSet(_deflationBPS);
  }

  /**
   * @notice method which allows to transfer a predefined amount of tokens to a predefined address
   * @param to - the address to transfer the tokens to
   * @param amount - the amount of tokens to transfer
   * @return true if the transfer was successful
   * @dev only callable if the token is not paused
   * @dev only callable if the balance of the receiver is lower than the max amount of tokens per wallet
   * @dev checks if blacklisting is enabled and if the sender and receiver are not blacklisted
   * @dev checks if whitelisting is enabled and if the sender and receiver are whitelisted
   * @dev captures the tax during the transfer if tax is enabvled
   * @dev burns the deflationary amount during the transfer if deflation is enabled
   */
  function transfer(
    address to,
    uint256 amount
  )
    public
    virtual
    override
    whenNotPaused
    validateTransfer(msg.sender, to)
    returns (bool)
  {
    uint256 taxAmount = _taxAmount(msg.sender, amount);
    uint256 deflationAmount = _deflationAmount(amount);
    uint256 amountToTransfer = amount - taxAmount - deflationAmount;

    if (isMaxAmountOfTokensSet()) {
      if (balanceOf(to) + amountToTransfer > maxTokenAmountPerAddress) {
        revert DestBalanceExceedsMaxAllowed(to);
      }
    }

    if (taxAmount != 0) {
      _transfer(msg.sender, taxAddress, taxAmount);
    }
    if (deflationAmount != 0) {
      _burn(msg.sender, deflationAmount);
    }
    return super.transfer(to, amountToTransfer);
  }

  /**
   * @notice method which allows to transfer a predefined amount of tokens from a predefined address to a predefined address
   * @param from - the address to transfer the tokens from
   * @param to - the address to transfer the tokens to
   * @param amount - the amount of tokens to transfer
   * @return true if the transfer was successful
   * @dev only callable if the token is not paused
   * @dev only callable if the balance of the receiver is lower than the max amount of tokens per wallet
   * @dev checks if blacklisting is enabled and if the sender and receiver are not blacklisted
   * @dev checks if whitelisting is enabled and if the sender and receiver are whitelisted
   * @dev captures the tax during the transfer if tax is enabvled
   * @dev burns the deflationary amount during the transfer if deflation is enabled
   */
  function transferFrom(
    address from,
    address to,
    uint256 amount
  )
    public
    virtual
    override
    whenNotPaused
    validateTransfer(from, to)
    returns (bool)
  {
    uint256 taxAmount = _taxAmount(from, amount);
    uint256 deflationAmount = _deflationAmount(amount);
    uint256 amountToTransfer = amount - taxAmount - deflationAmount;

    if (isMaxAmountOfTokensSet()) {
      if (balanceOf(to) + amountToTransfer > maxTokenAmountPerAddress) {
        revert DestBalanceExceedsMaxAllowed(to);
      }
    }

    if (taxAmount != 0) {
      _transfer(from, taxAddress, taxAmount);
    }
    if (deflationAmount != 0) {
      _burn(from, deflationAmount);
    }

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

  /**
   * @notice method which allows to mint a predefined amount of tokens to a predefined address
   * @param to - the address to mint the tokens to
   * @param amount - the amount of tokens to mint
   * @dev only callable by the owner
   * @dev only callable if the token is not paused
   * @dev only callable if the token supports additional minting
   * @dev only callable if the balance of the receiver is lower than the max amount of tokens per wallet
   * @dev checks if blacklisting is enabled and if the receiver is not blacklisted
   * @dev checks if whitelisting is enabled and if the receiver is whitelisted
   */
  function mint(address to, uint256 amount) external onlyOwner whenNotPaused {
    if (!isMintable()) {
      revert MintingNotEnabled();
    }
    if (isMaxAmountOfTokensSet()) {
      if (balanceOf(to) + amount > maxTokenAmountPerAddress) {
        revert DestBalanceExceedsMaxAllowed(to);
      }
    }
    if (isBlacklistEnabled()) {
      if (_isBlacklisted[to]) {
        revert RecipientBlacklisted(to);
      }
    }
    if (isWhitelistEnabled()) {
      if (!whitelist[to]) {
        revert RecipientNotWhitelisted(to);
      }
    }
    if (isMaxSupplySet()) {
      if (totalSupply() + amount > maxTotalSupply) {
        revert TotalSupplyExceedsMaxAllowedAmount();
      }
    }

    super._mint(to, amount);
  }

  /**
   * @notice method which allows to burn a predefined amount of tokens
   * @param amount - the amount of tokens to burn
   * @dev only callable by the owner
   * @dev only callable if the token is not paused
   * @dev only callable if the token supports burning
   */
  function burn(uint256 amount) public override onlyOwner whenNotPaused {
    if (!isBurnable()) {
      revert BurningNotEnabled();
    }
    super.burn(amount);
  }

  /**
   * @notice method which allows to burn a predefined amount of tokens from a predefined address
   * @param from - the address to burn the tokens from
   * @param amount - the amount of tokens to burn
   * @dev only callable by the owner
   * @dev only callable if the token is not paused
   * @dev only callable if the token supports burning
   */
  function burnFrom(
    address from,
    uint256 amount
  ) public override onlyOwner whenNotPaused {
    if (!isBurnable()) {
      revert BurningNotEnabled();
    }
    super.burnFrom(from, amount);
  }

  /**
   * @notice method which allows to pause the token
   * @dev only callable by the owner
   */
  function pause() external onlyOwner {
    if (!isPausable()) {
      revert PausingNotEnabled();
    }
    _pause();
  }

  /**
   * @notice method which allows to unpause the token
   * @dev only callable by the owner
   */
  function unpause() external onlyOwner {
    if (!isPausable()) {
      revert PausingNotEnabled();
    }
    _unpause();
  }

  /**
   * @notice method which allows to removing the owner of the token
   * @dev methods which are only callable by the owner will not be callable anymore
   * @dev only callable by the owner
   * @dev only callable if the token is not paused
   */
  function renounceOwnership() public override onlyOwner whenNotPaused {
    super.renounceOwnership();
  }

  /**
   * @notice method which allows to transfer the ownership of the token
   * @param newOwner - the address of the new owner
   * @dev only callable by the owner
   * @dev only callable if the token is not paused
   */
  function transferOwnership(
    address newOwner
  ) public override onlyOwner whenNotPaused {
    super.transferOwnership(newOwner);
  }

  /**
   * @notice method which allows to update the whitelist of the token
   * @param updatedAddresses - the new set of addresses
   * @dev only callable by the owner
   * @dev only callable if the token supports whitelisting
   */
  function updateWhitelist(
    address[] calldata updatedAddresses
  ) external onlyOwner whenNotPaused {
    if (!isWhitelistEnabled()) {
      revert WhitelistNotEnabled();
    }
    _clearWhitelist();
    _addManyToWhitelist(updatedAddresses);
    whitelistedAddresses = updatedAddresses;
    emit UsersWhitelisted(updatedAddresses);
  }

  /**
   * @notice method which allows for adding a new set of addresses to the whitelist
   * @param addresses - the addresses to add to the whitelist
   * @dev called internally by the contract
   * @dev only callable if any of the addresses are not already whitelisted
   */
  function _addManyToWhitelist(address[] calldata addresses) private {
    for (uint256 i; i < addresses.length; ) {
      LibCommon.validateAddress(addresses[i]);
      if (configProps._isBlacklistEnabled && _isBlacklisted[addresses[i]]) {
        revert CannotWhitelistBlacklistedAddr(addresses[i]);
      }
      whitelist[addresses[i]] = true;
      unchecked {
        ++i;
      }
    }
  }

  /**
   * @notice method which allows for removing a set of addresses from the whitelist
   */
  function _clearWhitelist() private {
    unchecked {
      address[] memory addresses = whitelistedAddresses;
      for (uint256 i; i < addresses.length; i++) {
        delete whitelist[addresses[i]];
      }
    }
  }

  /**
   * @notice method which returns the amount of tokens to be taxed during a transfer
   * @param sender - the address of the originating account
   * @param amount - the total amount of tokens sent in the transfer
   * @dev if the tax address is the same as the originating account performing the transfer, no tax is applied
   */
  function _taxAmount(
    address sender,
    uint256 amount
  ) internal view returns (uint256 taxAmount) {
    taxAmount = 0;
    if (taxBPS != 0 && sender != taxAddress) {
      taxAmount = (amount * taxBPS) / MAX_BPS_AMOUNT;
    }
  }

  /**
   * @notice method which returns the amount of tokens to be burned during a transfer
   * @param amount - the total amount of tokens sent in the transfer
   */
  function _deflationAmount(
    uint256 amount
  ) internal view returns (uint256 deflationAmount) {
    deflationAmount = 0;
    if (deflationBPS != 0) {
      deflationAmount = (amount * deflationBPS) / MAX_BPS_AMOUNT;
    }
  }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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);
}

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// 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 8 of 10 : ERC20Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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.
 *
 * IMPORTANT: This contract does not include public pause and unpause functions. In
 * addition to inheriting this contract, you must define both functions, invoking the
 * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
 * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
 * make the contract unpausable.
 */
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");
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        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());
    }
}

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

library LibCommon {
  /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
  /*                       CUSTOM ERRORS                        */
  /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

  /// @dev The ETH transfer has failed.
  error ETHTransferFailed();

  /// @dev The address is the zero address.
  error ZeroAddress();

  /// @notice raised when an ERC20 transfer fails
  error TransferFailed();

  /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
  /*                       ETH OPERATIONS                       */
  /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

  /// @notice Taken from Solady (https://github.com/vectorized/solady/blob/main/src/utils/SafeTransferLib.sol)
  /// @dev Sends `amount` (in wei) ETH to `to`.
  /// Reverts upon failure.
  function safeTransferETH(address to, uint256 amount) internal {
    // solhint-disable-next-line no-inline-assembly
    assembly {
      // Transfer the ETH and check if it succeeded or not.
      if iszero(call(gas(), to, amount, 0, 0, 0, 0)) {
        // Store the function selector of `ETHTransferFailed()`.
        // bytes4(keccak256(bytes("ETHTransferFailed()"))) = 0xb12d13eb
        mstore(0x00, 0xb12d13eb)
        // Revert with (offset, size).
        revert(0x1c, 0x04)
      }
    }
  }

  /// @notice Validates that the address is not the zero address using assembly.
  /// @dev Reverts if the address is the zero address.
  function validateAddress(address addr) internal pure {
    // solhint-disable-next-line no-inline-assembly
    assembly {
      if iszero(shl(96, addr)) {
        // Store the function selector of `ZeroAddress()`.
        // bytes4(keccak256(bytes("ZeroAddress()"))) = 0xd92e233d
        mstore(0x00, 0xd92e233d)
        // Revert with (offset, size).
        revert(0x1c, 0x04)
      }
    }
  }

  /// @notice Helper function to transfer ERC20 tokens without the need for SafeERC20.
  /// @dev Reverts if the ERC20 transfer fails.
  /// @param tokenAddress The address of the ERC20 token.
  /// @param from The address to transfer the tokens from.
  /// @param to The address to transfer the tokens to.
  /// @param amount The amount of tokens to transfer.
  function safeTransferFrom(
    address tokenAddress,
    address from,
    address to,
    uint256 amount
  ) internal returns (bool) {
    // solhint-disable-next-line avoid-low-level-calls
    (bool success, bytes memory data) = tokenAddress.call(
      abi.encodeWithSignature(
        "transferFrom(address,address,uint256)",
        from,
        to,
        amount
      )
    );
    if (!success) {
      if (data.length != 0) {
        // bubble up error
        // solhint-disable-next-line no-inline-assembly
        assembly {
          let returndata_size := mload(data)
          revert(add(32, data), returndata_size)
        }
      } else {
        revert TransferFailed();
      }
    }
    return true;
  }

  /// @notice Helper function to transfer ERC20 tokens without the need for SafeERC20.
  /// @dev Reverts if the ERC20 transfer fails.
  /// @param tokenAddress The address of the ERC20 token.
  /// @param to The address to transfer the tokens to.
  /// @param amount The amount of tokens to transfer.
  function safeTransfer(
    address tokenAddress,
    address to,
    uint256 amount
  ) internal returns (bool) {
    // solhint-disable-next-line avoid-low-level-calls
    (bool success, bytes memory data) = tokenAddress.call(
      abi.encodeWithSignature("transfer(address,uint256)", to, amount)
    );
    if (!success) {
      if (data.length != 0) {
        // bubble up error
        // solhint-disable-next-line no-inline-assembly
        assembly {
          let returndata_size := mload(data)
          revert(add(32, data), returndata_size)
        }
      } else {
        revert TransferFailed();
      }
    }
    return true;
  }
}

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

Contract Security Audit

Contract ABI

API
[{"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":"_isMaxSupplySet","type":"bool"},{"internalType":"bool","name":"_isMaxAmountOfTokensSet","type":"bool"},{"internalType":"bool","name":"_isForceTransferAllowed","type":"bool"},{"internalType":"bool","name":"_isTaxable","type":"bool"},{"internalType":"bool","name":"_isDeflationary","type":"bool"}],"internalType":"struct BitbondTokenToolAssetToken.ERC20ConfigProps","name":"customConfigProps","type":"tuple"},{"internalType":"string","name":"newDocumentUri","type":"string"},{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"uint256[2]","name":"bpsParams","type":"uint256[2]"},{"internalType":"uint256[2]","name":"amountParams","type":"uint256[2]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"AddrAlreadyBlacklisted","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"AddrAlreadyUnblacklisted","type":"error"},{"inputs":[],"name":"BlacklistNotEnabled","type":"error"},{"inputs":[],"name":"BurningNotEnabled","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"CannotBlacklistWhitelistedAddr","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"CannotWhitelistBlacklistedAddr","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"DestBalanceExceedsMaxAllowed","type":"error"},{"inputs":[],"name":"DocumentUriNotAllowed","type":"error"},{"inputs":[{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"InvalidDecimals","type":"error"},{"inputs":[{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"InvalidDeflationBPS","type":"error"},{"inputs":[],"name":"InvalidMaxSupplyConfig","type":"error"},{"inputs":[{"internalType":"uint256","name":"maxTokenAmount","type":"uint256"}],"name":"InvalidMaxTokenAmount","type":"error"},{"inputs":[{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"InvalidTaxBPS","type":"error"},{"inputs":[],"name":"MaxTokenAmountNotAllowed","type":"error"},{"inputs":[],"name":"MaxTokenAmountPerAddrLtPrevious","type":"error"},{"inputs":[],"name":"MintingNotEnabled","type":"error"},{"inputs":[],"name":"PausingNotEnabled","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"RecipientBlacklisted","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"RecipientNotWhitelisted","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"SenderBlacklisted","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"SenderNotWhitelisted","type":"error"},{"inputs":[],"name":"TokenIsNotDeflationary","type":"error"},{"inputs":[],"name":"TokenIsNotTaxable","type":"error"},{"inputs":[],"name":"TotalSupplyExceedsMaxAllowedAmount","type":"error"},{"inputs":[],"name":"WhitelistNotEnabled","type":"error"},{"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":"uint256","name":"_deflationBPS","type":"uint256"}],"name":"DeflationConfigSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newDocUri","type":"string"}],"name":"DocumentUriSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxTokenAmount","type":"uint256"}],"name":"MaxTokenAmountPerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_taxAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"_taxBPS","type":"uint256"}],"name":"TaxConfigSet","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":true,"internalType":"address","name":"addr","type":"address"}],"name":"UserBlacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"UserUnBlacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"updatedAddresses","type":"address[]"}],"name":"UsersWhitelisted","type":"event"},{"inputs":[],"name":"CONTRACT_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","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":"from","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":"deflationBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"isDeflationary","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":"isMaxSupplySet","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":"isTaxable","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":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"addr","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deflationBPS","type":"uint256"}],"name":"setDeflationConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newDocumentUri","type":"string"}],"name":"setDocumentUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTokenAmount","type":"uint256"}],"name":"setMaxTokenAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"uint256","name":"_taxBPS","type":"uint256"}],"name":"setTaxConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"updatedAddresses","type":"address[]"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6101006040523480156200001257600080fd5b50604051620066ae380380620066ae83398181016040528101906200003891906200101a565b898981600390816200004b9190620013b0565b5080600490816200005d9190620013b0565b5050506000600560006101000a81548160ff0219169083151502179055506200009b6200008f6200057760201b60201c565b6200057f60201b60201c565b8460e00151156200012557600081600060028110620000bf57620000be62001497565b5b602002015103620001245780600060028110620000e157620000e062001497565b5b60200201516040517f64824b8d0000000000000000000000000000000000000000000000000000000081526004016200011b9190620014d7565b60405180910390fd5b5b60128760ff1611156200017157866040517fca95039100000000000000000000000000000000000000000000000000000000815260040162000168919062001505565b60405180910390fd5b600087600a620001829190620016a5565b896200018f9190620016f6565b90508560c001518015620001cb575085600001511580620001ca575081600160028110620001c257620001c162001497565b5b602002015181115b5b1562000203576040517fb51a848200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200021586846200064560201b60201c565b6200022b876200076360201b620028581760201c565b62000241846200076360201b620028581760201c565b8260006002811062000258576200025762001497565b5b6020020151600e81905550826001600281106200027a576200027962001497565b5b6020020151600f8190555083600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550886080818152505081600060028110620002e557620002e462001497565b5b602002015160a081815250508460099081620003029190620013b0565b508673ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508760ff1660e08160ff168152505085600c60008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff02191690831515021790555060608201518160000160036101000a81548160ff02191690831515021790555060808201518160000160046101000a81548160ff02191690831515021790555060a08201518160000160056101000a81548160ff02191690831515021790555060c08201518160000160066101000a81548160ff02191690831515021790555060e08201518160000160076101000a81548160ff0219169083151502179055506101008201518160000160086101000a81548160ff0219169083151502179055506101208201518160000160096101000a81548160ff02191690831515021790555061014082015181600001600a6101000a81548160ff02191690831515021790555090505084600a9081620004bf9190620013b0565b5081600060028110620004d757620004d662001497565b5b6020020151600b8190555081600160028110620004f957620004f862001497565b5b60200201516010819055506000891462000520576200051f87826200077d60201b60201c565b5b3373ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161462000566576200056587620008ea60201b60201c565b5b505050505050505050505062001a13565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b81610120015115620006d257611388816000600281106200066b576200066a62001497565b5b60200201511115620006d157806000600281106200068e576200068d62001497565b5b60200201516040517fcb400e96000000000000000000000000000000000000000000000000000000008152600401620006c89190620014d7565b60405180910390fd5b5b816101400151156200075f5761138881600160028110620006f857620006f762001497565b5b602002015111156200075e57806001600281106200071b576200071a62001497565b5b60200201516040517fbb746520000000000000000000000000000000000000000000000000000000008152600401620007559190620014d7565b60405180910390fd5b5b5050565b8060601b6200077a5763d92e233d6000526004601cfd5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e690620017a2565b60405180910390fd5b62000803600083836200092360201b60201c565b8060026000828254620008179190620017c4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008ca9190620014d7565b60405180910390a3620008e6600083836200094060201b60201c565b5050565b620008fa6200094560201b60201c565b6200090a620009d660201b60201c565b620009208162000a2b60201b620028711760201c565b50565b6200093b83838362000ac160201b620028f41760201c565b505050565b505050565b620009556200057760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200097b62000b3160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009cb906200184f565b60405180910390fd5b565b620009e662000b5b60201b60201c565b1562000a29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a2090620018c1565b60405180910390fd5b565b62000a3b6200094560201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000aad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aa49062001959565b60405180910390fd5b62000abe816200057f60201b60201c565b50565b62000ad983838362000b7260201b6200294c1760201c565b62000ae962000b5b60201b60201c565b1562000b2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b2390620019f1565b60405180910390fd5b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560009054906101000a900460ff16905090565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000be08262000b95565b810181811067ffffffffffffffff8211171562000c025762000c0162000ba6565b5b80604052505050565b600062000c1762000b77565b905062000c25828262000bd5565b919050565b600067ffffffffffffffff82111562000c485762000c4762000ba6565b5b62000c538262000b95565b9050602081019050919050565b60005b8381101562000c8057808201518184015260208101905062000c63565b60008484015250505050565b600062000ca362000c9d8462000c2a565b62000c0b565b90508281526020810184848401111562000cc25762000cc162000b90565b5b62000ccf84828562000c60565b509392505050565b600082601f83011262000cef5762000cee62000b8b565b5b815162000d0184826020860162000c8c565b91505092915050565b6000819050919050565b62000d1f8162000d0a565b811462000d2b57600080fd5b50565b60008151905062000d3f8162000d14565b92915050565b600060ff82169050919050565b62000d5d8162000d45565b811462000d6957600080fd5b50565b60008151905062000d7d8162000d52565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000db08262000d83565b9050919050565b62000dc28162000da3565b811462000dce57600080fd5b50565b60008151905062000de28162000db7565b92915050565b600080fd5b60008115159050919050565b62000e048162000ded565b811462000e1057600080fd5b50565b60008151905062000e248162000df9565b92915050565b6000610160828403121562000e445762000e4362000de8565b5b62000e5161016062000c0b565b9050600062000e638482850162000e13565b600083015250602062000e798482850162000e13565b602083015250604062000e8f8482850162000e13565b604083015250606062000ea58482850162000e13565b606083015250608062000ebb8482850162000e13565b60808301525060a062000ed18482850162000e13565b60a08301525060c062000ee78482850162000e13565b60c08301525060e062000efd8482850162000e13565b60e08301525061010062000f148482850162000e13565b6101008301525061012062000f2c8482850162000e13565b6101208301525061014062000f448482850162000e13565b6101408301525092915050565b600067ffffffffffffffff82111562000f6f5762000f6e62000ba6565b5b602082029050919050565b600080fd5b600062000f9662000f908462000f51565b62000c0b565b9050806020840283018581111562000fb35762000fb262000f7a565b5b835b8181101562000fe0578062000fcb888262000d2e565b84526020840193505060208101905062000fb5565b5050509392505050565b600082601f83011262001002576200100162000b8b565b5b60026200101184828562000f7f565b91505092915050565b6000806000806000806000806000806102c08b8d03121562001041576200104062000b81565b5b60008b015167ffffffffffffffff81111562001062576200106162000b86565b5b620010708d828e0162000cd7565b9a505060208b015167ffffffffffffffff81111562001094576200109362000b86565b5b620010a28d828e0162000cd7565b9950506040620010b58d828e0162000d2e565b9850506060620010c88d828e0162000d6c565b9750506080620010db8d828e0162000dd1565b96505060a0620010ee8d828e0162000e2a565b9550506102008b015167ffffffffffffffff81111562001113576200111262000b86565b5b620011218d828e0162000cd7565b945050610220620011358d828e0162000dd1565b935050610240620011498d828e0162000fea565b9250506102806200115d8d828e0162000fea565b9150509295989b9194979a5092959850565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011c257607f821691505b602082108103620011d857620011d76200117a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620012427fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001203565b6200124e868362001203565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620012916200128b620012858462000d0a565b62001266565b62000d0a565b9050919050565b6000819050919050565b620012ad8362001270565b620012c5620012bc8262001298565b84845462001210565b825550505050565b600090565b620012dc620012cd565b620012e9818484620012a2565b505050565b5b81811015620013115762001305600082620012d2565b600181019050620012ef565b5050565b601f82111562001360576200132a81620011de565b6200133584620011f3565b8101602085101562001345578190505b6200135d6200135485620011f3565b830182620012ee565b50505b505050565b600082821c905092915050565b6000620013856000198460080262001365565b1980831691505092915050565b6000620013a0838362001372565b9150826002028217905092915050565b620013bb826200116f565b67ffffffffffffffff811115620013d757620013d662000ba6565b5b620013e38254620011a9565b620013f082828562001315565b600060209050601f83116001811462001428576000841562001413578287015190505b6200141f858262001392565b8655506200148f565b601f1984166200143886620011de565b60005b8281101562001462578489015182556001820191506020850194506020810190506200143b565b868310156200148257848901516200147e601f89168262001372565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b620014d18162000d0a565b82525050565b6000602082019050620014ee6000830184620014c6565b92915050565b620014ff8162000d45565b82525050565b60006020820190506200151c6000830184620014f4565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620015b05780860481111562001588576200158762001522565b5b6001851615620015985780820291505b8081029050620015a88562001551565b945062001568565b94509492505050565b600082620015cb57600190506200169e565b81620015db57600090506200169e565b8160018114620015f45760028114620015ff5762001635565b60019150506200169e565b60ff84111562001614576200161362001522565b5b8360020a9150848211156200162e576200162d62001522565b5b506200169e565b5060208310610133831016604e8410600b84101617156200166f5782820a90508381111562001669576200166862001522565b5b6200169e565b6200167e84848460016200155e565b9250905081840481111562001698576200169762001522565b5b81810290505b9392505050565b6000620016b28262000d0a565b9150620016bf8362000d45565b9250620016ee7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620015b9565b905092915050565b6000620017038262000d0a565b9150620017108362000d0a565b9250828202620017208162000d0a565b915082820484148315176200173a576200173962001522565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200178a601f8362001741565b9150620017978262001752565b602082019050919050565b60006020820190508181036000830152620017bd816200177b565b9050919050565b6000620017d18262000d0a565b9150620017de8362000d0a565b9250828201905080821115620017f957620017f862001522565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200183760208362001741565b91506200184482620017ff565b602082019050919050565b600060208201905081810360008301526200186a8162001828565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620018a960108362001741565b9150620018b68262001871565b602082019050919050565b60006020820190508181036000830152620018dc816200189a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006200194160268362001741565b91506200194e82620018e3565b604082019050919050565b60006020820190508181036000830152620019748162001932565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6000620019d9602a8362001741565b9150620019e6826200197b565b604082019050919050565b6000602082019050818103600083015262001a0c81620019ca565b9050919050565b60805160a05160c05160e051614c6162001a4d60003960006111fe01526000611c8601526000611d90015260006112d30152614c616000f3fe608060405234801561001057600080fd5b50600436106103425760003560e01c8063715018a6116101b8578063a476df6111610104578063d8f67851116100a2578063f19c4e3b1161007c578063f19c4e3b14610977578063f2fde38b14610993578063f820f567146109af578063ffa1ad74146109cd57610342565b8063d8f678511461090d578063dd62ed3e14610929578063de0060ca1461095957610342565b8063b7bda68f116100de578063b7bda68f14610883578063ba4e5c49146108a1578063bfcf7355146108d1578063d48e4127146108ef57610342565b8063a476df6114610819578063a9059cbb14610835578063a9d866851461086557610342565b80638dac7191116101715780639b19251a1161014b5780639b19251a1461077d578063a09a1601146107ad578063a32f6976146107cb578063a457c2d7146107e957610342565b80638dac7191146107235780638e8c10a21461074157806395d89b411461075f57610342565b8063715018a61461069957806379cc6790146106a35780638456cb59146106bf578063878dd332146106c9578063883356d9146106e75780638da5cb5b1461070557610342565b80633f4ba83a11610292578063542e966711610230578063614d08f81161020a578063614d08f81461060f5780636c5adaae1461062d5780636d0280271461064b57806370a082311461066957610342565b8063542e9667146105b55780635a3990ce146105d35780635c975abb146105f157610342565b806346b45af71161026c57806346b45af7146105415780634838d1651461055f5780634ac0bc321461057b578063537df3b61461059957610342565b80633f4ba83a146104ff57806340c10f191461050957806342966c681461052557610342565b806323b872dd116102ff578063313ce567116102d9578063313ce567146104775780633537721414610495578063378dc3dc146104b157806339509351146104cf57610342565b806323b872dd1461040b5780632ab4d0521461043b5780632fa782eb1461045957610342565b806302252c4d14610347578063044ab74e1461036357806306fdde0314610381578063095ea7b31461039f57806318160ddd146103cf578063184d69ab146103ed575b600080fd5b610361600480360381019061035c9190613929565b6109eb565b005b61036b610ab5565b60405161037891906139e6565b60405180910390f35b610389610b43565b60405161039691906139e6565b60405180910390f35b6103b960048036038101906103b49190613a66565b610bd5565b6040516103c69190613ac1565b60405180910390f35b6103d7610bf8565b6040516103e49190613aeb565b60405180910390f35b6103f5610c02565b6040516104029190613ac1565b60405180910390f35b61042560048036038101906104209190613b06565b610c1c565b6040516104329190613ac1565b60405180910390f35b6104436111ee565b6040516104509190613aeb565b60405180910390f35b6104616111f4565b60405161046e9190613aeb565b60405180910390f35b61047f6111fa565b60405161048c9190613b75565b60405180910390f35b6104af60048036038101906104aa9190613bf5565b611222565b005b6104b96112d1565b6040516104c69190613aeb565b60405180910390f35b6104e960048036038101906104e49190613a66565b6112f5565b6040516104f69190613ac1565b60405180910390f35b61050761132c565b005b610523600480360381019061051e9190613a66565b61137c565b005b61053f600480360381019061053a9190613929565b6115d5565b005b61054961162f565b6040516105569190613ac1565b60405180910390f35b61057960048036038101906105749190613c42565b611649565b005b61058361186c565b6040516105909190613ac1565b60405180910390f35b6105b360048036038101906105ae9190613c42565b611886565b005b6105bd611a00565b6040516105ca9190613aeb565b60405180910390f35b6105db611a06565b6040516105e89190613ac1565b60405180910390f35b6105f9611a20565b6040516106069190613ac1565b60405180910390f35b610617611a37565b60405161062491906139e6565b60405180910390f35b610635611a70565b6040516106429190613ac1565b60405180910390f35b610653611a8a565b6040516106609190613d2d565b60405180910390f35b610683600480360381019061067e9190613c42565b611b18565b6040516106909190613aeb565b60405180910390f35b6106a1611b60565b005b6106bd60048036038101906106b89190613a66565b611b7a565b005b6106c7611bd6565b005b6106d1611c26565b6040516106de9190613ac1565b60405180910390f35b6106ef611c40565b6040516106fc9190613ac1565b60405180910390f35b61070d611c5a565b60405161071a9190613d5e565b60405180910390f35b61072b611c84565b6040516107389190613d5e565b60405180910390f35b610749611ca8565b6040516107569190613ac1565b60405180910390f35b610767611cc2565b60405161077491906139e6565b60405180910390f35b61079760048036038101906107929190613c42565b611d54565b6040516107a49190613ac1565b60405180910390f35b6107b5611d74565b6040516107c29190613ac1565b60405180910390f35b6107d3611d8e565b6040516107e09190613aeb565b60405180910390f35b61080360048036038101906107fe9190613a66565b611db2565b6040516108109190613ac1565b60405180910390f35b610833600480360381019061082e9190613ea9565b611e29565b005b61084f600480360381019061084a9190613a66565b611ec1565b60405161085c9190613ac1565b60405180910390f35b61086d61242e565b60405161087a91906139e6565b60405180910390f35b61088b6124bc565b6040516108989190613d5e565b60405180910390f35b6108bb60048036038101906108b69190613929565b6124e2565b6040516108c89190613d5e565b60405180910390f35b6108d9612521565b6040516108e69190613f0b565b60405180910390f35b6108f7612548565b6040516109049190613aeb565b60405180910390f35b61092760048036038101906109229190613929565b61254e565b005b610943600480360381019061093e9190613f26565b61261a565b6040516109509190613aeb565b60405180910390f35b6109616126a1565b60405161096e9190613ac1565b60405180910390f35b610991600480360381019061098c9190613a66565b6126bb565b005b6109ad60048036038101906109a89190613c42565b6127e9565b005b6109b7612805565b6040516109c49190613ac1565b60405180910390f35b6109d561281f565b6040516109e291906139e6565b60405180910390f35b6109f3612951565b6109fb6129cf565b610a03611a06565b610a39576040517f6273340f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548111610a74576040517fa43d2d7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b819055507f2905481c6fd1a037492016c4760435a52203d82a6f34dc3de40f464c1bf42d5981604051610aaa9190613aeb565b60405180910390a150565b600a8054610ac290613f95565b80601f0160208091040260200160405190810160405280929190818152602001828054610aee90613f95565b8015610b3b5780601f10610b1057610100808354040283529160200191610b3b565b820191906000526020600020905b815481529060010190602001808311610b1e57829003601f168201915b505050505081565b606060038054610b5290613f95565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7e90613f95565b8015610bcb5780601f10610ba057610100808354040283529160200191610bcb565b820191906000526020600020905b815481529060010190602001808311610bae57829003601f168201915b5050505050905090565b600080610be0612a19565b9050610bed818585612a21565b600191505092915050565b6000600254905090565b6000600c60000160059054906101000a900460ff16905090565b6000610c266129cf565b8383610c30610c02565b15610e5957600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cc357816040517fbf3f9389000000000000000000000000000000000000000000000000000000008152600401610cba9190613d5e565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d5157806040517fab0b880c000000000000000000000000000000000000000000000000000000008152600401610d489190613d5e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610dc05750610d90611c5a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b8015610e165750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610e5857336040517fbf3f9389000000000000000000000000000000000000000000000000000000008152600401610e4f9190613d5e565b60405180910390fd5b5b610e61611c26565b1561108b57600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ef557816040517f578f3e13000000000000000000000000000000000000000000000000000000008152600401610eec9190613d5e565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f8457806040517fcb8e2bcc000000000000000000000000000000000000000000000000000000008152600401610f7b9190613d5e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610ff35750610fc3611c5a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b80156110485750600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561108a57336040517f578f3e130000000000000000000000000000000000000000000000000000000081526004016110819190613d5e565b60405180910390fd5b5b60006110978786612bea565b905060006110a486612c75565b905060008183886110b59190613ff5565b6110bf9190613ff5565b90506110c9611a06565b1561112957600b54816110db8a611b18565b6110e59190614029565b111561112857876040517ff6202a8f00000000000000000000000000000000000000000000000000000000815260040161111f9190613d5e565b60405180910390fd5b5b6000831461115f5761115e89600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612ca3565b5b60008214611172576111718983612f19565b5b61117a611a70565b80156111b857503373ffffffffffffffffffffffffffffffffffffffff166111a0611c5a565b73ffffffffffffffffffffffffffffffffffffffff16145b156111d4576111c8898983612ca3565b600195505050506111e5565b6111df8989836130e6565b95505050505b50509392505050565b60105481565b600e5481565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b61122a612951565b6112326129cf565b61123a610c02565b611270576040517f0b1b4e5500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611278613115565b6112828282613226565b818160089190611293929190613822565b507f6141feff42f24e29d1af3d91bffa3d40521e53485e9c92e358c4d946c0adbd3882826040516112c59291906140e8565b60405180910390a15050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080611300612a19565b9050611321818585611312858961261a565b61131c9190614029565b612a21565b600191505092915050565b611334612951565b61133c611d74565b611372576040517ff00085b900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61137a6133eb565b565b611384612951565b61138c6129cf565b61139461162f565b6113ca576040517f3990ac6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113d2611a06565b1561143257600b54816113e484611b18565b6113ee9190614029565b111561143157816040517ff6202a8f0000000000000000000000000000000000000000000000000000000081526004016114289190613d5e565b60405180910390fd5b5b61143a611c26565b156114cf57600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114ce57816040517fcb8e2bcc0000000000000000000000000000000000000000000000000000000081526004016114c59190613d5e565b60405180910390fd5b5b6114d7610c02565b1561156b57600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661156a57816040517fab0b880c0000000000000000000000000000000000000000000000000000000081526004016115619190613d5e565b60405180910390fd5b5b6115736126a1565b156115c75760105481611584610bf8565b61158e9190614029565b11156115c6576040517f44ea8ea500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6115d1828261344e565b5050565b6115dd612951565b6115e56129cf565b6115ed611c40565b611623576040517f6cb5913900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61162c816135a4565b50565b6000600c60000160009054906101000a900460ff16905090565b611651612951565b6116596129cf565b61166281612858565b61166a611c26565b6116a0576040517feafab70c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561172f57806040517f70b8fc840000000000000000000000000000000000000000000000000000000081526004016117269190613d5e565b60405180910390fd5b611737610c02565b801561178c5750600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156117ce57806040517febdacb5f0000000000000000000000000000000000000000000000000000000081526004016117c59190613d5e565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f7f8b7dc89dae85811a7a85800b892b5816ad5d381c856f1b56490f8fc470c9cb60405160405180910390a250565b6000600c60000160099054906101000a900460ff16905090565b61188e612951565b6118966129cf565b61189f81612858565b6118a7611c26565b6118dd576040517feafab70c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661196b57806040517f3d7c1f4a0000000000000000000000000000000000000000000000000000000081526004016119629190613d5e565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690558073ffffffffffffffffffffffffffffffffffffffff167f4ca5b343d678ca6f1f96e8c8a2115c41c2d40641fd872b928ba6f95d3648b9d160405160405180910390a250565b600f5481565b6000600c60000160079054906101000a900460ff16905090565b6000600560009054906101000a900460ff16905090565b6040518060400160405280601a81526020017f426974626f6e64546f6b656e546f6f6c4173736574546f6b656e00000000000081525081565b6000600c60000160089054906101000a900460ff16905090565b60606008805480602002602001604051908101604052809291908181526020018280548015611b0e57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611ac4575b5050505050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b68612951565b611b706129cf565b611b786135b8565b565b611b82612951565b611b8a6129cf565b611b92611c40565b611bc8576040517f6cb5913900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bd282826135cc565b5050565b611bde612951565b611be6611d74565b611c1c576040517ff00085b900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c246135ec565b565b6000600c60000160039054906101000a900460ff16905090565b6000600c60000160019054906101000a900460ff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600c600001600a9054906101000a900460ff16905090565b606060048054611cd190613f95565b80601f0160208091040260200160405190810160405280929190818152602001828054611cfd90613f95565b8015611d4a5780601f10611d1f57610100808354040283529160200191611d4a565b820191906000526020600020905b815481529060010190602001808311611d2d57829003601f168201915b5050505050905090565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600c60000160029054906101000a900460ff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080611dbd612a19565b90506000611dcb828661261a565b905083811015611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e079061417e565b60405180910390fd5b611e1d8286868403612a21565b60019250505092915050565b611e31612951565b611e396129cf565b611e41612805565b611e77576040517f70a43fce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a9081611e86919061434a565b507f4456a0b562609d67398ddb488f136db285cd3c92343e0a7ba684925669237ade81604051611eb691906139e6565b60405180910390a150565b6000611ecb6129cf565b3383611ed5610c02565b156120fe57600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f6857816040517fbf3f9389000000000000000000000000000000000000000000000000000000008152600401611f5f9190613d5e565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ff657806040517fab0b880c000000000000000000000000000000000000000000000000000000008152600401611fed9190613d5e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156120655750612035611c5a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b80156120bb5750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120fd57336040517fbf3f93890000000000000000000000000000000000000000000000000000000081526004016120f49190613d5e565b60405180910390fd5b5b612106611c26565b1561233057600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561219a57816040517f578f3e130000000000000000000000000000000000000000000000000000000081526004016121919190613d5e565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561222957806040517fcb8e2bcc0000000000000000000000000000000000000000000000000000000081526004016122209190613d5e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156122985750612268611c5a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b80156122ed5750600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561232f57336040517f578f3e130000000000000000000000000000000000000000000000000000000081526004016123269190613d5e565b60405180910390fd5b5b600061233c3386612bea565b9050600061234986612c75565b9050600081838861235a9190613ff5565b6123649190613ff5565b905061236e611a06565b156123ce57600b54816123808a611b18565b61238a9190614029565b11156123cd57876040517ff6202a8f0000000000000000000000000000000000000000000000000000000081526004016123c49190613d5e565b60405180910390fd5b5b600083146124045761240333600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612ca3565b5b60008214612417576124163383612f19565b5b612421888261364f565b9550505050505092915050565b6009805461243b90613f95565b80601f016020809104026020016040519081016040528092919081815260200182805461246790613f95565b80156124b45780601f10612489576101008083540402835291602001916124b4565b820191906000526020600020905b81548152906001019060200180831161249757829003601f168201915b505050505081565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600881815481106124f257600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f24ed082a170bd12924328c135e7b42b89c4e2a1de12e18c0e5b356d918ac9bed60001b81565b600b5481565b612556612951565b61255e6129cf565b612566611ca8565b61259c576040517fcd9e529800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113888111156125e357806040517fbb7465200000000000000000000000000000000000000000000000000000000081526004016125da9190613aeb565b60405180910390fd5b80600f81905550807fc1ff65ee907dc079b64ed9913d53f4bd593bd6ebd9b2a2708db2916d49e17ec360405160405180910390a250565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600c60000160069054906101000a900460ff16905090565b6126c3612951565b6126cb6129cf565b6126d361186c565b612709576040517fc8a478a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61138881111561275057806040517fcb400e960000000000000000000000000000000000000000000000000000000081526004016127479190613aeb565b60405180910390fd5b61275982612858565b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e81905550808273ffffffffffffffffffffffffffffffffffffffff167facc44e32fd5ca4240f6dbe6e8cf4eb49349c17c5ce5f80f1919a9c97b50d398a60405160405180910390a35050565b6127f1612951565b6127f96129cf565b61280281612871565b50565b6000600c60000160049054906101000a900460ff16905090565b6040518060400160405280600c81526020017f73656375726974795f765f32000000000000000000000000000000000000000081525081565b8060601b61286e5763d92e233d6000526004601cfd5b50565b612879612951565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128df9061448e565b60405180910390fd5b6128f181613672565b50565b6128ff83838361294c565b612907611a20565b15612947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293e90614520565b60405180910390fd5b505050565b505050565b612959612a19565b73ffffffffffffffffffffffffffffffffffffffff16612977611c5a565b73ffffffffffffffffffffffffffffffffffffffff16146129cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c49061458c565b60405180910390fd5b565b6129d7611a20565b15612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e906145f8565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a879061468a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af69061471c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612bdd9190613aeb565b60405180910390a3505050565b600080600e5414158015612c4c5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15612c6f57612710600e5483612c62919061473c565b612c6c91906147ad565b90505b92915050565b600080600f5414612c9e57612710600f5483612c91919061473c565b612c9b91906147ad565b90505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0990614850565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d78906148e2565b60405180910390fd5b612d8c838383613738565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0990614974565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f009190613aeb565b60405180910390a3612f13848484613748565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7f90614a06565b60405180910390fd5b612f9482600083613738565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561301a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301190614a98565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130cd9190613aeb565b60405180910390a36130e183600084613748565b505050565b6000806130f1612a19565b90506130fe85828561374d565b613109858585612ca3565b60019150509392505050565b6000600880548060200260200160405190810160405280929190818152602001828054801561319957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161314f575b5050505050905060005b815181101561322257600760008383815181106131c3576131c2614ab8565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806001019150506131a3565b5050565b60005b828290508110156133e65761326483838381811061324a57613249614ab8565b5b905060200201602081019061325f9190613c42565b612858565b600c60000160039054906101000a900460ff1680156132f357506006600084848481811061329557613294614ab8565b5b90506020020160208101906132aa9190613c42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561335c5782828281811061330b5761330a614ab8565b5b90506020020160208101906133209190613c42565b6040517f2cf5f7dd0000000000000000000000000000000000000000000000000000000081526004016133539190613d5e565b60405180910390fd5b60016007600085858581811061337557613374614ab8565b5b905060200201602081019061338a9190613c42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050613229565b505050565b6133f36137d9565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613437612a19565b6040516134449190613d5e565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036134bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b490614b33565b60405180910390fd5b6134c960008383613738565b80600260008282546134db9190614029565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161358c9190613aeb565b60405180910390a36135a060008383613748565b5050565b6135b56135af612a19565b82612f19565b50565b6135c0612951565b6135ca6000613672565b565b6135de826135d8612a19565b8361374d565b6135e88282612f19565b5050565b6135f46129cf565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613638612a19565b6040516136459190613d5e565b60405180910390a1565b60008061365a612a19565b9050613667818585612ca3565b600191505092915050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6137438383836128f4565b505050565b505050565b6000613759848461261a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146137d357818110156137c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bc90614b9f565b60405180910390fd5b6137d28484848403612a21565b5b50505050565b6137e1611a20565b613820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161381790614c0b565b60405180910390fd5b565b8280548282559060005260206000209081019282156138b1579160200282015b828111156138b057823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613842565b5b5090506138be91906138c2565b5090565b5b808211156138db5760008160009055506001016138c3565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613906816138f3565b811461391157600080fd5b50565b600081359050613923816138fd565b92915050565b60006020828403121561393f5761393e6138e9565b5b600061394d84828501613914565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613990578082015181840152602081019050613975565b60008484015250505050565b6000601f19601f8301169050919050565b60006139b882613956565b6139c28185613961565b93506139d2818560208601613972565b6139db8161399c565b840191505092915050565b60006020820190508181036000830152613a0081846139ad565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a3382613a08565b9050919050565b613a4381613a28565b8114613a4e57600080fd5b50565b600081359050613a6081613a3a565b92915050565b60008060408385031215613a7d57613a7c6138e9565b5b6000613a8b85828601613a51565b9250506020613a9c85828601613914565b9150509250929050565b60008115159050919050565b613abb81613aa6565b82525050565b6000602082019050613ad66000830184613ab2565b92915050565b613ae5816138f3565b82525050565b6000602082019050613b006000830184613adc565b92915050565b600080600060608486031215613b1f57613b1e6138e9565b5b6000613b2d86828701613a51565b9350506020613b3e86828701613a51565b9250506040613b4f86828701613914565b9150509250925092565b600060ff82169050919050565b613b6f81613b59565b82525050565b6000602082019050613b8a6000830184613b66565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613bb557613bb4613b90565b5b8235905067ffffffffffffffff811115613bd257613bd1613b95565b5b602083019150836020820283011115613bee57613bed613b9a565b5b9250929050565b60008060208385031215613c0c57613c0b6138e9565b5b600083013567ffffffffffffffff811115613c2a57613c296138ee565b5b613c3685828601613b9f565b92509250509250929050565b600060208284031215613c5857613c576138e9565b5b6000613c6684828501613a51565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ca481613a28565b82525050565b6000613cb68383613c9b565b60208301905092915050565b6000602082019050919050565b6000613cda82613c6f565b613ce48185613c7a565b9350613cef83613c8b565b8060005b83811015613d20578151613d078882613caa565b9750613d1283613cc2565b925050600181019050613cf3565b5085935050505092915050565b60006020820190508181036000830152613d478184613ccf565b905092915050565b613d5881613a28565b82525050565b6000602082019050613d736000830184613d4f565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613db68261399c565b810181811067ffffffffffffffff82111715613dd557613dd4613d7e565b5b80604052505050565b6000613de86138df565b9050613df48282613dad565b919050565b600067ffffffffffffffff821115613e1457613e13613d7e565b5b613e1d8261399c565b9050602081019050919050565b82818337600083830152505050565b6000613e4c613e4784613df9565b613dde565b905082815260208101848484011115613e6857613e67613d79565b5b613e73848285613e2a565b509392505050565b600082601f830112613e9057613e8f613b90565b5b8135613ea0848260208601613e39565b91505092915050565b600060208284031215613ebf57613ebe6138e9565b5b600082013567ffffffffffffffff811115613edd57613edc6138ee565b5b613ee984828501613e7b565b91505092915050565b6000819050919050565b613f0581613ef2565b82525050565b6000602082019050613f206000830184613efc565b92915050565b60008060408385031215613f3d57613f3c6138e9565b5b6000613f4b85828601613a51565b9250506020613f5c85828601613a51565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fad57607f821691505b602082108103613fc057613fbf613f66565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614000826138f3565b915061400b836138f3565b925082820390508181111561402357614022613fc6565b5b92915050565b6000614034826138f3565b915061403f836138f3565b925082820190508082111561405757614056613fc6565b5b92915050565b6000819050919050565b60006140766020840184613a51565b905092915050565b6000602082019050919050565b60006140978385613c7a565b93506140a28261405d565b8060005b858110156140db576140b88284614067565b6140c28882613caa565b97506140cd8361407e565b9250506001810190506140a6565b5085925050509392505050565b6000602082019050818103600083015261410381848661408b565b90509392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614168602583613961565b91506141738261410c565b604082019050919050565b600060208201905081810360008301526141978161415b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026142007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826141c3565b61420a86836141c3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061424761424261423d846138f3565b614222565b6138f3565b9050919050565b6000819050919050565b6142618361422c565b61427561426d8261424e565b8484546141d0565b825550505050565b600090565b61428a61427d565b614295818484614258565b505050565b5b818110156142b9576142ae600082614282565b60018101905061429b565b5050565b601f8211156142fe576142cf8161419e565b6142d8846141b3565b810160208510156142e7578190505b6142fb6142f3856141b3565b83018261429a565b50505b505050565b600082821c905092915050565b600061432160001984600802614303565b1980831691505092915050565b600061433a8383614310565b9150826002028217905092915050565b61435382613956565b67ffffffffffffffff81111561436c5761436b613d7e565b5b6143768254613f95565b6143818282856142bd565b600060209050601f8311600181146143b457600084156143a2578287015190505b6143ac858261432e565b865550614414565b601f1984166143c28661419e565b60005b828110156143ea578489015182556001820191506020850194506020810190506143c5565b868310156144075784890151614403601f891682614310565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614478602683613961565b91506144838261441c565b604082019050919050565b600060208201905081810360008301526144a78161446b565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b600061450a602a83613961565b9150614515826144ae565b604082019050919050565b60006020820190508181036000830152614539816144fd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614576602083613961565b915061458182614540565b602082019050919050565b600060208201905081810360008301526145a581614569565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006145e2601083613961565b91506145ed826145ac565b602082019050919050565b60006020820190508181036000830152614611816145d5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614674602483613961565b915061467f82614618565b604082019050919050565b600060208201905081810360008301526146a381614667565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614706602283613961565b9150614711826146aa565b604082019050919050565b60006020820190508181036000830152614735816146f9565b9050919050565b6000614747826138f3565b9150614752836138f3565b9250828202614760816138f3565b9150828204841483151761477757614776613fc6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147b8826138f3565b91506147c3836138f3565b9250826147d3576147d261477e565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061483a602583613961565b9150614845826147de565b604082019050919050565b600060208201905081810360008301526148698161482d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006148cc602383613961565b91506148d782614870565b604082019050919050565b600060208201905081810360008301526148fb816148bf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061495e602683613961565b915061496982614902565b604082019050919050565b6000602082019050818103600083015261498d81614951565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006149f0602183613961565b91506149fb82614994565b604082019050919050565b60006020820190508181036000830152614a1f816149e3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a82602283613961565b9150614a8d82614a26565b604082019050919050565b60006020820190508181036000830152614ab181614a75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000614b1d601f83613961565b9150614b2882614ae7565b602082019050919050565b60006020820190508181036000830152614b4c81614b10565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614b89601d83613961565b9150614b9482614b53565b602082019050919050565b60006020820190508181036000830152614bb881614b7c565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614bf5601483613961565b9150614c0082614bbf565b602082019050919050565b60006020820190508181036000830152614c2481614be8565b905091905056fea264697066735822122054c4805c48cbab897b0ca0460e90049960c1357a22b82c4711c68ef8ea65ad4664736f6c6343000811003300000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000007a120000000000000000000000000000000000000000000000000000000000000001200000000000000000000000054b50187becd0bbcfd52ec5d538433dab044d2a800000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000054b50187becd0bbcfd52ec5d538433dab044d2a8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000115eec47f6cf7e35000000000000000000000000000000000000000000000000000000000000000000000b57726170706564204e50540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004774e505400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f777261707065642e6765746e657074756e652e6f72670000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103425760003560e01c8063715018a6116101b8578063a476df6111610104578063d8f67851116100a2578063f19c4e3b1161007c578063f19c4e3b14610977578063f2fde38b14610993578063f820f567146109af578063ffa1ad74146109cd57610342565b8063d8f678511461090d578063dd62ed3e14610929578063de0060ca1461095957610342565b8063b7bda68f116100de578063b7bda68f14610883578063ba4e5c49146108a1578063bfcf7355146108d1578063d48e4127146108ef57610342565b8063a476df6114610819578063a9059cbb14610835578063a9d866851461086557610342565b80638dac7191116101715780639b19251a1161014b5780639b19251a1461077d578063a09a1601146107ad578063a32f6976146107cb578063a457c2d7146107e957610342565b80638dac7191146107235780638e8c10a21461074157806395d89b411461075f57610342565b8063715018a61461069957806379cc6790146106a35780638456cb59146106bf578063878dd332146106c9578063883356d9146106e75780638da5cb5b1461070557610342565b80633f4ba83a11610292578063542e966711610230578063614d08f81161020a578063614d08f81461060f5780636c5adaae1461062d5780636d0280271461064b57806370a082311461066957610342565b8063542e9667146105b55780635a3990ce146105d35780635c975abb146105f157610342565b806346b45af71161026c57806346b45af7146105415780634838d1651461055f5780634ac0bc321461057b578063537df3b61461059957610342565b80633f4ba83a146104ff57806340c10f191461050957806342966c681461052557610342565b806323b872dd116102ff578063313ce567116102d9578063313ce567146104775780633537721414610495578063378dc3dc146104b157806339509351146104cf57610342565b806323b872dd1461040b5780632ab4d0521461043b5780632fa782eb1461045957610342565b806302252c4d14610347578063044ab74e1461036357806306fdde0314610381578063095ea7b31461039f57806318160ddd146103cf578063184d69ab146103ed575b600080fd5b610361600480360381019061035c9190613929565b6109eb565b005b61036b610ab5565b60405161037891906139e6565b60405180910390f35b610389610b43565b60405161039691906139e6565b60405180910390f35b6103b960048036038101906103b49190613a66565b610bd5565b6040516103c69190613ac1565b60405180910390f35b6103d7610bf8565b6040516103e49190613aeb565b60405180910390f35b6103f5610c02565b6040516104029190613ac1565b60405180910390f35b61042560048036038101906104209190613b06565b610c1c565b6040516104329190613ac1565b60405180910390f35b6104436111ee565b6040516104509190613aeb565b60405180910390f35b6104616111f4565b60405161046e9190613aeb565b60405180910390f35b61047f6111fa565b60405161048c9190613b75565b60405180910390f35b6104af60048036038101906104aa9190613bf5565b611222565b005b6104b96112d1565b6040516104c69190613aeb565b60405180910390f35b6104e960048036038101906104e49190613a66565b6112f5565b6040516104f69190613ac1565b60405180910390f35b61050761132c565b005b610523600480360381019061051e9190613a66565b61137c565b005b61053f600480360381019061053a9190613929565b6115d5565b005b61054961162f565b6040516105569190613ac1565b60405180910390f35b61057960048036038101906105749190613c42565b611649565b005b61058361186c565b6040516105909190613ac1565b60405180910390f35b6105b360048036038101906105ae9190613c42565b611886565b005b6105bd611a00565b6040516105ca9190613aeb565b60405180910390f35b6105db611a06565b6040516105e89190613ac1565b60405180910390f35b6105f9611a20565b6040516106069190613ac1565b60405180910390f35b610617611a37565b60405161062491906139e6565b60405180910390f35b610635611a70565b6040516106429190613ac1565b60405180910390f35b610653611a8a565b6040516106609190613d2d565b60405180910390f35b610683600480360381019061067e9190613c42565b611b18565b6040516106909190613aeb565b60405180910390f35b6106a1611b60565b005b6106bd60048036038101906106b89190613a66565b611b7a565b005b6106c7611bd6565b005b6106d1611c26565b6040516106de9190613ac1565b60405180910390f35b6106ef611c40565b6040516106fc9190613ac1565b60405180910390f35b61070d611c5a565b60405161071a9190613d5e565b60405180910390f35b61072b611c84565b6040516107389190613d5e565b60405180910390f35b610749611ca8565b6040516107569190613ac1565b60405180910390f35b610767611cc2565b60405161077491906139e6565b60405180910390f35b61079760048036038101906107929190613c42565b611d54565b6040516107a49190613ac1565b60405180910390f35b6107b5611d74565b6040516107c29190613ac1565b60405180910390f35b6107d3611d8e565b6040516107e09190613aeb565b60405180910390f35b61080360048036038101906107fe9190613a66565b611db2565b6040516108109190613ac1565b60405180910390f35b610833600480360381019061082e9190613ea9565b611e29565b005b61084f600480360381019061084a9190613a66565b611ec1565b60405161085c9190613ac1565b60405180910390f35b61086d61242e565b60405161087a91906139e6565b60405180910390f35b61088b6124bc565b6040516108989190613d5e565b60405180910390f35b6108bb60048036038101906108b69190613929565b6124e2565b6040516108c89190613d5e565b60405180910390f35b6108d9612521565b6040516108e69190613f0b565b60405180910390f35b6108f7612548565b6040516109049190613aeb565b60405180910390f35b61092760048036038101906109229190613929565b61254e565b005b610943600480360381019061093e9190613f26565b61261a565b6040516109509190613aeb565b60405180910390f35b6109616126a1565b60405161096e9190613ac1565b60405180910390f35b610991600480360381019061098c9190613a66565b6126bb565b005b6109ad60048036038101906109a89190613c42565b6127e9565b005b6109b7612805565b6040516109c49190613ac1565b60405180910390f35b6109d561281f565b6040516109e291906139e6565b60405180910390f35b6109f3612951565b6109fb6129cf565b610a03611a06565b610a39576040517f6273340f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548111610a74576040517fa43d2d7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b819055507f2905481c6fd1a037492016c4760435a52203d82a6f34dc3de40f464c1bf42d5981604051610aaa9190613aeb565b60405180910390a150565b600a8054610ac290613f95565b80601f0160208091040260200160405190810160405280929190818152602001828054610aee90613f95565b8015610b3b5780601f10610b1057610100808354040283529160200191610b3b565b820191906000526020600020905b815481529060010190602001808311610b1e57829003601f168201915b505050505081565b606060038054610b5290613f95565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7e90613f95565b8015610bcb5780601f10610ba057610100808354040283529160200191610bcb565b820191906000526020600020905b815481529060010190602001808311610bae57829003601f168201915b5050505050905090565b600080610be0612a19565b9050610bed818585612a21565b600191505092915050565b6000600254905090565b6000600c60000160059054906101000a900460ff16905090565b6000610c266129cf565b8383610c30610c02565b15610e5957600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cc357816040517fbf3f9389000000000000000000000000000000000000000000000000000000008152600401610cba9190613d5e565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d5157806040517fab0b880c000000000000000000000000000000000000000000000000000000008152600401610d489190613d5e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610dc05750610d90611c5a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b8015610e165750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610e5857336040517fbf3f9389000000000000000000000000000000000000000000000000000000008152600401610e4f9190613d5e565b60405180910390fd5b5b610e61611c26565b1561108b57600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ef557816040517f578f3e13000000000000000000000000000000000000000000000000000000008152600401610eec9190613d5e565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f8457806040517fcb8e2bcc000000000000000000000000000000000000000000000000000000008152600401610f7b9190613d5e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610ff35750610fc3611c5a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b80156110485750600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561108a57336040517f578f3e130000000000000000000000000000000000000000000000000000000081526004016110819190613d5e565b60405180910390fd5b5b60006110978786612bea565b905060006110a486612c75565b905060008183886110b59190613ff5565b6110bf9190613ff5565b90506110c9611a06565b1561112957600b54816110db8a611b18565b6110e59190614029565b111561112857876040517ff6202a8f00000000000000000000000000000000000000000000000000000000815260040161111f9190613d5e565b60405180910390fd5b5b6000831461115f5761115e89600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612ca3565b5b60008214611172576111718983612f19565b5b61117a611a70565b80156111b857503373ffffffffffffffffffffffffffffffffffffffff166111a0611c5a565b73ffffffffffffffffffffffffffffffffffffffff16145b156111d4576111c8898983612ca3565b600195505050506111e5565b6111df8989836130e6565b95505050505b50509392505050565b60105481565b600e5481565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b61122a612951565b6112326129cf565b61123a610c02565b611270576040517f0b1b4e5500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611278613115565b6112828282613226565b818160089190611293929190613822565b507f6141feff42f24e29d1af3d91bffa3d40521e53485e9c92e358c4d946c0adbd3882826040516112c59291906140e8565b60405180910390a15050565b7f000000000000000000000000000000000000000000000000000000000007a12081565b600080611300612a19565b9050611321818585611312858961261a565b61131c9190614029565b612a21565b600191505092915050565b611334612951565b61133c611d74565b611372576040517ff00085b900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61137a6133eb565b565b611384612951565b61138c6129cf565b61139461162f565b6113ca576040517f3990ac6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113d2611a06565b1561143257600b54816113e484611b18565b6113ee9190614029565b111561143157816040517ff6202a8f0000000000000000000000000000000000000000000000000000000081526004016114289190613d5e565b60405180910390fd5b5b61143a611c26565b156114cf57600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114ce57816040517fcb8e2bcc0000000000000000000000000000000000000000000000000000000081526004016114c59190613d5e565b60405180910390fd5b5b6114d7610c02565b1561156b57600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661156a57816040517fab0b880c0000000000000000000000000000000000000000000000000000000081526004016115619190613d5e565b60405180910390fd5b5b6115736126a1565b156115c75760105481611584610bf8565b61158e9190614029565b11156115c6576040517f44ea8ea500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6115d1828261344e565b5050565b6115dd612951565b6115e56129cf565b6115ed611c40565b611623576040517f6cb5913900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61162c816135a4565b50565b6000600c60000160009054906101000a900460ff16905090565b611651612951565b6116596129cf565b61166281612858565b61166a611c26565b6116a0576040517feafab70c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561172f57806040517f70b8fc840000000000000000000000000000000000000000000000000000000081526004016117269190613d5e565b60405180910390fd5b611737610c02565b801561178c5750600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156117ce57806040517febdacb5f0000000000000000000000000000000000000000000000000000000081526004016117c59190613d5e565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f7f8b7dc89dae85811a7a85800b892b5816ad5d381c856f1b56490f8fc470c9cb60405160405180910390a250565b6000600c60000160099054906101000a900460ff16905090565b61188e612951565b6118966129cf565b61189f81612858565b6118a7611c26565b6118dd576040517feafab70c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661196b57806040517f3d7c1f4a0000000000000000000000000000000000000000000000000000000081526004016119629190613d5e565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690558073ffffffffffffffffffffffffffffffffffffffff167f4ca5b343d678ca6f1f96e8c8a2115c41c2d40641fd872b928ba6f95d3648b9d160405160405180910390a250565b600f5481565b6000600c60000160079054906101000a900460ff16905090565b6000600560009054906101000a900460ff16905090565b6040518060400160405280601a81526020017f426974626f6e64546f6b656e546f6f6c4173736574546f6b656e00000000000081525081565b6000600c60000160089054906101000a900460ff16905090565b60606008805480602002602001604051908101604052809291908181526020018280548015611b0e57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611ac4575b5050505050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b68612951565b611b706129cf565b611b786135b8565b565b611b82612951565b611b8a6129cf565b611b92611c40565b611bc8576040517f6cb5913900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bd282826135cc565b5050565b611bde612951565b611be6611d74565b611c1c576040517ff00085b900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c246135ec565b565b6000600c60000160039054906101000a900460ff16905090565b6000600c60000160019054906101000a900460ff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f00000000000000000000000054b50187becd0bbcfd52ec5d538433dab044d2a881565b6000600c600001600a9054906101000a900460ff16905090565b606060048054611cd190613f95565b80601f0160208091040260200160405190810160405280929190818152602001828054611cfd90613f95565b8015611d4a5780601f10611d1f57610100808354040283529160200191611d4a565b820191906000526020600020905b815481529060010190602001808311611d2d57829003601f168201915b5050505050905090565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600c60000160029054906101000a900460ff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080611dbd612a19565b90506000611dcb828661261a565b905083811015611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e079061417e565b60405180910390fd5b611e1d8286868403612a21565b60019250505092915050565b611e31612951565b611e396129cf565b611e41612805565b611e77576040517f70a43fce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a9081611e86919061434a565b507f4456a0b562609d67398ddb488f136db285cd3c92343e0a7ba684925669237ade81604051611eb691906139e6565b60405180910390a150565b6000611ecb6129cf565b3383611ed5610c02565b156120fe57600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f6857816040517fbf3f9389000000000000000000000000000000000000000000000000000000008152600401611f5f9190613d5e565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ff657806040517fab0b880c000000000000000000000000000000000000000000000000000000008152600401611fed9190613d5e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156120655750612035611c5a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b80156120bb5750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120fd57336040517fbf3f93890000000000000000000000000000000000000000000000000000000081526004016120f49190613d5e565b60405180910390fd5b5b612106611c26565b1561233057600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561219a57816040517f578f3e130000000000000000000000000000000000000000000000000000000081526004016121919190613d5e565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561222957806040517fcb8e2bcc0000000000000000000000000000000000000000000000000000000081526004016122209190613d5e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156122985750612268611c5a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b80156122ed5750600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561232f57336040517f578f3e130000000000000000000000000000000000000000000000000000000081526004016123269190613d5e565b60405180910390fd5b5b600061233c3386612bea565b9050600061234986612c75565b9050600081838861235a9190613ff5565b6123649190613ff5565b905061236e611a06565b156123ce57600b54816123808a611b18565b61238a9190614029565b11156123cd57876040517ff6202a8f0000000000000000000000000000000000000000000000000000000081526004016123c49190613d5e565b60405180910390fd5b5b600083146124045761240333600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612ca3565b5b60008214612417576124163383612f19565b5b612421888261364f565b9550505050505092915050565b6009805461243b90613f95565b80601f016020809104026020016040519081016040528092919081815260200182805461246790613f95565b80156124b45780601f10612489576101008083540402835291602001916124b4565b820191906000526020600020905b81548152906001019060200180831161249757829003601f168201915b505050505081565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600881815481106124f257600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f24ed082a170bd12924328c135e7b42b89c4e2a1de12e18c0e5b356d918ac9bed60001b81565b600b5481565b612556612951565b61255e6129cf565b612566611ca8565b61259c576040517fcd9e529800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113888111156125e357806040517fbb7465200000000000000000000000000000000000000000000000000000000081526004016125da9190613aeb565b60405180910390fd5b80600f81905550807fc1ff65ee907dc079b64ed9913d53f4bd593bd6ebd9b2a2708db2916d49e17ec360405160405180910390a250565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600c60000160069054906101000a900460ff16905090565b6126c3612951565b6126cb6129cf565b6126d361186c565b612709576040517fc8a478a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61138881111561275057806040517fcb400e960000000000000000000000000000000000000000000000000000000081526004016127479190613aeb565b60405180910390fd5b61275982612858565b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e81905550808273ffffffffffffffffffffffffffffffffffffffff167facc44e32fd5ca4240f6dbe6e8cf4eb49349c17c5ce5f80f1919a9c97b50d398a60405160405180910390a35050565b6127f1612951565b6127f96129cf565b61280281612871565b50565b6000600c60000160049054906101000a900460ff16905090565b6040518060400160405280600c81526020017f73656375726974795f765f32000000000000000000000000000000000000000081525081565b8060601b61286e5763d92e233d6000526004601cfd5b50565b612879612951565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128df9061448e565b60405180910390fd5b6128f181613672565b50565b6128ff83838361294c565b612907611a20565b15612947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293e90614520565b60405180910390fd5b505050565b505050565b612959612a19565b73ffffffffffffffffffffffffffffffffffffffff16612977611c5a565b73ffffffffffffffffffffffffffffffffffffffff16146129cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c49061458c565b60405180910390fd5b565b6129d7611a20565b15612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e906145f8565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a879061468a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af69061471c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612bdd9190613aeb565b60405180910390a3505050565b600080600e5414158015612c4c5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15612c6f57612710600e5483612c62919061473c565b612c6c91906147ad565b90505b92915050565b600080600f5414612c9e57612710600f5483612c91919061473c565b612c9b91906147ad565b90505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0990614850565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d78906148e2565b60405180910390fd5b612d8c838383613738565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0990614974565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f009190613aeb565b60405180910390a3612f13848484613748565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7f90614a06565b60405180910390fd5b612f9482600083613738565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561301a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301190614a98565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130cd9190613aeb565b60405180910390a36130e183600084613748565b505050565b6000806130f1612a19565b90506130fe85828561374d565b613109858585612ca3565b60019150509392505050565b6000600880548060200260200160405190810160405280929190818152602001828054801561319957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161314f575b5050505050905060005b815181101561322257600760008383815181106131c3576131c2614ab8565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806001019150506131a3565b5050565b60005b828290508110156133e65761326483838381811061324a57613249614ab8565b5b905060200201602081019061325f9190613c42565b612858565b600c60000160039054906101000a900460ff1680156132f357506006600084848481811061329557613294614ab8565b5b90506020020160208101906132aa9190613c42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561335c5782828281811061330b5761330a614ab8565b5b90506020020160208101906133209190613c42565b6040517f2cf5f7dd0000000000000000000000000000000000000000000000000000000081526004016133539190613d5e565b60405180910390fd5b60016007600085858581811061337557613374614ab8565b5b905060200201602081019061338a9190613c42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050613229565b505050565b6133f36137d9565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613437612a19565b6040516134449190613d5e565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036134bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b490614b33565b60405180910390fd5b6134c960008383613738565b80600260008282546134db9190614029565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161358c9190613aeb565b60405180910390a36135a060008383613748565b5050565b6135b56135af612a19565b82612f19565b50565b6135c0612951565b6135ca6000613672565b565b6135de826135d8612a19565b8361374d565b6135e88282612f19565b5050565b6135f46129cf565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613638612a19565b6040516136459190613d5e565b60405180910390a1565b60008061365a612a19565b9050613667818585612ca3565b600191505092915050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6137438383836128f4565b505050565b505050565b6000613759848461261a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146137d357818110156137c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bc90614b9f565b60405180910390fd5b6137d28484848403612a21565b5b50505050565b6137e1611a20565b613820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161381790614c0b565b60405180910390fd5b565b8280548282559060005260206000209081019282156138b1579160200282015b828111156138b057823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613842565b5b5090506138be91906138c2565b5090565b5b808211156138db5760008160009055506001016138c3565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613906816138f3565b811461391157600080fd5b50565b600081359050613923816138fd565b92915050565b60006020828403121561393f5761393e6138e9565b5b600061394d84828501613914565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613990578082015181840152602081019050613975565b60008484015250505050565b6000601f19601f8301169050919050565b60006139b882613956565b6139c28185613961565b93506139d2818560208601613972565b6139db8161399c565b840191505092915050565b60006020820190508181036000830152613a0081846139ad565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a3382613a08565b9050919050565b613a4381613a28565b8114613a4e57600080fd5b50565b600081359050613a6081613a3a565b92915050565b60008060408385031215613a7d57613a7c6138e9565b5b6000613a8b85828601613a51565b9250506020613a9c85828601613914565b9150509250929050565b60008115159050919050565b613abb81613aa6565b82525050565b6000602082019050613ad66000830184613ab2565b92915050565b613ae5816138f3565b82525050565b6000602082019050613b006000830184613adc565b92915050565b600080600060608486031215613b1f57613b1e6138e9565b5b6000613b2d86828701613a51565b9350506020613b3e86828701613a51565b9250506040613b4f86828701613914565b9150509250925092565b600060ff82169050919050565b613b6f81613b59565b82525050565b6000602082019050613b8a6000830184613b66565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613bb557613bb4613b90565b5b8235905067ffffffffffffffff811115613bd257613bd1613b95565b5b602083019150836020820283011115613bee57613bed613b9a565b5b9250929050565b60008060208385031215613c0c57613c0b6138e9565b5b600083013567ffffffffffffffff811115613c2a57613c296138ee565b5b613c3685828601613b9f565b92509250509250929050565b600060208284031215613c5857613c576138e9565b5b6000613c6684828501613a51565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ca481613a28565b82525050565b6000613cb68383613c9b565b60208301905092915050565b6000602082019050919050565b6000613cda82613c6f565b613ce48185613c7a565b9350613cef83613c8b565b8060005b83811015613d20578151613d078882613caa565b9750613d1283613cc2565b925050600181019050613cf3565b5085935050505092915050565b60006020820190508181036000830152613d478184613ccf565b905092915050565b613d5881613a28565b82525050565b6000602082019050613d736000830184613d4f565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613db68261399c565b810181811067ffffffffffffffff82111715613dd557613dd4613d7e565b5b80604052505050565b6000613de86138df565b9050613df48282613dad565b919050565b600067ffffffffffffffff821115613e1457613e13613d7e565b5b613e1d8261399c565b9050602081019050919050565b82818337600083830152505050565b6000613e4c613e4784613df9565b613dde565b905082815260208101848484011115613e6857613e67613d79565b5b613e73848285613e2a565b509392505050565b600082601f830112613e9057613e8f613b90565b5b8135613ea0848260208601613e39565b91505092915050565b600060208284031215613ebf57613ebe6138e9565b5b600082013567ffffffffffffffff811115613edd57613edc6138ee565b5b613ee984828501613e7b565b91505092915050565b6000819050919050565b613f0581613ef2565b82525050565b6000602082019050613f206000830184613efc565b92915050565b60008060408385031215613f3d57613f3c6138e9565b5b6000613f4b85828601613a51565b9250506020613f5c85828601613a51565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fad57607f821691505b602082108103613fc057613fbf613f66565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614000826138f3565b915061400b836138f3565b925082820390508181111561402357614022613fc6565b5b92915050565b6000614034826138f3565b915061403f836138f3565b925082820190508082111561405757614056613fc6565b5b92915050565b6000819050919050565b60006140766020840184613a51565b905092915050565b6000602082019050919050565b60006140978385613c7a565b93506140a28261405d565b8060005b858110156140db576140b88284614067565b6140c28882613caa565b97506140cd8361407e565b9250506001810190506140a6565b5085925050509392505050565b6000602082019050818103600083015261410381848661408b565b90509392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614168602583613961565b91506141738261410c565b604082019050919050565b600060208201905081810360008301526141978161415b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026142007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826141c3565b61420a86836141c3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061424761424261423d846138f3565b614222565b6138f3565b9050919050565b6000819050919050565b6142618361422c565b61427561426d8261424e565b8484546141d0565b825550505050565b600090565b61428a61427d565b614295818484614258565b505050565b5b818110156142b9576142ae600082614282565b60018101905061429b565b5050565b601f8211156142fe576142cf8161419e565b6142d8846141b3565b810160208510156142e7578190505b6142fb6142f3856141b3565b83018261429a565b50505b505050565b600082821c905092915050565b600061432160001984600802614303565b1980831691505092915050565b600061433a8383614310565b9150826002028217905092915050565b61435382613956565b67ffffffffffffffff81111561436c5761436b613d7e565b5b6143768254613f95565b6143818282856142bd565b600060209050601f8311600181146143b457600084156143a2578287015190505b6143ac858261432e565b865550614414565b601f1984166143c28661419e565b60005b828110156143ea578489015182556001820191506020850194506020810190506143c5565b868310156144075784890151614403601f891682614310565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614478602683613961565b91506144838261441c565b604082019050919050565b600060208201905081810360008301526144a78161446b565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b600061450a602a83613961565b9150614515826144ae565b604082019050919050565b60006020820190508181036000830152614539816144fd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614576602083613961565b915061458182614540565b602082019050919050565b600060208201905081810360008301526145a581614569565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006145e2601083613961565b91506145ed826145ac565b602082019050919050565b60006020820190508181036000830152614611816145d5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614674602483613961565b915061467f82614618565b604082019050919050565b600060208201905081810360008301526146a381614667565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614706602283613961565b9150614711826146aa565b604082019050919050565b60006020820190508181036000830152614735816146f9565b9050919050565b6000614747826138f3565b9150614752836138f3565b9250828202614760816138f3565b9150828204841483151761477757614776613fc6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147b8826138f3565b91506147c3836138f3565b9250826147d3576147d261477e565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061483a602583613961565b9150614845826147de565b604082019050919050565b600060208201905081810360008301526148698161482d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006148cc602383613961565b91506148d782614870565b604082019050919050565b600060208201905081810360008301526148fb816148bf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061495e602683613961565b915061496982614902565b604082019050919050565b6000602082019050818103600083015261498d81614951565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006149f0602183613961565b91506149fb82614994565b604082019050919050565b60006020820190508181036000830152614a1f816149e3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a82602283613961565b9150614a8d82614a26565b604082019050919050565b60006020820190508181036000830152614ab181614a75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000614b1d601f83613961565b9150614b2882614ae7565b602082019050919050565b60006020820190508181036000830152614b4c81614b10565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614b89601d83613961565b9150614b9482614b53565b602082019050919050565b60006020820190508181036000830152614bb881614b7c565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614bf5601483613961565b9150614c0082614bbf565b602082019050919050565b60006020820190508181036000830152614c2481614be8565b905091905056fea264697066735822122054c4805c48cbab897b0ca0460e90049960c1357a22b82c4711c68ef8ea65ad4664736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000007a120000000000000000000000000000000000000000000000000000000000000001200000000000000000000000054b50187becd0bbcfd52ec5d538433dab044d2a800000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000054b50187becd0bbcfd52ec5d538433dab044d2a8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000115eec47f6cf7e35000000000000000000000000000000000000000000000000000000000000000000000b57726170706564204e50540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004774e505400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f777261707065642e6765746e657074756e652e6f72670000

-----Decoded View---------------
Arg [0] : name_ (string): Wrapped NPT
Arg [1] : symbol_ (string): wNPT
Arg [2] : initialSupplyToSet (uint256): 500000
Arg [3] : decimalsToSet (uint8): 18
Arg [4] : tokenOwner (address): 0x54B50187BEcD0BBCfD52EC5d538433daB044d2A8
Arg [5] : customConfigProps (tuple):
Arg [1] : _isMintable (bool): True
Arg [2] : _isBurnable (bool): True
Arg [3] : _isPausable (bool): True
Arg [4] : _isBlacklistEnabled (bool): True
Arg [5] : _isDocumentAllowed (bool): True
Arg [6] : _isWhitelistEnabled (bool): False
Arg [7] : _isMaxSupplySet (bool): True
Arg [8] : _isMaxAmountOfTokensSet (bool): False
Arg [9] : _isForceTransferAllowed (bool): False
Arg [10] : _isTaxable (bool): False
Arg [11] : _isDeflationary (bool): False

Arg [6] : newDocumentUri (string): https://wrapped.getneptune.org
Arg [7] : _taxAddress (address): 0x54B50187BEcD0BBCfD52EC5d538433daB044d2A8
Arg [8] : bpsParams (uint256[2]): 0,0
Arg [9] : amountParams (uint256[2]): 0,21000000000000000000000000

-----Encoded View---------------
28 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000002c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000300
Arg [2] : 000000000000000000000000000000000000000000000000000000000007a120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 00000000000000000000000054b50187becd0bbcfd52ec5d538433dab044d2a8
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000340
Arg [17] : 00000000000000000000000054b50187becd0bbcfd52ec5d538433dab044d2a8
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [21] : 000000000000000000000000000000000000000000115eec47f6cf7e35000000
Arg [22] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [23] : 57726170706564204e5054000000000000000000000000000000000000000000
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [25] : 774e505400000000000000000000000000000000000000000000000000000000
Arg [26] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [27] : 68747470733a2f2f777261707065642e6765746e657074756e652e6f72670000


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.