ETH Price: $3,458.20 (-0.72%)
Gas: 2 Gwei

Token

WediditJoe (WediditJoe)
 

Overview

Max Total Supply

1,958 WediditJoe

Holders

1,366

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WediditJoe
0x22d11f427ff1ae9c32d11588cca20a34fe6dda48
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
WediditJoeContract

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-16
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


pragma solidity ^0.8.0;

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable TotalToken;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // Mapping from token ID to approved address
  mapping(uint256 => address) private _tokenApprovals;

  // Mapping from owner to operator approvals
  mapping(address => mapping(address => bool)) private _operatorApprovals;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `TotalToken_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 TotalToken_
  ) {
    require(
      TotalToken_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    TotalToken = TotalToken_;
  }

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

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(TotalToken). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
  }


  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   */
  function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
  {
    return _operatorApprovals[owner][operator];
  }

  /**
   * @dev See {IERC721-transferFrom}.
   */
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public virtual override {
    _transfer(from, to, tokenId);
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    safeTransferFrom(from, to, tokenId, "");
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public virtual override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, prevOwnership.addr);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > TotalToken - 1) {
      endIndex = TotalToken - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}



pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}



pragma solidity ^0.8.0;


/**
 * @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() {
        _setOwner(_msgSender());
    }

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}




pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */



/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

pragma solidity ^0.8.0;


contract WediditJoeContract is Ownable, ERC721A, ReentrancyGuard {
    uint256 public  TotalClaimable; 
    uint256 public  TotalClaimablePerwallet;   
    uint public     MaxMintPerTx; 
    mapping(address => uint256) public MintPerWallet;
    bool public     bMintStart;
    bool public     bWLMintStart;
    uint256 public  TotalTokenNumber;
    uint256 public  saleprice;  
    address private _signer;

 constructor(
    uint256 maxBatchSize_,
    uint256 TotalToken_
  ) ERC721A("WediditJoe", "WediditJoe", maxBatchSize_, TotalToken_) {
    MaxMintPerTx = maxBatchSize_;
    TotalTokenNumber = TotalToken_; 
    bMintStart = false;  
    bWLMintStart = true;      
    saleprice =   6900000000000000;
    TotalClaimable = 5555;
    TotalClaimablePerwallet = 1;
  }

  
  function MintbyOwner(address _to,uint256 mintamount) external onlyOwner {        
    require(totalSupply() + mintamount <= TotalTokenNumber, "Can not mint more than max token");

    _safeMint(_to, mintamount);
  }

    function recoverSigner(bytes32 hash, bytes memory signature) public pure returns (address) {
        bytes32 messageDigest = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
        return ECDSA.recover(messageDigest, signature);
    }

  function Mint(uint256 mintamount,  bytes32 hash, bytes memory signature) external payable {
    uint free = MintPerWallet[msg.sender] == 0 ? 1 : 0;
    uint256 cost = saleprice*(mintamount-free);
              
    require(bMintStart || bWLMintStart, "Sale is not started");
    require(totalSupply() + mintamount <= TotalTokenNumber, "Can not mint more than max token");    
    require(mintamount > 0 && mintamount <= MaxMintPerTx, "Can not mint more than max per tx");
    require(msg.value >= cost, "Not paid enough ETH.");
    if (bWLMintStart) {
       require(recoverSigner(hash, signature) == _signer, 
            "Address is not allowlisted");
    }

    MintPerWallet[msg.sender] += mintamount;
    _safeMint(msg.sender, mintamount);
  } 


  function Mint(uint256 mintamount) external payable {
    uint free = MintPerWallet[msg.sender] == 0 ? 1 : 0;
    uint256 cost = saleprice*(mintamount-free);
              
    require(bMintStart, "Sale is not started");
    require(totalSupply() + mintamount <= TotalTokenNumber, "Can not mint more than max token");    
    require(mintamount > 0 && mintamount <= MaxMintPerTx, "Can not mint more than 20 per tx");
    require(msg.value >= cost, "Not paid enough ETH.");

    MintPerWallet[msg.sender] += mintamount;
    _safeMint(msg.sender, mintamount);
  } 

  function setSigner(address newSigner) public onlyOwner {
    _signer = newSigner;
  }

  function setMaxMintPerTx(uint _MaxMintPerTx) external onlyOwner {
    MaxMintPerTx = _MaxMintPerTx;
  }   

  function setTotalTokenNumber(uint _TotalToken) external onlyOwner {
    TotalTokenNumber = _TotalToken;
  }

  function setsaleprice(uint _saleprice) external onlyOwner {
    saleprice = _saleprice;
  }        

  function setTotalClaimablePerwallet(uint _TotalClaimablePerwallet) external onlyOwner {
    TotalClaimablePerwallet = _TotalClaimablePerwallet;
  }         

  function setTotalClaimable(uint _TotalClaimable) external onlyOwner {
    TotalClaimable = _TotalClaimable;
  } 

  function SetSalesStart() public onlyOwner {
    bMintStart = !bMintStart;
  }

  function SetWLSalesStart() public onlyOwner {
    bWLMintStart = !bWLMintStart;
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }
  
  string private _baseAPIURI;

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseAPIURI = baseURI;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return _baseAPIURI;
  }

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

  function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
    uint256 tokenCount = balanceOf(_owner);
    if (tokenCount == 0) {
        return new uint256[](0);
    } else {
        uint256[] memory result = new uint256[](tokenCount);
        uint256 index;
        for (index = 0; index < tokenCount; index++) {
            result[index] = tokenOfOwnerByIndex(_owner, index);
        }
        return result;
    }
  } 

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

 }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"TotalToken_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintamount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintamount","type":"uint256"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"mintamount","type":"uint256"}],"name":"MintbyOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SetSalesStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SetWLSalesStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TotalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalClaimablePerwallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalTokenNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bMintStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bWLMintStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleprice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TotalClaimable","type":"uint256"}],"name":"setTotalClaimable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TotalClaimablePerwallet","type":"uint256"}],"name":"setTotalClaimablePerwallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TotalToken","type":"uint256"}],"name":"setTotalTokenNumber","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleprice","type":"uint256"}],"name":"setsaleprice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600060015560006008553480156200001b57600080fd5b506040516200654e3803806200654e8339818101604052810190620000419190620003a7565b6040518060400160405280600a81526020017f576564696469744a6f65000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f576564696469744a6f65000000000000000000000000000000000000000000008152508383620000cf620000c36200021460201b60201c565b6200021c60201b60201c565b6000811162000115576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010c90620004da565b60405180910390fd5b600082116200015b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015290620004b8565b60405180910390fd5b836002908051906020019062000173929190620002e0565b5082600390805190602001906200018c929190620002e0565b508160a08181525050806080818152505050505050600160098190555081600c8190555080600f819055506000600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff0219169083151502179055506618838370f340006010819055506115b3600a819055506001600b81905550505062000596565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ee9062000517565b90600052602060002090601f0160209004810192826200031257600085556200035e565b82601f106200032d57805160ff19168380011785556200035e565b828001600101855582156200035e579182015b828111156200035d57825182559160200191906001019062000340565b5b5090506200036d919062000371565b5090565b5b808211156200038c57600081600090555060010162000372565b5090565b600081519050620003a1816200057c565b92915050565b60008060408385031215620003bb57600080fd5b6000620003cb8582860162000390565b9250506020620003de8582860162000390565b9150509250929050565b6000620003f7602783620004fc565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006200045f602e83620004fc565b91507f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008301527f6e6f6e7a65726f20737570706c790000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620004d381620003e8565b9050919050565b60006020820190508181036000830152620004f58162000450565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200053057607f821691505b602082108114156200054757620005466200054d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000587816200050d565b81146200059357600080fd5b50565b60805160a051615f7d620005d160003960008181613037015281816130600152613769015260008181612dbf0152612df30152615f7d6000f3fe6080604052600436106102725760003560e01c806357eea1101161014f57806395d89b41116100c1578063c87b56dd1161007a578063c87b56dd14610932578063d7224ba01461096f578063e985e9c51461099a578063ebfde254146109d7578063f0c0ebc614610a00578063f2fde38b14610a2957610272565b806395d89b411461083657806397aba7f9146108615780639b9695251461089e578063a22cb465146108b5578063afd75c1f146108de578063b88d4fde1461090957610272565b806370a082311161011357806370a0823114610712578063715018a61461074f578063823903a9146107665780638462151c146107915780638da5cb5b146107ce5780639231ab2a146107f957610272565b806357eea1101461062f578063616cdb1e1461065a5780636352211e146106835780636bac2cf2146106c05780636c19e783146106e957610272565b80632d20fb60116101e85780634a562e47116101ac5780634a562e47146105215780634e695f341461054c5780634f6ccce714610589578063510670d4146105c657806354870bc6146105ef57806355f804b31461060657610272565b80632d20fb60146104505780632f745c59146104795780633ccfd60b146104b657806342842e0e146104cd5780634426a263146104f657610272565b806318160ddd1161023a57806318160ddd146103615780631f4b962d1461038c578063201bc377146103b757806323b872dd146103d3578063242d4418146103fc578063288ba4c61461042757610272565b806301ffc9a71461027757806306fdde03146102b457806307883703146102df578063081812fc146102fb578063095ea7b314610338575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906144dd565b610a52565b6040516102ab91906154bb565b60405180910390f35b3480156102c057600080fd5b506102c9610b9c565b6040516102d6919061551b565b60405180910390f35b6102f960048036038101906102f49190614574565b610c2e565b005b34801561030757600080fd5b50610322600480360381019061031d9190614574565b610e41565b60405161032f9190615432565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a919061444d565b610ec6565b005b34801561036d57600080fd5b50610376610fdf565b6040516103839190615998565b60405180910390f35b34801561039857600080fd5b506103a1610fe9565b6040516103ae91906154bb565b60405180910390f35b6103d160048036038101906103cc919061459d565b610ffc565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190614347565b6112d7565b005b34801561040857600080fd5b506104116112e7565b60405161041e9190615998565b60405180910390f35b34801561043357600080fd5b5061044e6004803603810190610449919061444d565b6112ed565b005b34801561045c57600080fd5b5061047760048036038101906104729190614574565b6113ce565b005b34801561048557600080fd5b506104a0600480360381019061049b919061444d565b6114ac565b6040516104ad9190615998565b60405180910390f35b3480156104c257600080fd5b506104cb6116aa565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190614347565b61182b565b005b34801561050257600080fd5b5061050b61184b565b6040516105189190615998565b60405180910390f35b34801561052d57600080fd5b50610536611851565b6040516105439190615998565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906142e2565b611857565b6040516105809190615998565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190614574565b61186f565b6040516105bd9190615998565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e89190614574565b6118c2565b005b3480156105fb57600080fd5b50610604611948565b005b34801561061257600080fd5b5061062d6004803603810190610628919061452f565b6119f0565b005b34801561063b57600080fd5b50610644611a82565b6040516106519190615998565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190614574565b611a88565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190614574565b611b0e565b6040516106b79190615432565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190614574565b611b24565b005b3480156106f557600080fd5b50610710600480360381019061070b91906142e2565b611baa565b005b34801561071e57600080fd5b50610739600480360381019061073491906142e2565b611c6a565b6040516107469190615998565b60405180910390f35b34801561075b57600080fd5b50610764611d53565b005b34801561077257600080fd5b5061077b611ddb565b6040516107889190615998565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b391906142e2565b611de1565b6040516107c59190615499565b60405180910390f35b3480156107da57600080fd5b506107e3611f5d565b6040516107f09190615432565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190614574565b611f86565b60405161082d919061597d565b60405180910390f35b34801561084257600080fd5b5061084b611f9e565b604051610858919061551b565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190614489565b612030565b6040516108959190615432565b60405180910390f35b3480156108aa57600080fd5b506108b361206f565b005b3480156108c157600080fd5b506108dc60048036038101906108d79190614411565b612117565b005b3480156108ea57600080fd5b506108f3612298565b60405161090091906154bb565b60405180910390f35b34801561091557600080fd5b50610930600480360381019061092b9190614396565b6122ab565b005b34801561093e57600080fd5b5061095960048036038101906109549190614574565b612307565b604051610966919061551b565b60405180910390f35b34801561097b57600080fd5b506109846123ae565b6040516109919190615998565b60405180910390f35b3480156109a657600080fd5b506109c160048036038101906109bc919061430b565b6123b4565b6040516109ce91906154bb565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f99190614574565b612448565b005b348015610a0c57600080fd5b50610a276004803603810190610a229190614574565b6124ce565b005b348015610a3557600080fd5b50610a506004803603810190610a4b91906142e2565b612554565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b955750610b948261264c565b5b9050919050565b606060028054610bab90615d51565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd790615d51565b8015610c245780601f10610bf957610100808354040283529160200191610c24565b820191906000526020600020905b815481529060010190602001808311610c0757829003601f168201915b5050505050905090565b600080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610c7d576000610c80565b60015b60ff16905060008183610c939190615bf6565b601054610ca09190615b68565b9050600e60009054906101000a900460ff16610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce89061563d565b60405180910390fd5b600f5483610cfd610fdf565b610d079190615ae1565b1115610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f9061575d565b60405180910390fd5b600083118015610d5a5750600c548311155b610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d909061571d565b60405180910390fd5b80341015610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd3906157dd565b60405180910390fd5b82600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e2b9190615ae1565b92505081905550610e3c33846126b6565b505050565b6000610e4c826126d4565b610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e829061593d565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ed182611b0e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f39906157fd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f616126e2565b73ffffffffffffffffffffffffffffffffffffffff161480610f905750610f8f81610f8a6126e2565b6123b4565b5b610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc69061567d565b60405180910390fd5b610fda8383836126ea565b505050565b6000600154905090565b600e60009054906101000a900460ff1681565b600080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461104b57600061104e565b60015b60ff169050600081856110619190615bf6565b60105461106e9190615b68565b9050600e60009054906101000a900460ff16806110975750600e60019054906101000a900460ff165b6110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd9061563d565b60405180910390fd5b600f54856110e2610fdf565b6110ec9190615ae1565b111561112d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111249061575d565b60405180910390fd5b60008511801561113f5750600c548511155b61117e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111759061589d565b60405180910390fd5b803410156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b8906157dd565b60405180910390fd5b600e60019054906101000a900460ff161561127057601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166112198585612030565b73ffffffffffffffffffffffffffffffffffffffff161461126f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112669061565d565b60405180910390fd5b5b84600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112bf9190615ae1565b925050819055506112d033866126b6565b5050505050565b6112e283838361279c565b505050565b600f5481565b6112f56126e2565b73ffffffffffffffffffffffffffffffffffffffff16611313611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611369576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113609061573d565b60405180910390fd5b600f5481611375610fdf565b61137f9190615ae1565b11156113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b79061575d565b60405180910390fd5b6113ca82826126b6565b5050565b6113d66126e2565b73ffffffffffffffffffffffffffffffffffffffff166113f4611f5d565b73ffffffffffffffffffffffffffffffffffffffff161461144a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114419061573d565b60405180910390fd5b60026009541415611490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611487906158fd565b60405180910390fd5b60026009819055506114a181612d55565b600160098190555050565b60006114b783611c6a565b82106114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef9061555d565b60405180910390fd5b6000611502610fdf565b905060008060005b83811015611668576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146115fc57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561165457868414156116455781955050505050506116a4565b838061165090615d83565b9450505b50808061166090615d83565b91505061150a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b906158bd565b60405180910390fd5b92915050565b6116b26126e2565b73ffffffffffffffffffffffffffffffffffffffff166116d0611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d9061573d565b60405180910390fd5b6002600954141561176c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611763906158fd565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161179a9061541d565b60006040518083038185875af1925050503d80600081146117d7576040519150601f19603f3d011682016040523d82523d6000602084013e6117dc565b606091505b5050905080611820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118179061581d565b60405180910390fd5b506001600981905550565b611846838383604051806020016040528060008152506122ab565b505050565b600a5481565b600b5481565b600d6020528060005260406000206000915090505481565b6000611879610fdf565b82106118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b1906155dd565b60405180910390fd5b819050919050565b6118ca6126e2565b73ffffffffffffffffffffffffffffffffffffffff166118e8611f5d565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119359061573d565b60405180910390fd5b80600a8190555050565b6119506126e2565b73ffffffffffffffffffffffffffffffffffffffff1661196e611f5d565b73ffffffffffffffffffffffffffffffffffffffff16146119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061573d565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6119f86126e2565b73ffffffffffffffffffffffffffffffffffffffff16611a16611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a639061573d565b60405180910390fd5b818160129190611a7d9291906140d5565b505050565b60105481565b611a906126e2565b73ffffffffffffffffffffffffffffffffffffffff16611aae611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb9061573d565b60405180910390fd5b80600c8190555050565b6000611b1982612fe3565b600001519050919050565b611b2c6126e2565b73ffffffffffffffffffffffffffffffffffffffff16611b4a611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b979061573d565b60405180910390fd5b80600f8190555050565b611bb26126e2565b73ffffffffffffffffffffffffffffffffffffffff16611bd0611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d9061573d565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd2906156bd565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611d5b6126e2565b73ffffffffffffffffffffffffffffffffffffffff16611d79611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc69061573d565b60405180910390fd5b611dd960006131e6565b565b600c5481565b60606000611dee83611c6a565b90506000811415611e7157600067ffffffffffffffff811115611e3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611e685781602001602082028036833780820191505090505b50915050611f58565b60008167ffffffffffffffff811115611eb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611ee15781602001602082028036833780820191505090505b50905060005b82811015611f5157611ef985826114ac565b828281518110611f32577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611f4990615d83565b915050611ee7565b8193505050505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f8e61415b565b611f9782612fe3565b9050919050565b606060038054611fad90615d51565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd990615d51565b80156120265780601f10611ffb57610100808354040283529160200191612026565b820191906000526020600020905b81548152906001019060200180831161200957829003601f168201915b5050505050905090565b6000808360405160200161204491906153f7565b60405160208183030381529060405280519060200120905061206681846132aa565b91505092915050565b6120776126e2565b73ffffffffffffffffffffffffffffffffffffffff16612095611f5d565b73ffffffffffffffffffffffffffffffffffffffff16146120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e29061573d565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b61211f6126e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121849061579d565b60405180910390fd5b806007600061219a6126e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122476126e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161228c91906154bb565b60405180910390a35050565b600e60019054906101000a900460ff1681565b6122b684848461279c565b6122c2848484846132d1565b612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f89061583d565b60405180910390fd5b50505050565b6060612312826126d4565b612351576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123489061577d565b60405180910390fd5b600061235b613468565b9050600081511161237b57604051806020016040528060008152506123a6565b80612385846134fa565b6040516020016123969291906153d3565b6040516020818303038152906040525b915050919050565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124506126e2565b73ffffffffffffffffffffffffffffffffffffffff1661246e611f5d565b73ffffffffffffffffffffffffffffffffffffffff16146124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb9061573d565b60405180910390fd5b80600b8190555050565b6124d66126e2565b73ffffffffffffffffffffffffffffffffffffffff166124f4611f5d565b73ffffffffffffffffffffffffffffffffffffffff161461254a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125419061573d565b60405180910390fd5b8060108190555050565b61255c6126e2565b73ffffffffffffffffffffffffffffffffffffffff1661257a611f5d565b73ffffffffffffffffffffffffffffffffffffffff16146125d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c79061573d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612640576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126379061559d565b60405180910390fd5b612649816131e6565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126d08282604051806020016040528060008152506136a7565b5050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006127a782612fe3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127ce6126e2565b73ffffffffffffffffffffffffffffffffffffffff16148061282a57506127f36126e2565b73ffffffffffffffffffffffffffffffffffffffff1661281284610e41565b73ffffffffffffffffffffffffffffffffffffffff16145b80612846575061284582600001516128406126e2565b6123b4565b5b905080612888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287f906157bd565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f1906156fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561296a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612961906155fd565b60405180910390fd5b6129778585856001613b87565b61298760008484600001516126ea565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129f59190615bc2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612a999190615a9b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612b9f9190615ae1565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ce557612c15816126d4565b15612ce4576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d4d8686866001613b8d565b505050505050565b6000600854905060008211612d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d969061569d565b60405180910390fd5b600060018383612daf9190615ae1565b612db99190615bf6565b905060017f0000000000000000000000000000000000000000000000000000000000000000612de89190615bf6565b811115612e1f5760017f0000000000000000000000000000000000000000000000000000000000000000612e1c9190615bf6565b90505b612e28816126d4565b612e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5e906158dd565b60405180910390fd5b60008290505b818111612fca57600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612fb7576000612eea82612fe3565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612fc290615d83565b915050612e6d565b50600181612fd89190615ae1565b600881905550505050565b612feb61415b565b612ff4826126d4565b613033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302a906155bd565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106130975760017f00000000000000000000000000000000000000000000000000000000000000008461308a9190615bf6565b6130949190615ae1565b90505b60008390505b8181106131a5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613191578093505050506131e1565b50808061319d90615d27565b91505061309d565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d89061591d565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060006132b98585613b93565b915091506132c681613c16565b819250505092915050565b60006132f28473ffffffffffffffffffffffffffffffffffffffff16613f67565b1561345b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261331b6126e2565b8786866040518563ffffffff1660e01b815260040161333d949392919061544d565b602060405180830381600087803b15801561335757600080fd5b505af192505050801561338857506040513d601f19601f820116820180604052508101906133859190614506565b60015b61340b573d80600081146133b8576040519150601f19603f3d011682016040523d82523d6000602084013e6133bd565b606091505b50600081511415613403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133fa9061583d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613460565b600190505b949350505050565b60606012805461347790615d51565b80601f01602080910402602001604051908101604052809291908181526020018280546134a390615d51565b80156134f05780601f106134c5576101008083540402835291602001916134f0565b820191906000526020600020905b8154815290600101906020018083116134d357829003601f168201915b5050505050905090565b60606000821415613542576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136a2565b600082905060005b6000821461357457808061355d90615d83565b915050600a8261356d9190615b37565b915061354a565b60008167ffffffffffffffff8111156135b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135e85781602001600182028036833780820191505090505b5090505b6000851461369b576001826136019190615bf6565b9150600a856136109190615dd6565b603061361c9190615ae1565b60f81b818381518110613658577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136949190615b37565b94506135ec565b8093505050505b919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561371e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137159061587d565b60405180910390fd5b613727816126d4565b15613767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375e9061585d565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156137ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c19061595d565b60405180910390fd5b6137d76000858386613b87565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516138d49190615a9b565b6fffffffffffffffffffffffffffffffff1681526020018583602001516138fb9190615a9b565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613b6a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b0a60008884886132d1565b613b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b409061583d565b60405180910390fd5b8180613b5490615d83565b9250508080613b6290615d83565b915050613a99565b5080600181905550613b7f6000878588613b8d565b505050505050565b50505050565b50505050565b600080604183511415613bd55760008060006020860151925060408601519150606086015160001a9050613bc987828585613f7a565b94509450505050613c0f565b604083511415613c06576000806020850151915060408501519050613bfb868383614087565b935093505050613c0f565b60006002915091505b9250929050565b60006004811115613c50577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613c89577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613c9457613f64565b60016004811115613cce577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613d07577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3f9061553d565b60405180910390fd5b60026004811115613d82577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613dbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613df39061557d565b60405180910390fd5b60036004811115613e36577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613e6f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ea79061561d565b60405180910390fd5b600480811115613ee9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613f22577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f5a906156dd565b60405180910390fd5b5b50565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613fb557600060039150915061407e565b601b8560ff1614158015613fcd5750601c8560ff1614155b15613fdf57600060049150915061407e565b60006001878787876040516000815260200160405260405161400494939291906154d6565b6020604051602081039080840390855afa158015614026573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156140755760006001925092505061407e565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506140c787828885613f7a565b935093505050935093915050565b8280546140e190615d51565b90600052602060002090601f016020900481019282614103576000855561414a565b82601f1061411c57803560ff191683800117855561414a565b8280016001018555821561414a579182015b8281111561414957823582559160200191906001019061412e565b5b5090506141579190614195565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156141ae576000816000905550600101614196565b5090565b60006141c56141c0846159e4565b6159b3565b9050828152602081018484840111156141dd57600080fd5b6141e8848285615ce5565b509392505050565b6000813590506141ff81615ed4565b92915050565b60008135905061421481615eeb565b92915050565b60008135905061422981615f02565b92915050565b60008135905061423e81615f19565b92915050565b60008151905061425381615f19565b92915050565b600082601f83011261426a57600080fd5b813561427a8482602086016141b2565b91505092915050565b60008083601f84011261429557600080fd5b8235905067ffffffffffffffff8111156142ae57600080fd5b6020830191508360018202830111156142c657600080fd5b9250929050565b6000813590506142dc81615f30565b92915050565b6000602082840312156142f457600080fd5b6000614302848285016141f0565b91505092915050565b6000806040838503121561431e57600080fd5b600061432c858286016141f0565b925050602061433d858286016141f0565b9150509250929050565b60008060006060848603121561435c57600080fd5b600061436a868287016141f0565b935050602061437b868287016141f0565b925050604061438c868287016142cd565b9150509250925092565b600080600080608085870312156143ac57600080fd5b60006143ba878288016141f0565b94505060206143cb878288016141f0565b93505060406143dc878288016142cd565b925050606085013567ffffffffffffffff8111156143f957600080fd5b61440587828801614259565b91505092959194509250565b6000806040838503121561442457600080fd5b6000614432858286016141f0565b925050602061444385828601614205565b9150509250929050565b6000806040838503121561446057600080fd5b600061446e858286016141f0565b925050602061447f858286016142cd565b9150509250929050565b6000806040838503121561449c57600080fd5b60006144aa8582860161421a565b925050602083013567ffffffffffffffff8111156144c757600080fd5b6144d385828601614259565b9150509250929050565b6000602082840312156144ef57600080fd5b60006144fd8482850161422f565b91505092915050565b60006020828403121561451857600080fd5b600061452684828501614244565b91505092915050565b6000806020838503121561454257600080fd5b600083013567ffffffffffffffff81111561455c57600080fd5b61456885828601614283565b92509250509250929050565b60006020828403121561458657600080fd5b6000614594848285016142cd565b91505092915050565b6000806000606084860312156145b257600080fd5b60006145c0868287016142cd565b93505060206145d18682870161421a565b925050604084013567ffffffffffffffff8111156145ee57600080fd5b6145fa86828701614259565b9150509250925092565b60006146108383615397565b60208301905092915050565b61462581615c2a565b82525050565b61463481615c2a565b82525050565b600061464582615a24565b61464f8185615a52565b935061465a83615a14565b8060005b8381101561468b5781516146728882614604565b975061467d83615a45565b92505060018101905061465e565b5085935050505092915050565b6146a181615c3c565b82525050565b6146b081615c48565b82525050565b6146c76146c282615c48565b615dcc565b82525050565b60006146d882615a2f565b6146e28185615a63565b93506146f2818560208601615cf4565b6146fb81615ec3565b840191505092915050565b600061471182615a3a565b61471b8185615a7f565b935061472b818560208601615cf4565b61473481615ec3565b840191505092915050565b600061474a82615a3a565b6147548185615a90565b9350614764818560208601615cf4565b80840191505092915050565b600061477d601883615a7f565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b60006147bd602283615a7f565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614823601f83615a7f565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b6000614863601c83615a90565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b60006148a3602683615a7f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614909602a83615a7f565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b600061496f602383615a7f565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149d5602583615a7f565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a3b602283615a7f565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614aa1601383615a7f565b91507f53616c65206973206e6f742073746172746564000000000000000000000000006000830152602082019050919050565b6000614ae1601a83615a7f565b91507f41646472657373206973206e6f7420616c6c6f776c69737465640000000000006000830152602082019050919050565b6000614b21603983615a7f565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000614b87601883615a7f565b91507f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006000830152602082019050919050565b6000614bc7602b83615a7f565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000614c2d602283615a7f565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c93602683615a7f565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614cf9602083615a7f565b91507f43616e206e6f74206d696e74206d6f7265207468616e203230207065722074786000830152602082019050919050565b6000614d39602083615a7f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614d79602083615a7f565b91507f43616e206e6f74206d696e74206d6f7265207468616e206d617820746f6b656e6000830152602082019050919050565b6000614db9602f83615a7f565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614e1f601a83615a7f565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000614e5f603283615a7f565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000614ec5601483615a7f565b91507f4e6f74207061696420656e6f756768204554482e0000000000000000000000006000830152602082019050919050565b6000614f05602283615a7f565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f6b600083615a74565b9150600082019050919050565b6000614f85601083615a7f565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614fc5603383615a7f565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b600061502b601d83615a7f565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b600061506b602183615a7f565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006150d1602183615a7f565b91507f43616e206e6f74206d696e74206d6f7265207468616e206d617820706572207460008301527f78000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615137602e83615a7f565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b600061519d602683615a7f565b91507f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008301527f6c65616e757000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615203601f83615a7f565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000615243602f83615a7f565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006152a9602d83615a7f565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b600061530f602283615a7f565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60408201600082015161537e600085018261461c565b50602082015161539160208501826153b5565b50505050565b6153a081615cba565b82525050565b6153af81615cba565b82525050565b6153be81615cc4565b82525050565b6153cd81615cd8565b82525050565b60006153df828561473f565b91506153eb828461473f565b91508190509392505050565b600061540282614856565b915061540e82846146b6565b60208201915081905092915050565b600061542882614f5e565b9150819050919050565b6000602082019050615447600083018461462b565b92915050565b6000608082019050615462600083018761462b565b61546f602083018661462b565b61547c60408301856153a6565b818103606083015261548e81846146cd565b905095945050505050565b600060208201905081810360008301526154b3818461463a565b905092915050565b60006020820190506154d06000830184614698565b92915050565b60006080820190506154eb60008301876146a7565b6154f860208301866153c4565b61550560408301856146a7565b61551260608301846146a7565b95945050505050565b600060208201905081810360008301526155358184614706565b905092915050565b6000602082019050818103600083015261555681614770565b9050919050565b60006020820190508181036000830152615576816147b0565b9050919050565b6000602082019050818103600083015261559681614816565b9050919050565b600060208201905081810360008301526155b681614896565b9050919050565b600060208201905081810360008301526155d6816148fc565b9050919050565b600060208201905081810360008301526155f681614962565b9050919050565b60006020820190508181036000830152615616816149c8565b9050919050565b6000602082019050818103600083015261563681614a2e565b9050919050565b6000602082019050818103600083015261565681614a94565b9050919050565b6000602082019050818103600083015261567681614ad4565b9050919050565b6000602082019050818103600083015261569681614b14565b9050919050565b600060208201905081810360008301526156b681614b7a565b9050919050565b600060208201905081810360008301526156d681614bba565b9050919050565b600060208201905081810360008301526156f681614c20565b9050919050565b6000602082019050818103600083015261571681614c86565b9050919050565b6000602082019050818103600083015261573681614cec565b9050919050565b6000602082019050818103600083015261575681614d2c565b9050919050565b6000602082019050818103600083015261577681614d6c565b9050919050565b6000602082019050818103600083015261579681614dac565b9050919050565b600060208201905081810360008301526157b681614e12565b9050919050565b600060208201905081810360008301526157d681614e52565b9050919050565b600060208201905081810360008301526157f681614eb8565b9050919050565b6000602082019050818103600083015261581681614ef8565b9050919050565b6000602082019050818103600083015261583681614f78565b9050919050565b6000602082019050818103600083015261585681614fb8565b9050919050565b600060208201905081810360008301526158768161501e565b9050919050565b600060208201905081810360008301526158968161505e565b9050919050565b600060208201905081810360008301526158b6816150c4565b9050919050565b600060208201905081810360008301526158d68161512a565b9050919050565b600060208201905081810360008301526158f681615190565b9050919050565b60006020820190508181036000830152615916816151f6565b9050919050565b6000602082019050818103600083015261593681615236565b9050919050565b600060208201905081810360008301526159568161529c565b9050919050565b6000602082019050818103600083015261597681615302565b9050919050565b60006040820190506159926000830184615368565b92915050565b60006020820190506159ad60008301846153a6565b92915050565b6000604051905081810181811067ffffffffffffffff821117156159da576159d9615e94565b5b8060405250919050565b600067ffffffffffffffff8211156159ff576159fe615e94565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615aa682615c7e565b9150615ab183615c7e565b9250826fffffffffffffffffffffffffffffffff03821115615ad657615ad5615e07565b5b828201905092915050565b6000615aec82615cba565b9150615af783615cba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615b2c57615b2b615e07565b5b828201905092915050565b6000615b4282615cba565b9150615b4d83615cba565b925082615b5d57615b5c615e36565b5b828204905092915050565b6000615b7382615cba565b9150615b7e83615cba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615bb757615bb6615e07565b5b828202905092915050565b6000615bcd82615c7e565b9150615bd883615c7e565b925082821015615beb57615bea615e07565b5b828203905092915050565b6000615c0182615cba565b9150615c0c83615cba565b925082821015615c1f57615c1e615e07565b5b828203905092915050565b6000615c3582615c9a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615d12578082015181840152602081019050615cf7565b83811115615d21576000848401525b50505050565b6000615d3282615cba565b91506000821415615d4657615d45615e07565b5b600182039050919050565b60006002820490506001821680615d6957607f821691505b60208210811415615d7d57615d7c615e65565b5b50919050565b6000615d8e82615cba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615dc157615dc0615e07565b5b600182019050919050565b6000819050919050565b6000615de182615cba565b9150615dec83615cba565b925082615dfc57615dfb615e36565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615edd81615c2a565b8114615ee857600080fd5b50565b615ef481615c3c565b8114615eff57600080fd5b50565b615f0b81615c48565b8114615f1657600080fd5b50565b615f2281615c52565b8114615f2d57600080fd5b50565b615f3981615cba565b8114615f4457600080fd5b5056fea264697066735822122066013e00f9e9445a69bffff0e21c6bcd532bb5a007b77afb0916d121d00f30c164736f6c63430008000033000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000015b3

Deployed Bytecode

0x6080604052600436106102725760003560e01c806357eea1101161014f57806395d89b41116100c1578063c87b56dd1161007a578063c87b56dd14610932578063d7224ba01461096f578063e985e9c51461099a578063ebfde254146109d7578063f0c0ebc614610a00578063f2fde38b14610a2957610272565b806395d89b411461083657806397aba7f9146108615780639b9695251461089e578063a22cb465146108b5578063afd75c1f146108de578063b88d4fde1461090957610272565b806370a082311161011357806370a0823114610712578063715018a61461074f578063823903a9146107665780638462151c146107915780638da5cb5b146107ce5780639231ab2a146107f957610272565b806357eea1101461062f578063616cdb1e1461065a5780636352211e146106835780636bac2cf2146106c05780636c19e783146106e957610272565b80632d20fb60116101e85780634a562e47116101ac5780634a562e47146105215780634e695f341461054c5780634f6ccce714610589578063510670d4146105c657806354870bc6146105ef57806355f804b31461060657610272565b80632d20fb60146104505780632f745c59146104795780633ccfd60b146104b657806342842e0e146104cd5780634426a263146104f657610272565b806318160ddd1161023a57806318160ddd146103615780631f4b962d1461038c578063201bc377146103b757806323b872dd146103d3578063242d4418146103fc578063288ba4c61461042757610272565b806301ffc9a71461027757806306fdde03146102b457806307883703146102df578063081812fc146102fb578063095ea7b314610338575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906144dd565b610a52565b6040516102ab91906154bb565b60405180910390f35b3480156102c057600080fd5b506102c9610b9c565b6040516102d6919061551b565b60405180910390f35b6102f960048036038101906102f49190614574565b610c2e565b005b34801561030757600080fd5b50610322600480360381019061031d9190614574565b610e41565b60405161032f9190615432565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a919061444d565b610ec6565b005b34801561036d57600080fd5b50610376610fdf565b6040516103839190615998565b60405180910390f35b34801561039857600080fd5b506103a1610fe9565b6040516103ae91906154bb565b60405180910390f35b6103d160048036038101906103cc919061459d565b610ffc565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190614347565b6112d7565b005b34801561040857600080fd5b506104116112e7565b60405161041e9190615998565b60405180910390f35b34801561043357600080fd5b5061044e6004803603810190610449919061444d565b6112ed565b005b34801561045c57600080fd5b5061047760048036038101906104729190614574565b6113ce565b005b34801561048557600080fd5b506104a0600480360381019061049b919061444d565b6114ac565b6040516104ad9190615998565b60405180910390f35b3480156104c257600080fd5b506104cb6116aa565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190614347565b61182b565b005b34801561050257600080fd5b5061050b61184b565b6040516105189190615998565b60405180910390f35b34801561052d57600080fd5b50610536611851565b6040516105439190615998565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906142e2565b611857565b6040516105809190615998565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190614574565b61186f565b6040516105bd9190615998565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e89190614574565b6118c2565b005b3480156105fb57600080fd5b50610604611948565b005b34801561061257600080fd5b5061062d6004803603810190610628919061452f565b6119f0565b005b34801561063b57600080fd5b50610644611a82565b6040516106519190615998565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190614574565b611a88565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190614574565b611b0e565b6040516106b79190615432565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190614574565b611b24565b005b3480156106f557600080fd5b50610710600480360381019061070b91906142e2565b611baa565b005b34801561071e57600080fd5b50610739600480360381019061073491906142e2565b611c6a565b6040516107469190615998565b60405180910390f35b34801561075b57600080fd5b50610764611d53565b005b34801561077257600080fd5b5061077b611ddb565b6040516107889190615998565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b391906142e2565b611de1565b6040516107c59190615499565b60405180910390f35b3480156107da57600080fd5b506107e3611f5d565b6040516107f09190615432565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190614574565b611f86565b60405161082d919061597d565b60405180910390f35b34801561084257600080fd5b5061084b611f9e565b604051610858919061551b565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190614489565b612030565b6040516108959190615432565b60405180910390f35b3480156108aa57600080fd5b506108b361206f565b005b3480156108c157600080fd5b506108dc60048036038101906108d79190614411565b612117565b005b3480156108ea57600080fd5b506108f3612298565b60405161090091906154bb565b60405180910390f35b34801561091557600080fd5b50610930600480360381019061092b9190614396565b6122ab565b005b34801561093e57600080fd5b5061095960048036038101906109549190614574565b612307565b604051610966919061551b565b60405180910390f35b34801561097b57600080fd5b506109846123ae565b6040516109919190615998565b60405180910390f35b3480156109a657600080fd5b506109c160048036038101906109bc919061430b565b6123b4565b6040516109ce91906154bb565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f99190614574565b612448565b005b348015610a0c57600080fd5b50610a276004803603810190610a229190614574565b6124ce565b005b348015610a3557600080fd5b50610a506004803603810190610a4b91906142e2565b612554565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b955750610b948261264c565b5b9050919050565b606060028054610bab90615d51565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd790615d51565b8015610c245780601f10610bf957610100808354040283529160200191610c24565b820191906000526020600020905b815481529060010190602001808311610c0757829003601f168201915b5050505050905090565b600080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610c7d576000610c80565b60015b60ff16905060008183610c939190615bf6565b601054610ca09190615b68565b9050600e60009054906101000a900460ff16610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce89061563d565b60405180910390fd5b600f5483610cfd610fdf565b610d079190615ae1565b1115610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f9061575d565b60405180910390fd5b600083118015610d5a5750600c548311155b610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d909061571d565b60405180910390fd5b80341015610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd3906157dd565b60405180910390fd5b82600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e2b9190615ae1565b92505081905550610e3c33846126b6565b505050565b6000610e4c826126d4565b610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e829061593d565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ed182611b0e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f39906157fd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f616126e2565b73ffffffffffffffffffffffffffffffffffffffff161480610f905750610f8f81610f8a6126e2565b6123b4565b5b610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc69061567d565b60405180910390fd5b610fda8383836126ea565b505050565b6000600154905090565b600e60009054906101000a900460ff1681565b600080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461104b57600061104e565b60015b60ff169050600081856110619190615bf6565b60105461106e9190615b68565b9050600e60009054906101000a900460ff16806110975750600e60019054906101000a900460ff165b6110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd9061563d565b60405180910390fd5b600f54856110e2610fdf565b6110ec9190615ae1565b111561112d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111249061575d565b60405180910390fd5b60008511801561113f5750600c548511155b61117e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111759061589d565b60405180910390fd5b803410156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b8906157dd565b60405180910390fd5b600e60019054906101000a900460ff161561127057601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166112198585612030565b73ffffffffffffffffffffffffffffffffffffffff161461126f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112669061565d565b60405180910390fd5b5b84600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112bf9190615ae1565b925050819055506112d033866126b6565b5050505050565b6112e283838361279c565b505050565b600f5481565b6112f56126e2565b73ffffffffffffffffffffffffffffffffffffffff16611313611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611369576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113609061573d565b60405180910390fd5b600f5481611375610fdf565b61137f9190615ae1565b11156113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b79061575d565b60405180910390fd5b6113ca82826126b6565b5050565b6113d66126e2565b73ffffffffffffffffffffffffffffffffffffffff166113f4611f5d565b73ffffffffffffffffffffffffffffffffffffffff161461144a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114419061573d565b60405180910390fd5b60026009541415611490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611487906158fd565b60405180910390fd5b60026009819055506114a181612d55565b600160098190555050565b60006114b783611c6a565b82106114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef9061555d565b60405180910390fd5b6000611502610fdf565b905060008060005b83811015611668576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146115fc57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561165457868414156116455781955050505050506116a4565b838061165090615d83565b9450505b50808061166090615d83565b91505061150a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b906158bd565b60405180910390fd5b92915050565b6116b26126e2565b73ffffffffffffffffffffffffffffffffffffffff166116d0611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d9061573d565b60405180910390fd5b6002600954141561176c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611763906158fd565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161179a9061541d565b60006040518083038185875af1925050503d80600081146117d7576040519150601f19603f3d011682016040523d82523d6000602084013e6117dc565b606091505b5050905080611820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118179061581d565b60405180910390fd5b506001600981905550565b611846838383604051806020016040528060008152506122ab565b505050565b600a5481565b600b5481565b600d6020528060005260406000206000915090505481565b6000611879610fdf565b82106118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b1906155dd565b60405180910390fd5b819050919050565b6118ca6126e2565b73ffffffffffffffffffffffffffffffffffffffff166118e8611f5d565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119359061573d565b60405180910390fd5b80600a8190555050565b6119506126e2565b73ffffffffffffffffffffffffffffffffffffffff1661196e611f5d565b73ffffffffffffffffffffffffffffffffffffffff16146119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061573d565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6119f86126e2565b73ffffffffffffffffffffffffffffffffffffffff16611a16611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a639061573d565b60405180910390fd5b818160129190611a7d9291906140d5565b505050565b60105481565b611a906126e2565b73ffffffffffffffffffffffffffffffffffffffff16611aae611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb9061573d565b60405180910390fd5b80600c8190555050565b6000611b1982612fe3565b600001519050919050565b611b2c6126e2565b73ffffffffffffffffffffffffffffffffffffffff16611b4a611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b979061573d565b60405180910390fd5b80600f8190555050565b611bb26126e2565b73ffffffffffffffffffffffffffffffffffffffff16611bd0611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d9061573d565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd2906156bd565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611d5b6126e2565b73ffffffffffffffffffffffffffffffffffffffff16611d79611f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc69061573d565b60405180910390fd5b611dd960006131e6565b565b600c5481565b60606000611dee83611c6a565b90506000811415611e7157600067ffffffffffffffff811115611e3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611e685781602001602082028036833780820191505090505b50915050611f58565b60008167ffffffffffffffff811115611eb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611ee15781602001602082028036833780820191505090505b50905060005b82811015611f5157611ef985826114ac565b828281518110611f32577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611f4990615d83565b915050611ee7565b8193505050505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f8e61415b565b611f9782612fe3565b9050919050565b606060038054611fad90615d51565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd990615d51565b80156120265780601f10611ffb57610100808354040283529160200191612026565b820191906000526020600020905b81548152906001019060200180831161200957829003601f168201915b5050505050905090565b6000808360405160200161204491906153f7565b60405160208183030381529060405280519060200120905061206681846132aa565b91505092915050565b6120776126e2565b73ffffffffffffffffffffffffffffffffffffffff16612095611f5d565b73ffffffffffffffffffffffffffffffffffffffff16146120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e29061573d565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b61211f6126e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121849061579d565b60405180910390fd5b806007600061219a6126e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122476126e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161228c91906154bb565b60405180910390a35050565b600e60019054906101000a900460ff1681565b6122b684848461279c565b6122c2848484846132d1565b612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f89061583d565b60405180910390fd5b50505050565b6060612312826126d4565b612351576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123489061577d565b60405180910390fd5b600061235b613468565b9050600081511161237b57604051806020016040528060008152506123a6565b80612385846134fa565b6040516020016123969291906153d3565b6040516020818303038152906040525b915050919050565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124506126e2565b73ffffffffffffffffffffffffffffffffffffffff1661246e611f5d565b73ffffffffffffffffffffffffffffffffffffffff16146124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb9061573d565b60405180910390fd5b80600b8190555050565b6124d66126e2565b73ffffffffffffffffffffffffffffffffffffffff166124f4611f5d565b73ffffffffffffffffffffffffffffffffffffffff161461254a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125419061573d565b60405180910390fd5b8060108190555050565b61255c6126e2565b73ffffffffffffffffffffffffffffffffffffffff1661257a611f5d565b73ffffffffffffffffffffffffffffffffffffffff16146125d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c79061573d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612640576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126379061559d565b60405180910390fd5b612649816131e6565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126d08282604051806020016040528060008152506136a7565b5050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006127a782612fe3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127ce6126e2565b73ffffffffffffffffffffffffffffffffffffffff16148061282a57506127f36126e2565b73ffffffffffffffffffffffffffffffffffffffff1661281284610e41565b73ffffffffffffffffffffffffffffffffffffffff16145b80612846575061284582600001516128406126e2565b6123b4565b5b905080612888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287f906157bd565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f1906156fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561296a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612961906155fd565b60405180910390fd5b6129778585856001613b87565b61298760008484600001516126ea565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129f59190615bc2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612a999190615a9b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612b9f9190615ae1565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ce557612c15816126d4565b15612ce4576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d4d8686866001613b8d565b505050505050565b6000600854905060008211612d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d969061569d565b60405180910390fd5b600060018383612daf9190615ae1565b612db99190615bf6565b905060017f00000000000000000000000000000000000000000000000000000000000015b3612de89190615bf6565b811115612e1f5760017f00000000000000000000000000000000000000000000000000000000000015b3612e1c9190615bf6565b90505b612e28816126d4565b612e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5e906158dd565b60405180910390fd5b60008290505b818111612fca57600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612fb7576000612eea82612fe3565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612fc290615d83565b915050612e6d565b50600181612fd89190615ae1565b600881905550505050565b612feb61415b565b612ff4826126d4565b613033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302a906155bd565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106130975760017f00000000000000000000000000000000000000000000000000000000000000148461308a9190615bf6565b6130949190615ae1565b90505b60008390505b8181106131a5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613191578093505050506131e1565b50808061319d90615d27565b91505061309d565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d89061591d565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060006132b98585613b93565b915091506132c681613c16565b819250505092915050565b60006132f28473ffffffffffffffffffffffffffffffffffffffff16613f67565b1561345b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261331b6126e2565b8786866040518563ffffffff1660e01b815260040161333d949392919061544d565b602060405180830381600087803b15801561335757600080fd5b505af192505050801561338857506040513d601f19601f820116820180604052508101906133859190614506565b60015b61340b573d80600081146133b8576040519150601f19603f3d011682016040523d82523d6000602084013e6133bd565b606091505b50600081511415613403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133fa9061583d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613460565b600190505b949350505050565b60606012805461347790615d51565b80601f01602080910402602001604051908101604052809291908181526020018280546134a390615d51565b80156134f05780601f106134c5576101008083540402835291602001916134f0565b820191906000526020600020905b8154815290600101906020018083116134d357829003601f168201915b5050505050905090565b60606000821415613542576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136a2565b600082905060005b6000821461357457808061355d90615d83565b915050600a8261356d9190615b37565b915061354a565b60008167ffffffffffffffff8111156135b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135e85781602001600182028036833780820191505090505b5090505b6000851461369b576001826136019190615bf6565b9150600a856136109190615dd6565b603061361c9190615ae1565b60f81b818381518110613658577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136949190615b37565b94506135ec565b8093505050505b919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561371e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137159061587d565b60405180910390fd5b613727816126d4565b15613767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375e9061585d565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000148311156137ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c19061595d565b60405180910390fd5b6137d76000858386613b87565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516138d49190615a9b565b6fffffffffffffffffffffffffffffffff1681526020018583602001516138fb9190615a9b565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613b6a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b0a60008884886132d1565b613b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b409061583d565b60405180910390fd5b8180613b5490615d83565b9250508080613b6290615d83565b915050613a99565b5080600181905550613b7f6000878588613b8d565b505050505050565b50505050565b50505050565b600080604183511415613bd55760008060006020860151925060408601519150606086015160001a9050613bc987828585613f7a565b94509450505050613c0f565b604083511415613c06576000806020850151915060408501519050613bfb868383614087565b935093505050613c0f565b60006002915091505b9250929050565b60006004811115613c50577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613c89577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613c9457613f64565b60016004811115613cce577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613d07577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3f9061553d565b60405180910390fd5b60026004811115613d82577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613dbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613df39061557d565b60405180910390fd5b60036004811115613e36577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613e6f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ea79061561d565b60405180910390fd5b600480811115613ee9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613f22577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f5a906156dd565b60405180910390fd5b5b50565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613fb557600060039150915061407e565b601b8560ff1614158015613fcd5750601c8560ff1614155b15613fdf57600060049150915061407e565b60006001878787876040516000815260200160405260405161400494939291906154d6565b6020604051602081039080840390855afa158015614026573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156140755760006001925092505061407e565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506140c787828885613f7a565b935093505050935093915050565b8280546140e190615d51565b90600052602060002090601f016020900481019282614103576000855561414a565b82601f1061411c57803560ff191683800117855561414a565b8280016001018555821561414a579182015b8281111561414957823582559160200191906001019061412e565b5b5090506141579190614195565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156141ae576000816000905550600101614196565b5090565b60006141c56141c0846159e4565b6159b3565b9050828152602081018484840111156141dd57600080fd5b6141e8848285615ce5565b509392505050565b6000813590506141ff81615ed4565b92915050565b60008135905061421481615eeb565b92915050565b60008135905061422981615f02565b92915050565b60008135905061423e81615f19565b92915050565b60008151905061425381615f19565b92915050565b600082601f83011261426a57600080fd5b813561427a8482602086016141b2565b91505092915050565b60008083601f84011261429557600080fd5b8235905067ffffffffffffffff8111156142ae57600080fd5b6020830191508360018202830111156142c657600080fd5b9250929050565b6000813590506142dc81615f30565b92915050565b6000602082840312156142f457600080fd5b6000614302848285016141f0565b91505092915050565b6000806040838503121561431e57600080fd5b600061432c858286016141f0565b925050602061433d858286016141f0565b9150509250929050565b60008060006060848603121561435c57600080fd5b600061436a868287016141f0565b935050602061437b868287016141f0565b925050604061438c868287016142cd565b9150509250925092565b600080600080608085870312156143ac57600080fd5b60006143ba878288016141f0565b94505060206143cb878288016141f0565b93505060406143dc878288016142cd565b925050606085013567ffffffffffffffff8111156143f957600080fd5b61440587828801614259565b91505092959194509250565b6000806040838503121561442457600080fd5b6000614432858286016141f0565b925050602061444385828601614205565b9150509250929050565b6000806040838503121561446057600080fd5b600061446e858286016141f0565b925050602061447f858286016142cd565b9150509250929050565b6000806040838503121561449c57600080fd5b60006144aa8582860161421a565b925050602083013567ffffffffffffffff8111156144c757600080fd5b6144d385828601614259565b9150509250929050565b6000602082840312156144ef57600080fd5b60006144fd8482850161422f565b91505092915050565b60006020828403121561451857600080fd5b600061452684828501614244565b91505092915050565b6000806020838503121561454257600080fd5b600083013567ffffffffffffffff81111561455c57600080fd5b61456885828601614283565b92509250509250929050565b60006020828403121561458657600080fd5b6000614594848285016142cd565b91505092915050565b6000806000606084860312156145b257600080fd5b60006145c0868287016142cd565b93505060206145d18682870161421a565b925050604084013567ffffffffffffffff8111156145ee57600080fd5b6145fa86828701614259565b9150509250925092565b60006146108383615397565b60208301905092915050565b61462581615c2a565b82525050565b61463481615c2a565b82525050565b600061464582615a24565b61464f8185615a52565b935061465a83615a14565b8060005b8381101561468b5781516146728882614604565b975061467d83615a45565b92505060018101905061465e565b5085935050505092915050565b6146a181615c3c565b82525050565b6146b081615c48565b82525050565b6146c76146c282615c48565b615dcc565b82525050565b60006146d882615a2f565b6146e28185615a63565b93506146f2818560208601615cf4565b6146fb81615ec3565b840191505092915050565b600061471182615a3a565b61471b8185615a7f565b935061472b818560208601615cf4565b61473481615ec3565b840191505092915050565b600061474a82615a3a565b6147548185615a90565b9350614764818560208601615cf4565b80840191505092915050565b600061477d601883615a7f565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b60006147bd602283615a7f565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614823601f83615a7f565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b6000614863601c83615a90565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b60006148a3602683615a7f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614909602a83615a7f565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b600061496f602383615a7f565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149d5602583615a7f565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a3b602283615a7f565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614aa1601383615a7f565b91507f53616c65206973206e6f742073746172746564000000000000000000000000006000830152602082019050919050565b6000614ae1601a83615a7f565b91507f41646472657373206973206e6f7420616c6c6f776c69737465640000000000006000830152602082019050919050565b6000614b21603983615a7f565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000614b87601883615a7f565b91507f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006000830152602082019050919050565b6000614bc7602b83615a7f565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000614c2d602283615a7f565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c93602683615a7f565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614cf9602083615a7f565b91507f43616e206e6f74206d696e74206d6f7265207468616e203230207065722074786000830152602082019050919050565b6000614d39602083615a7f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614d79602083615a7f565b91507f43616e206e6f74206d696e74206d6f7265207468616e206d617820746f6b656e6000830152602082019050919050565b6000614db9602f83615a7f565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614e1f601a83615a7f565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000614e5f603283615a7f565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000614ec5601483615a7f565b91507f4e6f74207061696420656e6f756768204554482e0000000000000000000000006000830152602082019050919050565b6000614f05602283615a7f565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f6b600083615a74565b9150600082019050919050565b6000614f85601083615a7f565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614fc5603383615a7f565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b600061502b601d83615a7f565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b600061506b602183615a7f565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006150d1602183615a7f565b91507f43616e206e6f74206d696e74206d6f7265207468616e206d617820706572207460008301527f78000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615137602e83615a7f565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b600061519d602683615a7f565b91507f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008301527f6c65616e757000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615203601f83615a7f565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000615243602f83615a7f565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006152a9602d83615a7f565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b600061530f602283615a7f565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60408201600082015161537e600085018261461c565b50602082015161539160208501826153b5565b50505050565b6153a081615cba565b82525050565b6153af81615cba565b82525050565b6153be81615cc4565b82525050565b6153cd81615cd8565b82525050565b60006153df828561473f565b91506153eb828461473f565b91508190509392505050565b600061540282614856565b915061540e82846146b6565b60208201915081905092915050565b600061542882614f5e565b9150819050919050565b6000602082019050615447600083018461462b565b92915050565b6000608082019050615462600083018761462b565b61546f602083018661462b565b61547c60408301856153a6565b818103606083015261548e81846146cd565b905095945050505050565b600060208201905081810360008301526154b3818461463a565b905092915050565b60006020820190506154d06000830184614698565b92915050565b60006080820190506154eb60008301876146a7565b6154f860208301866153c4565b61550560408301856146a7565b61551260608301846146a7565b95945050505050565b600060208201905081810360008301526155358184614706565b905092915050565b6000602082019050818103600083015261555681614770565b9050919050565b60006020820190508181036000830152615576816147b0565b9050919050565b6000602082019050818103600083015261559681614816565b9050919050565b600060208201905081810360008301526155b681614896565b9050919050565b600060208201905081810360008301526155d6816148fc565b9050919050565b600060208201905081810360008301526155f681614962565b9050919050565b60006020820190508181036000830152615616816149c8565b9050919050565b6000602082019050818103600083015261563681614a2e565b9050919050565b6000602082019050818103600083015261565681614a94565b9050919050565b6000602082019050818103600083015261567681614ad4565b9050919050565b6000602082019050818103600083015261569681614b14565b9050919050565b600060208201905081810360008301526156b681614b7a565b9050919050565b600060208201905081810360008301526156d681614bba565b9050919050565b600060208201905081810360008301526156f681614c20565b9050919050565b6000602082019050818103600083015261571681614c86565b9050919050565b6000602082019050818103600083015261573681614cec565b9050919050565b6000602082019050818103600083015261575681614d2c565b9050919050565b6000602082019050818103600083015261577681614d6c565b9050919050565b6000602082019050818103600083015261579681614dac565b9050919050565b600060208201905081810360008301526157b681614e12565b9050919050565b600060208201905081810360008301526157d681614e52565b9050919050565b600060208201905081810360008301526157f681614eb8565b9050919050565b6000602082019050818103600083015261581681614ef8565b9050919050565b6000602082019050818103600083015261583681614f78565b9050919050565b6000602082019050818103600083015261585681614fb8565b9050919050565b600060208201905081810360008301526158768161501e565b9050919050565b600060208201905081810360008301526158968161505e565b9050919050565b600060208201905081810360008301526158b6816150c4565b9050919050565b600060208201905081810360008301526158d68161512a565b9050919050565b600060208201905081810360008301526158f681615190565b9050919050565b60006020820190508181036000830152615916816151f6565b9050919050565b6000602082019050818103600083015261593681615236565b9050919050565b600060208201905081810360008301526159568161529c565b9050919050565b6000602082019050818103600083015261597681615302565b9050919050565b60006040820190506159926000830184615368565b92915050565b60006020820190506159ad60008301846153a6565b92915050565b6000604051905081810181811067ffffffffffffffff821117156159da576159d9615e94565b5b8060405250919050565b600067ffffffffffffffff8211156159ff576159fe615e94565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615aa682615c7e565b9150615ab183615c7e565b9250826fffffffffffffffffffffffffffffffff03821115615ad657615ad5615e07565b5b828201905092915050565b6000615aec82615cba565b9150615af783615cba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615b2c57615b2b615e07565b5b828201905092915050565b6000615b4282615cba565b9150615b4d83615cba565b925082615b5d57615b5c615e36565b5b828204905092915050565b6000615b7382615cba565b9150615b7e83615cba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615bb757615bb6615e07565b5b828202905092915050565b6000615bcd82615c7e565b9150615bd883615c7e565b925082821015615beb57615bea615e07565b5b828203905092915050565b6000615c0182615cba565b9150615c0c83615cba565b925082821015615c1f57615c1e615e07565b5b828203905092915050565b6000615c3582615c9a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615d12578082015181840152602081019050615cf7565b83811115615d21576000848401525b50505050565b6000615d3282615cba565b91506000821415615d4657615d45615e07565b5b600182039050919050565b60006002820490506001821680615d6957607f821691505b60208210811415615d7d57615d7c615e65565b5b50919050565b6000615d8e82615cba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615dc157615dc0615e07565b5b600182019050919050565b6000819050919050565b6000615de182615cba565b9150615dec83615cba565b925082615dfc57615dfb615e36565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615edd81615c2a565b8114615ee857600080fd5b50565b615ef481615c3c565b8114615eff57600080fd5b50565b615f0b81615c48565b8114615f1657600080fd5b50565b615f2281615c52565b8114615f2d57600080fd5b50565b615f3981615cba565b8114615f4457600080fd5b5056fea264697066735822122066013e00f9e9445a69bffff0e21c6bcd532bb5a007b77afb0916d121d00f30c164736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000015b3

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 20
Arg [1] : TotalToken_ (uint256): 5555

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [1] : 00000000000000000000000000000000000000000000000000000000000015b3


Deployed Bytecode Sourcemap

48647:4707:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21930:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23656:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50714:571;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24953:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24516:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20495:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48897:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49942:763;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25803:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48965:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49449:219;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52181:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21122:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53172:176;;;;;;;;;;;;;:::i;:::-;;26016:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48719:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48757:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48842:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20658:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51885:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52005:79;;;;;;;;;;;;;:::i;:::-;;52340:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49004:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51385:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23479:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51499:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51292:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22356:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38235:94;;;;;;;;;;;;;:::i;:::-;;48806:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52709:456;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37584:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52556:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23811:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49676:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52090:85;;;;;;;;;;;;;:::i;:::-;;25221:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48930:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26236:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23972:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30659:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25558:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51721:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51614:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38484:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21930:370;22057:4;22102:25;22087:40;;;:11;:40;;;;:99;;;;22153:33;22138:48;;;:11;:48;;;;22087:99;:160;;;;22212:35;22197:50;;;:11;:50;;;;22087:160;:207;;;;22258:36;22282:11;22258:23;:36::i;:::-;22087:207;22073:221;;21930:370;;;:::o;23656:94::-;23710:13;23739:5;23732:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23656:94;:::o;50714:571::-;50772:9;50813:1;50784:13;:25;50798:10;50784:25;;;;;;;;;;;;;;;;:30;:38;;50821:1;50784:38;;;50817:1;50784:38;50772:50;;;;50829:12;50866:4;50855:10;:15;;;;:::i;:::-;50844:9;;:27;;;;:::i;:::-;50829:42;;50902:10;;;;;;;;;;;50894:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;50981:16;;50967:10;50951:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:46;;50943:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;51066:1;51053:10;:14;:44;;;;;51085:12;;51071:10;:26;;51053:44;51045:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;51162:4;51149:9;:17;;51141:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51229:10;51200:13;:25;51214:10;51200:25;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;51246:33;51256:10;51268;51246:9;:33::i;:::-;50714:571;;;:::o;24953:204::-;25021:7;25045:16;25053:7;25045;:16::i;:::-;25037:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25127:15;:24;25143:7;25127:24;;;;;;;;;;;;;;;;;;;;;25120:31;;24953:204;;;:::o;24516:379::-;24585:13;24601:24;24617:7;24601:15;:24::i;:::-;24585:40;;24646:5;24640:11;;:2;:11;;;;24632:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;24731:5;24715:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24740:37;24757:5;24764:12;:10;:12::i;:::-;24740:16;:37::i;:::-;24715:62;24699:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;24861:28;24870:2;24874:7;24883:5;24861:8;:28::i;:::-;24516:379;;;:::o;20495:94::-;20548:7;20571:12;;20564:19;;20495:94;:::o;48897:26::-;;;;;;;;;;;;;:::o;49942:763::-;50039:9;50080:1;50051:13;:25;50065:10;50051:25;;;;;;;;;;;;;;;;:30;:38;;50088:1;50051:38;;;50084:1;50051:38;50039:50;;;;50096:12;50133:4;50122:10;:15;;;;:::i;:::-;50111:9;;:27;;;;:::i;:::-;50096:42;;50169:10;;;;;;;;;;;:26;;;;50183:12;;;;;;;;;;;50169:26;50161:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50264:16;;50250:10;50234:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:46;;50226:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;50349:1;50336:10;:14;:44;;;;;50368:12;;50354:10;:26;;50336:44;50328:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;50446:4;50433:9;:17;;50425:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;50486:12;;;;;;;;;;;50482:130;;;50552:7;;;;;;;;;;;50518:41;;:30;50532:4;50538:9;50518:13;:30::i;:::-;:41;;;50510:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50482:130;50649:10;50620:13;:25;50634:10;50620:25;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;50666:33;50676:10;50688;50666:9;:33::i;:::-;49942:763;;;;;:::o;25803:150::-;25919:28;25929:4;25935:2;25939:7;25919:9;:28::i;:::-;25803:150;;;:::o;48965:32::-;;;;:::o;49449:219::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49574:16:::1;;49560:10;49544:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:46;;49536:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;49636:26;49646:3;49651:10;49636:9;:26::i;:::-;49449:219:::0;;:::o;52181:118::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35696:1:::1;36292:7;;:19;;36284:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;35696:1;36425:7;:18;;;;52265:28:::2;52284:8;52265:18;:28::i;:::-;35652:1:::1;36604:7;:22;;;;52181:118:::0;:::o;21122:744::-;21231:7;21266:16;21276:5;21266:9;:16::i;:::-;21258:5;:24;21250:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;21328:22;21353:13;:11;:13::i;:::-;21328:38;;21373:19;21403:25;21453:9;21448:350;21472:14;21468:1;:18;21448:350;;;21502:31;21536:11;:14;21548:1;21536:14;;;;;;;;;;;21502:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21589:1;21563:28;;:9;:14;;;:28;;;21559:89;;21624:9;:14;;;21604:34;;21559:89;21681:5;21660:26;;:17;:26;;;21656:135;;;21718:5;21703:11;:20;21699:59;;;21745:1;21738:8;;;;;;;;;21699:59;21768:13;;;;;:::i;:::-;;;;21656:135;21448:350;21488:3;;;;;:::i;:::-;;;;21448:350;;;;21804:56;;;;;;;;;;:::i;:::-;;;;;;;;21122:744;;;;;:::o;53172:176::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35696:1:::1;36292:7;;:19;;36284:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;35696:1;36425:7;:18;;;;53232:12:::2;53250:10;:15;;53273:21;53250:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53231:68;;;53314:7;53306:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;36456:1;35652::::1;36604:7;:22;;;;53172:176::o:0;26016:157::-;26128:39;26145:4;26151:2;26155:7;26128:39;;;;;;;;;;;;:16;:39::i;:::-;26016:157;;;:::o;48719:30::-;;;;:::o;48757:39::-;;;;:::o;48842:48::-;;;;;;;;;;;;;;;;;:::o;20658:177::-;20725:7;20757:13;:11;:13::i;:::-;20749:5;:21;20741:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;20824:5;20817:12;;20658:177;;;:::o;51885:113::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51977:15:::1;51960:14;:32;;;;51885:113:::0;:::o;52005:79::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52068:10:::1;;;;;;;;;;;52067:11;52054:10;;:24;;;;;;;;;;;;;;;;;;52005:79::o:0;52340:98::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52425:7:::1;;52411:11;:21;;;;;;;:::i;:::-;;52340:98:::0;;:::o;49004:25::-;;;;:::o;51385:105::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51471:13:::1;51456:12;:28;;;;51385:105:::0;:::o;23479:118::-;23543:7;23566:20;23578:7;23566:11;:20::i;:::-;:25;;;23559:32;;23479:118;;;:::o;51499:109::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51591:11:::1;51572:16;:30;;;;51499:109:::0;:::o;51292:87::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51364:9:::1;51354:7;;:19;;;;;;;;;;;;;;;;;;51292:87:::0;:::o;22356:211::-;22420:7;22461:1;22444:19;;:5;:19;;;;22436:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;22533:12;:19;22546:5;22533:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;22525:36;;22518:43;;22356:211;;;:::o;38235:94::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38300:21:::1;38318:1;38300:9;:21::i;:::-;38235:94::o:0;48806:28::-;;;;:::o;52709:456::-;52770:16;52796:18;52817:17;52827:6;52817:9;:17::i;:::-;52796:38;;52859:1;52845:10;:15;52841:319;;;52894:1;52880:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52873:23;;;;;52841:319;52921:23;52961:10;52947:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52921:51;;52983:13;53007:122;53031:10;53023:5;:18;53007:122;;;53083:34;53103:6;53111:5;53083:19;:34::i;:::-;53067:6;53074:5;53067:13;;;;;;;;;;;;;;;;;;;;;:50;;;;;53043:7;;;;;:::i;:::-;;;;53007:122;;;53146:6;53139:13;;;;;52709:456;;;;:::o;37584:87::-;37630:7;37657:6;;;;;;;;;;;37650:13;;37584:87;:::o;52556:147::-;52637:21;;:::i;:::-;52677:20;52689:7;52677:11;:20::i;:::-;52670:27;;52556:147;;;:::o;23811:98::-;23867:13;23896:7;23889:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23811:98;:::o;49676:260::-;49758:7;49778:21;49865:4;49812:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;49802:69;;;;;;49778:93;;49889:39;49903:13;49918:9;49889:13;:39::i;:::-;49882:46;;;49676:260;;;;:::o;52090:85::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52157:12:::1;;;;;;;;;;;52156:13;52141:12;;:28;;;;;;;;;;;;;;;;;;52090:85::o:0;25221:274::-;25324:12;:10;:12::i;:::-;25312:24;;:8;:24;;;;25304:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;25421:8;25376:18;:32;25395:12;:10;:12::i;:::-;25376:32;;;;;;;;;;;;;;;:42;25409:8;25376:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25470:8;25441:48;;25456:12;:10;:12::i;:::-;25441:48;;;25480:8;25441:48;;;;;;:::i;:::-;;;;;;;;25221:274;;:::o;48930:28::-;;;;;;;;;;;;;:::o;26236:319::-;26381:28;26391:4;26397:2;26401:7;26381:9;:28::i;:::-;26432:48;26455:4;26461:2;26465:7;26474:5;26432:22;:48::i;:::-;26416:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;26236:319;;;;:::o;23972:394::-;24070:13;24111:16;24119:7;24111;:16::i;:::-;24095:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;24201:21;24225:10;:8;:10::i;:::-;24201:34;;24280:1;24262:7;24256:21;:25;:104;;;;;;;;;;;;;;;;;24317:7;24326:18;:7;:16;:18::i;:::-;24300:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24256:104;24242:118;;;23972:394;;;:::o;30659:43::-;;;;:::o;25558:186::-;25680:4;25703:18;:25;25722:5;25703:25;;;;;;;;;;;;;;;:35;25729:8;25703:35;;;;;;;;;;;;;;;;;;;;;;;;;25696:42;;25558:186;;;;:::o;51721:149::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51840:24:::1;51814:23;:50;;;;51721:149:::0;:::o;51614:93::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51691:10:::1;51679:9;:22;;;;51614:93:::0;:::o;38484:192::-;37815:12;:10;:12::i;:::-;37804:23;;:7;:5;:7::i;:::-;:23;;;37796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38593:1:::1;38573:22;;:8;:22;;;;38565:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38649:19;38659:8;38649:9;:19::i;:::-;38484:192:::0;:::o;306:157::-;391:4;430:25;415:40;;;:11;:40;;;;408:47;;306:157;;;:::o;26905:98::-;26970:27;26980:2;26984:8;26970:27;;;;;;;;;;;;:9;:27::i;:::-;26905:98;;:::o;26794:105::-;26851:4;26881:12;;26871:7;:22;26864:29;;26794:105;;;:::o;14481:98::-;14534:7;14561:10;14554:17;;14481:98;:::o;30481:172::-;30605:2;30578:15;:24;30594:7;30578:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30639:7;30635:2;30619:28;;30628:5;30619:28;;;;;;;;;;;;30481:172;;;:::o;28846:1529::-;28943:35;28981:20;28993:7;28981:11;:20::i;:::-;28943:58;;29010:22;29052:13;:18;;;29036:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;29105:12;:10;:12::i;:::-;29081:36;;:20;29093:7;29081:11;:20::i;:::-;:36;;;29036:81;:142;;;;29128:50;29145:13;:18;;;29165:12;:10;:12::i;:::-;29128:16;:50::i;:::-;29036:142;29010:169;;29204:17;29188:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;29336:4;29314:26;;:13;:18;;;:26;;;29298:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;29425:1;29411:16;;:2;:16;;;;29403:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;29478:43;29500:4;29506:2;29510:7;29519:1;29478:21;:43::i;:::-;29578:49;29595:1;29599:7;29608:13;:18;;;29578:8;:49::i;:::-;29666:1;29636:12;:18;29649:4;29636:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29702:1;29674:12;:16;29687:2;29674:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29733:43;;;;;;;;29748:2;29733:43;;;;;;29759:15;29733:43;;;;;29710:11;:20;29722:7;29710:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30004:19;30036:1;30026:7;:11;;;;:::i;:::-;30004:33;;30089:1;30048:43;;:11;:24;30060:11;30048:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;30044:236;;;30106:20;30114:11;30106:7;:20::i;:::-;30102:171;;;30166:97;;;;;;;;30193:13;:18;;;30166:97;;;;;;30224:13;:28;;;30166:97;;;;;30139:11;:24;30151:11;30139:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30102:171;30044:236;30312:7;30308:2;30293:27;;30302:4;30293:27;;;;;;;;;;;;30327:42;30348:4;30354:2;30358:7;30367:1;30327:20;:42::i;:::-;28846:1529;;;;;;:::o;30807:838::-;30869:25;30897:24;;30869:52;;30947:1;30936:8;:12;30928:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;30984:16;31034:1;31023:8;31003:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;30984:51;;31070:1;31057:10;:14;;;;:::i;:::-;31046:8;:25;31042:73;;;31106:1;31093:10;:14;;;;:::i;:::-;31082:25;;31042:73;31230:17;31238:8;31230:7;:17::i;:::-;31222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31302:9;31314:17;31302:29;;31297:297;31338:8;31333:1;:13;31297:297;;31397:1;31366:33;;:11;:14;31378:1;31366:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;31362:225;;;31412:31;31446:14;31458:1;31446:11;:14::i;:::-;31412:48;;31488:89;;;;;;;;31515:9;:14;;;31488:89;;;;;;31542:9;:24;;;31488:89;;;;;31471:11;:14;31483:1;31471:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31362:225;;31348:3;;;;;:::i;:::-;;;;31297:297;;;;31638:1;31627:8;:12;;;;:::i;:::-;31600:24;:39;;;;30807:838;;;:::o;22819:606::-;22895:21;;:::i;:::-;22936:16;22944:7;22936;:16::i;:::-;22928:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23008:26;23056:12;23045:7;:23;23041:93;;23125:1;23110:12;23100:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;23079:47;;23041:93;23147:12;23162:7;23147:22;;23142:212;23179:18;23171:4;:26;23142:212;;23216:31;23250:11;:17;23262:4;23250:17;;;;;;;;;;;23216:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23306:1;23280:28;;:9;:14;;;:28;;;23276:71;;23328:9;23321:16;;;;;;;23276:71;23142:212;23199:6;;;;;:::i;:::-;;;;23142:212;;;;23362:57;;;;;;;;;;:::i;:::-;;;;;;;;22819:606;;;;:::o;38684:173::-;38740:16;38759:6;;;;;;;;;;;38740:25;;38785:8;38776:6;;:17;;;;;;;;;;;;;;;;;;38840:8;38809:40;;38830:8;38809:40;;;;;;;;;;;;38684:173;;:::o;43454:231::-;43532:7;43553:17;43572:18;43594:27;43605:4;43611:9;43594:10;:27::i;:::-;43552:69;;;;43632:18;43644:5;43632:11;:18::i;:::-;43668:9;43661:16;;;;43454:231;;;;:::o;32188:690::-;32325:4;32342:15;:2;:13;;;:15::i;:::-;32338:535;;;32397:2;32381:36;;;32418:12;:10;:12::i;:::-;32432:4;32438:7;32447:5;32381:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32368:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32629:1;32612:6;:13;:18;32608:215;;;32645:61;;;;;;;;;;:::i;:::-;;;;;;;;32608:215;32791:6;32785:13;32776:6;32772:2;32768:15;32761:38;32368:464;32513:45;;;32503:55;;;:6;:55;;;;32496:62;;;;;32338:535;32861:4;32854:11;;32188:690;;;;;;;:::o;52444:106::-;52504:13;52533:11;52526:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52444:106;:::o;14948:723::-;15004:13;15234:1;15225:5;:10;15221:53;;;15252:10;;;;;;;;;;;;;;;;;;;;;15221:53;15284:12;15299:5;15284:20;;15315:14;15340:78;15355:1;15347:4;:9;15340:78;;15373:8;;;;;:::i;:::-;;;;15404:2;15396:10;;;;;:::i;:::-;;;15340:78;;;15428:19;15460:6;15450:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15428:39;;15478:154;15494:1;15485:5;:10;15478:154;;15522:1;15512:11;;;;;:::i;:::-;;;15589:2;15581:5;:10;;;;:::i;:::-;15568:2;:24;;;;:::i;:::-;15555:39;;15538:6;15545;15538:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;15618:2;15609:11;;;;;:::i;:::-;;;15478:154;;;15656:6;15642:21;;;;;14948:723;;;;:::o;27342:1272::-;27447:20;27470:12;;27447:35;;27511:1;27497:16;;:2;:16;;;;27489:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;27688:21;27696:12;27688:7;:21::i;:::-;27687:22;27679:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27770:12;27758:8;:24;;27750:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27830:61;27860:1;27864:2;27868:12;27882:8;27830:21;:61::i;:::-;27900:30;27933:12;:16;27946:2;27933:16;;;;;;;;;;;;;;;27900:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27975:119;;;;;;;;28025:8;27995:11;:19;;;:39;;;;:::i;:::-;27975:119;;;;;;28078:8;28043:11;:24;;;:44;;;;:::i;:::-;27975:119;;;;;27956:12;:16;27969:2;27956:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28129:43;;;;;;;;28144:2;28129:43;;;;;;28155:15;28129:43;;;;;28101:11;:25;28113:12;28101:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28181:20;28204:12;28181:35;;28230:9;28225:281;28249:8;28245:1;:12;28225:281;;;28303:12;28299:2;28278:38;;28295:1;28278:38;;;;;;;;;;;;28343:59;28374:1;28378:2;28382:12;28396:5;28343:22;:59::i;:::-;28325:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;28484:14;;;;;:::i;:::-;;;;28259:3;;;;;:::i;:::-;;;;28225:281;;;;28529:12;28514;:27;;;;28548:60;28577:1;28581:2;28585:12;28599:8;28548:20;:60::i;:::-;27342:1272;;;;;;:::o;33340:141::-;;;;;:::o;33867:140::-;;;;;:::o;41344:1308::-;41425:7;41434:12;41679:2;41659:9;:16;:22;41655:990;;;41698:9;41722;41746:7;41955:4;41944:9;41940:20;41934:27;41929:32;;42005:4;41994:9;41990:20;41984:27;41979:32;;42063:4;42052:9;42048:20;42042:27;42039:1;42034:36;42029:41;;42106:25;42117:4;42123:1;42126;42129;42106:10;:25::i;:::-;42099:32;;;;;;;;;41655:990;42173:2;42153:9;:16;:22;42149:496;;;42192:9;42216:10;42428:4;42417:9;42413:20;42407:27;42402:32;;42479:4;42468:9;42464:20;42458:27;42452:33;;42521:23;42532:4;42538:1;42541:2;42521:10;:23::i;:::-;42514:30;;;;;;;;42149:496;42593:1;42597:35;42577:56;;;;41344:1308;;;;;;:::o;39615:643::-;39693:20;39684:29;;;;;;;;;;;;;;;;:5;:29;;;;;;;;;;;;;;;;;39680:571;;;39730:7;;39680:571;39791:29;39782:38;;;;;;;;;;;;;;;;:5;:38;;;;;;;;;;;;;;;;;39778:473;;;39837:34;;;;;;;;;;:::i;:::-;;;;;;;;39778:473;39902:35;39893:44;;;;;;;;;;;;;;;;:5;:44;;;;;;;;;;;;;;;;;39889:362;;;39954:41;;;;;;;;;;:::i;:::-;;;;;;;;39889:362;40026:30;40017:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;40013:238;;;40073:44;;;;;;;;;;:::i;:::-;;;;;;;;40013:238;40148:30;40139:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;40135:116;;;40195:44;;;;;;;;;;:::i;:::-;;;;;;;;40135:116;39615:643;;:::o;1178:387::-;1238:4;1446:12;1513:7;1501:20;1493:28;;1556:1;1549:4;:8;1542:15;;;1178:387;;;:::o;44953:1632::-;45084:7;45093:12;46018:66;46013:1;46005:10;;:79;46001:163;;;46117:1;46121:30;46101:51;;;;;;46001:163;46183:2;46178:1;:7;;;;:18;;;;;46194:2;46189:1;:7;;;;46178:18;46174:102;;;46229:1;46233:30;46213:51;;;;;;46174:102;46373:14;46390:24;46400:4;46406:1;46409;46412;46390:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46373:41;;46447:1;46429:20;;:6;:20;;;46425:103;;;46482:1;46486:29;46466:50;;;;;;;46425:103;46548:6;46556:20;46540:37;;;;;44953:1632;;;;;;;;:::o;43948:391::-;44062:7;44071:12;44096:9;44116:7;44171:66;44167:2;44163:75;44158:80;;44275:2;44270;44265:3;44261:12;44257:21;44252:26;;44306:25;44317:4;44323:1;44326;44329;44306:10;:25::i;:::-;44299:32;;;;;;43948:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:133::-;;581:6;568:20;559:29;;597:30;621:5;597:30;:::i;:::-;549:84;;;;:::o;639:139::-;;723:6;710:20;701:29;;739:33;766:5;739:33;:::i;:::-;691:87;;;;:::o;784:137::-;;867:6;854:20;845:29;;883:32;909:5;883:32;:::i;:::-;835:86;;;;:::o;927:141::-;;1014:6;1008:13;999:22;;1030:32;1056:5;1030:32;:::i;:::-;989:79;;;;:::o;1087:271::-;;1191:3;1184:4;1176:6;1172:17;1168:27;1158:2;;1209:1;1206;1199:12;1158:2;1249:6;1236:20;1274:78;1348:3;1340:6;1333:4;1325:6;1321:17;1274:78;:::i;:::-;1265:87;;1148:210;;;;;:::o;1378:352::-;;;1496:3;1489:4;1481:6;1477:17;1473:27;1463:2;;1514:1;1511;1504:12;1463:2;1550:6;1537:20;1527:30;;1580:18;1572:6;1569:30;1566:2;;;1612:1;1609;1602:12;1566:2;1649:4;1641:6;1637:17;1625:29;;1703:3;1695:4;1687:6;1683:17;1673:8;1669:32;1666:41;1663:2;;;1720:1;1717;1710:12;1663:2;1453:277;;;;;:::o;1736:139::-;;1820:6;1807:20;1798:29;;1836:33;1863:5;1836:33;:::i;:::-;1788:87;;;;:::o;1881:262::-;;1989:2;1977:9;1968:7;1964:23;1960:32;1957:2;;;2005:1;2002;1995:12;1957:2;2048:1;2073:53;2118:7;2109:6;2098:9;2094:22;2073:53;:::i;:::-;2063:63;;2019:117;1947:196;;;;:::o;2149:407::-;;;2274:2;2262:9;2253:7;2249:23;2245:32;2242:2;;;2290:1;2287;2280:12;2242:2;2333:1;2358:53;2403:7;2394:6;2383:9;2379:22;2358:53;:::i;:::-;2348:63;;2304:117;2460:2;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2431:118;2232:324;;;;;:::o;2562:552::-;;;;2704:2;2692:9;2683:7;2679:23;2675:32;2672:2;;;2720:1;2717;2710:12;2672:2;2763:1;2788:53;2833:7;2824:6;2813:9;2809:22;2788:53;:::i;:::-;2778:63;;2734:117;2890:2;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2861:118;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;2662:452;;;;;:::o;3120:809::-;;;;;3288:3;3276:9;3267:7;3263:23;3259:33;3256:2;;;3305:1;3302;3295:12;3256:2;3348:1;3373:53;3418:7;3409:6;3398:9;3394:22;3373:53;:::i;:::-;3363:63;;3319:117;3475:2;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3446:118;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3759:2;3748:9;3744:18;3731:32;3790:18;3782:6;3779:30;3776:2;;;3822:1;3819;3812:12;3776:2;3850:62;3904:7;3895:6;3884:9;3880:22;3850:62;:::i;:::-;3840:72;;3702:220;3246:683;;;;;;;:::o;3935:401::-;;;4057:2;4045:9;4036:7;4032:23;4028:32;4025:2;;;4073:1;4070;4063:12;4025:2;4116:1;4141:53;4186:7;4177:6;4166:9;4162:22;4141:53;:::i;:::-;4131:63;;4087:117;4243:2;4269:50;4311:7;4302:6;4291:9;4287:22;4269:50;:::i;:::-;4259:60;;4214:115;4015:321;;;;;:::o;4342:407::-;;;4467:2;4455:9;4446:7;4442:23;4438:32;4435:2;;;4483:1;4480;4473:12;4435:2;4526:1;4551:53;4596:7;4587:6;4576:9;4572:22;4551:53;:::i;:::-;4541:63;;4497:117;4653:2;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4624:118;4425:324;;;;;:::o;4755:518::-;;;4889:2;4877:9;4868:7;4864:23;4860:32;4857:2;;;4905:1;4902;4895:12;4857:2;4948:1;4973:53;5018:7;5009:6;4998:9;4994:22;4973:53;:::i;:::-;4963:63;;4919:117;5103:2;5092:9;5088:18;5075:32;5134:18;5126:6;5123:30;5120:2;;;5166:1;5163;5156:12;5120:2;5194:62;5248:7;5239:6;5228:9;5224:22;5194:62;:::i;:::-;5184:72;;5046:220;4847:426;;;;;:::o;5279:260::-;;5386:2;5374:9;5365:7;5361:23;5357:32;5354:2;;;5402:1;5399;5392:12;5354:2;5445:1;5470:52;5514:7;5505:6;5494:9;5490:22;5470:52;:::i;:::-;5460:62;;5416:116;5344:195;;;;:::o;5545:282::-;;5663:2;5651:9;5642:7;5638:23;5634:32;5631:2;;;5679:1;5676;5669:12;5631:2;5722:1;5747:63;5802:7;5793:6;5782:9;5778:22;5747:63;:::i;:::-;5737:73;;5693:127;5621:206;;;;:::o;5833:395::-;;;5961:2;5949:9;5940:7;5936:23;5932:32;5929:2;;;5977:1;5974;5967:12;5929:2;6048:1;6037:9;6033:17;6020:31;6078:18;6070:6;6067:30;6064:2;;;6110:1;6107;6100:12;6064:2;6146:65;6203:7;6194:6;6183:9;6179:22;6146:65;:::i;:::-;6128:83;;;;5991:230;5919:309;;;;;:::o;6234:262::-;;6342:2;6330:9;6321:7;6317:23;6313:32;6310:2;;;6358:1;6355;6348:12;6310:2;6401:1;6426:53;6471:7;6462:6;6451:9;6447:22;6426:53;:::i;:::-;6416:63;;6372:117;6300:196;;;;:::o;6502:663::-;;;;6653:2;6641:9;6632:7;6628:23;6624:32;6621:2;;;6669:1;6666;6659:12;6621:2;6712:1;6737:53;6782:7;6773:6;6762:9;6758:22;6737:53;:::i;:::-;6727:63;;6683:117;6839:2;6865:53;6910:7;6901:6;6890:9;6886:22;6865:53;:::i;:::-;6855:63;;6810:118;6995:2;6984:9;6980:18;6967:32;7026:18;7018:6;7015:30;7012:2;;;7058:1;7055;7048:12;7012:2;7086:62;7140:7;7131:6;7120:9;7116:22;7086:62;:::i;:::-;7076:72;;6938:220;6611:554;;;;;:::o;7171:179::-;;7261:46;7303:3;7295:6;7261:46;:::i;:::-;7339:4;7334:3;7330:14;7316:28;;7251:99;;;;:::o;7356:108::-;7433:24;7451:5;7433:24;:::i;:::-;7428:3;7421:37;7411:53;;:::o;7470:118::-;7557:24;7575:5;7557:24;:::i;:::-;7552:3;7545:37;7535:53;;:::o;7624:732::-;;7772:54;7820:5;7772:54;:::i;:::-;7842:86;7921:6;7916:3;7842:86;:::i;:::-;7835:93;;7952:56;8002:5;7952:56;:::i;:::-;8031:7;8062:1;8047:284;8072:6;8069:1;8066:13;8047:284;;;8148:6;8142:13;8175:63;8234:3;8219:13;8175:63;:::i;:::-;8168:70;;8261:60;8314:6;8261:60;:::i;:::-;8251:70;;8107:224;8094:1;8091;8087:9;8082:14;;8047:284;;;8051:14;8347:3;8340:10;;7748:608;;;;;;;:::o;8362:109::-;8443:21;8458:5;8443:21;:::i;:::-;8438:3;8431:34;8421:50;;:::o;8477:118::-;8564:24;8582:5;8564:24;:::i;:::-;8559:3;8552:37;8542:53;;:::o;8601:157::-;8706:45;8726:24;8744:5;8726:24;:::i;:::-;8706:45;:::i;:::-;8701:3;8694:58;8684:74;;:::o;8764:360::-;;8878:38;8910:5;8878:38;:::i;:::-;8932:70;8995:6;8990:3;8932:70;:::i;:::-;8925:77;;9011:52;9056:6;9051:3;9044:4;9037:5;9033:16;9011:52;:::i;:::-;9088:29;9110:6;9088:29;:::i;:::-;9083:3;9079:39;9072:46;;8854:270;;;;;:::o;9130:364::-;;9246:39;9279:5;9246:39;:::i;:::-;9301:71;9365:6;9360:3;9301:71;:::i;:::-;9294:78;;9381:52;9426:6;9421:3;9414:4;9407:5;9403:16;9381:52;:::i;:::-;9458:29;9480:6;9458:29;:::i;:::-;9453:3;9449:39;9442:46;;9222:272;;;;;:::o;9500:377::-;;9634:39;9667:5;9634:39;:::i;:::-;9689:89;9771:6;9766:3;9689:89;:::i;:::-;9682:96;;9787:52;9832:6;9827:3;9820:4;9813:5;9809:16;9787:52;:::i;:::-;9864:6;9859:3;9855:16;9848:23;;9610:267;;;;;:::o;9883:322::-;;10046:67;10110:2;10105:3;10046:67;:::i;:::-;10039:74;;10143:26;10139:1;10134:3;10130:11;10123:47;10196:2;10191:3;10187:12;10180:19;;10029:176;;;:::o;10211:366::-;;10374:67;10438:2;10433:3;10374:67;:::i;:::-;10367:74;;10471:34;10467:1;10462:3;10458:11;10451:55;10537:4;10532:2;10527:3;10523:12;10516:26;10568:2;10563:3;10559:12;10552:19;;10357:220;;;:::o;10583:329::-;;10746:67;10810:2;10805:3;10746:67;:::i;:::-;10739:74;;10843:33;10839:1;10834:3;10830:11;10823:54;10903:2;10898:3;10894:12;10887:19;;10729:183;;;:::o;10918:398::-;;11099:85;11181:2;11176:3;11099:85;:::i;:::-;11092:92;;11214:66;11210:1;11205:3;11201:11;11194:87;11307:2;11302:3;11298:12;11291:19;;11082:234;;;:::o;11322:370::-;;11485:67;11549:2;11544:3;11485:67;:::i;:::-;11478:74;;11582:34;11578:1;11573:3;11569:11;11562:55;11648:8;11643:2;11638:3;11634:12;11627:30;11683:2;11678:3;11674:12;11667:19;;11468:224;;;:::o;11698:374::-;;11861:67;11925:2;11920:3;11861:67;:::i;:::-;11854:74;;11958:34;11954:1;11949:3;11945:11;11938:55;12024:12;12019:2;12014:3;12010:12;12003:34;12063:2;12058:3;12054:12;12047:19;;11844:228;;;:::o;12078:367::-;;12241:67;12305:2;12300:3;12241:67;:::i;:::-;12234:74;;12338:34;12334:1;12329:3;12325:11;12318:55;12404:5;12399:2;12394:3;12390:12;12383:27;12436:2;12431:3;12427:12;12420:19;;12224:221;;;:::o;12451:369::-;;12614:67;12678:2;12673:3;12614:67;:::i;:::-;12607:74;;12711:34;12707:1;12702:3;12698:11;12691:55;12777:7;12772:2;12767:3;12763:12;12756:29;12811:2;12806:3;12802:12;12795:19;;12597:223;;;:::o;12826:366::-;;12989:67;13053:2;13048:3;12989:67;:::i;:::-;12982:74;;13086:34;13082:1;13077:3;13073:11;13066:55;13152:4;13147:2;13142:3;13138:12;13131:26;13183:2;13178:3;13174:12;13167:19;;12972:220;;;:::o;13198:317::-;;13361:67;13425:2;13420:3;13361:67;:::i;:::-;13354:74;;13458:21;13454:1;13449:3;13445:11;13438:42;13506:2;13501:3;13497:12;13490:19;;13344:171;;;:::o;13521:324::-;;13684:67;13748:2;13743:3;13684:67;:::i;:::-;13677:74;;13781:28;13777:1;13772:3;13768:11;13761:49;13836:2;13831:3;13827:12;13820:19;;13667:178;;;:::o;13851:389::-;;14014:67;14078:2;14073:3;14014:67;:::i;:::-;14007:74;;14111:34;14107:1;14102:3;14098:11;14091:55;14177:27;14172:2;14167:3;14163:12;14156:49;14231:2;14226:3;14222:12;14215:19;;13997:243;;;:::o;14246:322::-;;14409:67;14473:2;14468:3;14409:67;:::i;:::-;14402:74;;14506:26;14502:1;14497:3;14493:11;14486:47;14559:2;14554:3;14550:12;14543:19;;14392:176;;;:::o;14574:375::-;;14737:67;14801:2;14796:3;14737:67;:::i;:::-;14730:74;;14834:34;14830:1;14825:3;14821:11;14814:55;14900:13;14895:2;14890:3;14886:12;14879:35;14940:2;14935:3;14931:12;14924:19;;14720:229;;;:::o;14955:366::-;;15118:67;15182:2;15177:3;15118:67;:::i;:::-;15111:74;;15215:34;15211:1;15206:3;15202:11;15195:55;15281:4;15276:2;15271:3;15267:12;15260:26;15312:2;15307:3;15303:12;15296:19;;15101:220;;;:::o;15327:370::-;;15490:67;15554:2;15549:3;15490:67;:::i;:::-;15483:74;;15587:34;15583:1;15578:3;15574:11;15567:55;15653:8;15648:2;15643:3;15639:12;15632:30;15688:2;15683:3;15679:12;15672:19;;15473:224;;;:::o;15703:330::-;;15866:67;15930:2;15925:3;15866:67;:::i;:::-;15859:74;;15963:34;15959:1;15954:3;15950:11;15943:55;16024:2;16019:3;16015:12;16008:19;;15849:184;;;:::o;16039:330::-;;16202:67;16266:2;16261:3;16202:67;:::i;:::-;16195:74;;16299:34;16295:1;16290:3;16286:11;16279:55;16360:2;16355:3;16351:12;16344:19;;16185:184;;;:::o;16375:330::-;;16538:67;16602:2;16597:3;16538:67;:::i;:::-;16531:74;;16635:34;16631:1;16626:3;16622:11;16615:55;16696:2;16691:3;16687:12;16680:19;;16521:184;;;:::o;16711:379::-;;16874:67;16938:2;16933:3;16874:67;:::i;:::-;16867:74;;16971:34;16967:1;16962:3;16958:11;16951:55;17037:17;17032:2;17027:3;17023:12;17016:39;17081:2;17076:3;17072:12;17065:19;;16857:233;;;:::o;17096:324::-;;17259:67;17323:2;17318:3;17259:67;:::i;:::-;17252:74;;17356:28;17352:1;17347:3;17343:11;17336:49;17411:2;17406:3;17402:12;17395:19;;17242:178;;;:::o;17426:382::-;;17589:67;17653:2;17648:3;17589:67;:::i;:::-;17582:74;;17686:34;17682:1;17677:3;17673:11;17666:55;17752:20;17747:2;17742:3;17738:12;17731:42;17799:2;17794:3;17790:12;17783:19;;17572:236;;;:::o;17814:318::-;;17977:67;18041:2;18036:3;17977:67;:::i;:::-;17970:74;;18074:22;18070:1;18065:3;18061:11;18054:43;18123:2;18118:3;18114:12;18107:19;;17960:172;;;:::o;18138:366::-;;18301:67;18365:2;18360:3;18301:67;:::i;:::-;18294:74;;18398:34;18394:1;18389:3;18385:11;18378:55;18464:4;18459:2;18454:3;18450:12;18443:26;18495:2;18490:3;18486:12;18479:19;;18284:220;;;:::o;18510:297::-;;18690:83;18771:1;18766:3;18690:83;:::i;:::-;18683:90;;18799:1;18794:3;18790:11;18783:18;;18673:134;;;:::o;18813:314::-;;18976:67;19040:2;19035:3;18976:67;:::i;:::-;18969:74;;19073:18;19069:1;19064:3;19060:11;19053:39;19118:2;19113:3;19109:12;19102:19;;18959:168;;;:::o;19133:383::-;;19296:67;19360:2;19355:3;19296:67;:::i;:::-;19289:74;;19393:34;19389:1;19384:3;19380:11;19373:55;19459:21;19454:2;19449:3;19445:12;19438:43;19507:2;19502:3;19498:12;19491:19;;19279:237;;;:::o;19522:327::-;;19685:67;19749:2;19744:3;19685:67;:::i;:::-;19678:74;;19782:31;19778:1;19773:3;19769:11;19762:52;19840:2;19835:3;19831:12;19824:19;;19668:181;;;:::o;19855:365::-;;20018:67;20082:2;20077:3;20018:67;:::i;:::-;20011:74;;20115:34;20111:1;20106:3;20102:11;20095:55;20181:3;20176:2;20171:3;20167:12;20160:25;20211:2;20206:3;20202:12;20195:19;;20001:219;;;:::o;20226:365::-;;20389:67;20453:2;20448:3;20389:67;:::i;:::-;20382:74;;20486:34;20482:1;20477:3;20473:11;20466:55;20552:3;20547:2;20542:3;20538:12;20531:25;20582:2;20577:3;20573:12;20566:19;;20372:219;;;:::o;20597:378::-;;20760:67;20824:2;20819:3;20760:67;:::i;:::-;20753:74;;20857:34;20853:1;20848:3;20844:11;20837:55;20923:16;20918:2;20913:3;20909:12;20902:38;20966:2;20961:3;20957:12;20950:19;;20743:232;;;:::o;20981:370::-;;21144:67;21208:2;21203:3;21144:67;:::i;:::-;21137:74;;21241:34;21237:1;21232:3;21228:11;21221:55;21307:8;21302:2;21297:3;21293:12;21286:30;21342:2;21337:3;21333:12;21326:19;;21127:224;;;:::o;21357:329::-;;21520:67;21584:2;21579:3;21520:67;:::i;:::-;21513:74;;21617:33;21613:1;21608:3;21604:11;21597:54;21677:2;21672:3;21668:12;21661:19;;21503:183;;;:::o;21692:379::-;;21855:67;21919:2;21914:3;21855:67;:::i;:::-;21848:74;;21952:34;21948:1;21943:3;21939:11;21932:55;22018:17;22013:2;22008:3;22004:12;21997:39;22062:2;22057:3;22053:12;22046:19;;21838:233;;;:::o;22077:377::-;;22240:67;22304:2;22299:3;22240:67;:::i;:::-;22233:74;;22337:34;22333:1;22328:3;22324:11;22317:55;22403:15;22398:2;22393:3;22389:12;22382:37;22445:2;22440:3;22436:12;22429:19;;22223:231;;;:::o;22460:366::-;;22623:67;22687:2;22682:3;22623:67;:::i;:::-;22616:74;;22720:34;22716:1;22711:3;22707:11;22700:55;22786:4;22781:2;22776:3;22772:12;22765:26;22817:2;22812:3;22808:12;22801:19;;22606:220;;;:::o;22902:527::-;23061:4;23056:3;23052:14;23148:4;23141:5;23137:16;23131:23;23167:63;23224:4;23219:3;23215:14;23201:12;23167:63;:::i;:::-;23076:164;23332:4;23325:5;23321:16;23315:23;23351:61;23406:4;23401:3;23397:14;23383:12;23351:61;:::i;:::-;23250:172;23030:399;;;:::o;23435:108::-;23512:24;23530:5;23512:24;:::i;:::-;23507:3;23500:37;23490:53;;:::o;23549:118::-;23636:24;23654:5;23636:24;:::i;:::-;23631:3;23624:37;23614:53;;:::o;23673:105::-;23748:23;23765:5;23748:23;:::i;:::-;23743:3;23736:36;23726:52;;:::o;23784:112::-;23867:22;23883:5;23867:22;:::i;:::-;23862:3;23855:35;23845:51;;:::o;23902:435::-;;24104:95;24195:3;24186:6;24104:95;:::i;:::-;24097:102;;24216:95;24307:3;24298:6;24216:95;:::i;:::-;24209:102;;24328:3;24321:10;;24086:251;;;;;:::o;24343:522::-;;24578:148;24722:3;24578:148;:::i;:::-;24571:155;;24736:75;24807:3;24798:6;24736:75;:::i;:::-;24836:2;24831:3;24827:12;24820:19;;24856:3;24849:10;;24560:305;;;;:::o;24871:379::-;;25077:147;25220:3;25077:147;:::i;:::-;25070:154;;25241:3;25234:10;;25059:191;;;:::o;25256:222::-;;25387:2;25376:9;25372:18;25364:26;;25400:71;25468:1;25457:9;25453:17;25444:6;25400:71;:::i;:::-;25354:124;;;;:::o;25484:640::-;;25717:3;25706:9;25702:19;25694:27;;25731:71;25799:1;25788:9;25784:17;25775:6;25731:71;:::i;:::-;25812:72;25880:2;25869:9;25865:18;25856:6;25812:72;:::i;:::-;25894;25962:2;25951:9;25947:18;25938:6;25894:72;:::i;:::-;26013:9;26007:4;26003:20;25998:2;25987:9;25983:18;25976:48;26041:76;26112:4;26103:6;26041:76;:::i;:::-;26033:84;;25684:440;;;;;;;:::o;26130:373::-;;26311:2;26300:9;26296:18;26288:26;;26360:9;26354:4;26350:20;26346:1;26335:9;26331:17;26324:47;26388:108;26491:4;26482:6;26388:108;:::i;:::-;26380:116;;26278:225;;;;:::o;26509:210::-;;26634:2;26623:9;26619:18;26611:26;;26647:65;26709:1;26698:9;26694:17;26685:6;26647:65;:::i;:::-;26601:118;;;;:::o;26725:545::-;;26936:3;26925:9;26921:19;26913:27;;26950:71;27018:1;27007:9;27003:17;26994:6;26950:71;:::i;:::-;27031:68;27095:2;27084:9;27080:18;27071:6;27031:68;:::i;:::-;27109:72;27177:2;27166:9;27162:18;27153:6;27109:72;:::i;:::-;27191;27259:2;27248:9;27244:18;27235:6;27191:72;:::i;:::-;26903:367;;;;;;;:::o;27276:313::-;;27427:2;27416:9;27412:18;27404:26;;27476:9;27470:4;27466:20;27462:1;27451:9;27447:17;27440:47;27504:78;27577:4;27568:6;27504:78;:::i;:::-;27496:86;;27394:195;;;;:::o;27595:419::-;;27799:2;27788:9;27784:18;27776:26;;27848:9;27842:4;27838:20;27834:1;27823:9;27819:17;27812:47;27876:131;28002:4;27876:131;:::i;:::-;27868:139;;27766:248;;;:::o;28020:419::-;;28224:2;28213:9;28209:18;28201:26;;28273:9;28267:4;28263:20;28259:1;28248:9;28244:17;28237:47;28301:131;28427:4;28301:131;:::i;:::-;28293:139;;28191:248;;;:::o;28445:419::-;;28649:2;28638:9;28634:18;28626:26;;28698:9;28692:4;28688:20;28684:1;28673:9;28669:17;28662:47;28726:131;28852:4;28726:131;:::i;:::-;28718:139;;28616:248;;;:::o;28870:419::-;;29074:2;29063:9;29059:18;29051:26;;29123:9;29117:4;29113:20;29109:1;29098:9;29094:17;29087:47;29151:131;29277:4;29151:131;:::i;:::-;29143:139;;29041:248;;;:::o;29295:419::-;;29499:2;29488:9;29484:18;29476:26;;29548:9;29542:4;29538:20;29534:1;29523:9;29519:17;29512:47;29576:131;29702:4;29576:131;:::i;:::-;29568:139;;29466:248;;;:::o;29720:419::-;;29924:2;29913:9;29909:18;29901:26;;29973:9;29967:4;29963:20;29959:1;29948:9;29944:17;29937:47;30001:131;30127:4;30001:131;:::i;:::-;29993:139;;29891:248;;;:::o;30145:419::-;;30349:2;30338:9;30334:18;30326:26;;30398:9;30392:4;30388:20;30384:1;30373:9;30369:17;30362:47;30426:131;30552:4;30426:131;:::i;:::-;30418:139;;30316:248;;;:::o;30570:419::-;;30774:2;30763:9;30759:18;30751:26;;30823:9;30817:4;30813:20;30809:1;30798:9;30794:17;30787:47;30851:131;30977:4;30851:131;:::i;:::-;30843:139;;30741:248;;;:::o;30995:419::-;;31199:2;31188:9;31184:18;31176:26;;31248:9;31242:4;31238:20;31234:1;31223:9;31219:17;31212:47;31276:131;31402:4;31276:131;:::i;:::-;31268:139;;31166:248;;;:::o;31420:419::-;;31624:2;31613:9;31609:18;31601:26;;31673:9;31667:4;31663:20;31659:1;31648:9;31644:17;31637:47;31701:131;31827:4;31701:131;:::i;:::-;31693:139;;31591:248;;;:::o;31845:419::-;;32049:2;32038:9;32034:18;32026:26;;32098:9;32092:4;32088:20;32084:1;32073:9;32069:17;32062:47;32126:131;32252:4;32126:131;:::i;:::-;32118:139;;32016:248;;;:::o;32270:419::-;;32474:2;32463:9;32459:18;32451:26;;32523:9;32517:4;32513:20;32509:1;32498:9;32494:17;32487:47;32551:131;32677:4;32551:131;:::i;:::-;32543:139;;32441:248;;;:::o;32695:419::-;;32899:2;32888:9;32884:18;32876:26;;32948:9;32942:4;32938:20;32934:1;32923:9;32919:17;32912:47;32976:131;33102:4;32976:131;:::i;:::-;32968:139;;32866:248;;;:::o;33120:419::-;;33324:2;33313:9;33309:18;33301:26;;33373:9;33367:4;33363:20;33359:1;33348:9;33344:17;33337:47;33401:131;33527:4;33401:131;:::i;:::-;33393:139;;33291:248;;;:::o;33545:419::-;;33749:2;33738:9;33734:18;33726:26;;33798:9;33792:4;33788:20;33784:1;33773:9;33769:17;33762:47;33826:131;33952:4;33826:131;:::i;:::-;33818:139;;33716:248;;;:::o;33970:419::-;;34174:2;34163:9;34159:18;34151:26;;34223:9;34217:4;34213:20;34209:1;34198:9;34194:17;34187:47;34251:131;34377:4;34251:131;:::i;:::-;34243:139;;34141:248;;;:::o;34395:419::-;;34599:2;34588:9;34584:18;34576:26;;34648:9;34642:4;34638:20;34634:1;34623:9;34619:17;34612:47;34676:131;34802:4;34676:131;:::i;:::-;34668:139;;34566:248;;;:::o;34820:419::-;;35024:2;35013:9;35009:18;35001:26;;35073:9;35067:4;35063:20;35059:1;35048:9;35044:17;35037:47;35101:131;35227:4;35101:131;:::i;:::-;35093:139;;34991:248;;;:::o;35245:419::-;;35449:2;35438:9;35434:18;35426:26;;35498:9;35492:4;35488:20;35484:1;35473:9;35469:17;35462:47;35526:131;35652:4;35526:131;:::i;:::-;35518:139;;35416:248;;;:::o;35670:419::-;;35874:2;35863:9;35859:18;35851:26;;35923:9;35917:4;35913:20;35909:1;35898:9;35894:17;35887:47;35951:131;36077:4;35951:131;:::i;:::-;35943:139;;35841:248;;;:::o;36095:419::-;;36299:2;36288:9;36284:18;36276:26;;36348:9;36342:4;36338:20;36334:1;36323:9;36319:17;36312:47;36376:131;36502:4;36376:131;:::i;:::-;36368:139;;36266:248;;;:::o;36520:419::-;;36724:2;36713:9;36709:18;36701:26;;36773:9;36767:4;36763:20;36759:1;36748:9;36744:17;36737:47;36801:131;36927:4;36801:131;:::i;:::-;36793:139;;36691:248;;;:::o;36945:419::-;;37149:2;37138:9;37134:18;37126:26;;37198:9;37192:4;37188:20;37184:1;37173:9;37169:17;37162:47;37226:131;37352:4;37226:131;:::i;:::-;37218:139;;37116:248;;;:::o;37370:419::-;;37574:2;37563:9;37559:18;37551:26;;37623:9;37617:4;37613:20;37609:1;37598:9;37594:17;37587:47;37651:131;37777:4;37651:131;:::i;:::-;37643:139;;37541:248;;;:::o;37795:419::-;;37999:2;37988:9;37984:18;37976:26;;38048:9;38042:4;38038:20;38034:1;38023:9;38019:17;38012:47;38076:131;38202:4;38076:131;:::i;:::-;38068:139;;37966:248;;;:::o;38220:419::-;;38424:2;38413:9;38409:18;38401:26;;38473:9;38467:4;38463:20;38459:1;38448:9;38444:17;38437:47;38501:131;38627:4;38501:131;:::i;:::-;38493:139;;38391:248;;;:::o;38645:419::-;;38849:2;38838:9;38834:18;38826:26;;38898:9;38892:4;38888:20;38884:1;38873:9;38869:17;38862:47;38926:131;39052:4;38926:131;:::i;:::-;38918:139;;38816:248;;;:::o;39070:419::-;;39274:2;39263:9;39259:18;39251:26;;39323:9;39317:4;39313:20;39309:1;39298:9;39294:17;39287:47;39351:131;39477:4;39351:131;:::i;:::-;39343:139;;39241:248;;;:::o;39495:419::-;;39699:2;39688:9;39684:18;39676:26;;39748:9;39742:4;39738:20;39734:1;39723:9;39719:17;39712:47;39776:131;39902:4;39776:131;:::i;:::-;39768:139;;39666:248;;;:::o;39920:419::-;;40124:2;40113:9;40109:18;40101:26;;40173:9;40167:4;40163:20;40159:1;40148:9;40144:17;40137:47;40201:131;40327:4;40201:131;:::i;:::-;40193:139;;40091:248;;;:::o;40345:419::-;;40549:2;40538:9;40534:18;40526:26;;40598:9;40592:4;40588:20;40584:1;40573:9;40569:17;40562:47;40626:131;40752:4;40626:131;:::i;:::-;40618:139;;40516:248;;;:::o;40770:419::-;;40974:2;40963:9;40959:18;40951:26;;41023:9;41017:4;41013:20;41009:1;40998:9;40994:17;40987:47;41051:131;41177:4;41051:131;:::i;:::-;41043:139;;40941:248;;;:::o;41195:419::-;;41399:2;41388:9;41384:18;41376:26;;41448:9;41442:4;41438:20;41434:1;41423:9;41419:17;41412:47;41476:131;41602:4;41476:131;:::i;:::-;41468:139;;41366:248;;;:::o;41620:419::-;;41824:2;41813:9;41809:18;41801:26;;41873:9;41867:4;41863:20;41859:1;41848:9;41844:17;41837:47;41901:131;42027:4;41901:131;:::i;:::-;41893:139;;41791:248;;;:::o;42045:346::-;;42238:2;42227:9;42223:18;42215:26;;42251:133;42381:1;42370:9;42366:17;42357:6;42251:133;:::i;:::-;42205:186;;;;:::o;42397:222::-;;42528:2;42517:9;42513:18;42505:26;;42541:71;42609:1;42598:9;42594:17;42585:6;42541:71;:::i;:::-;42495:124;;;;:::o;42625:283::-;;42691:2;42685:9;42675:19;;42733:4;42725:6;42721:17;42840:6;42828:10;42825:22;42804:18;42792:10;42789:34;42786:62;42783:2;;;42851:18;;:::i;:::-;42783:2;42891:10;42887:2;42880:22;42665:243;;;;:::o;42914:331::-;;43065:18;43057:6;43054:30;43051:2;;;43087:18;;:::i;:::-;43051:2;43172:4;43168:9;43161:4;43153:6;43149:17;43145:33;43137:41;;43233:4;43227;43223:15;43215:23;;42980:265;;;:::o;43251:132::-;;43341:3;43333:11;;43371:4;43366:3;43362:14;43354:22;;43323:60;;;:::o;43389:114::-;;43490:5;43484:12;43474:22;;43463:40;;;:::o;43509:98::-;;43594:5;43588:12;43578:22;;43567:40;;;:::o;43613:99::-;;43699:5;43693:12;43683:22;;43672:40;;;:::o;43718:113::-;;43820:4;43815:3;43811:14;43803:22;;43793:38;;;:::o;43837:184::-;;43970:6;43965:3;43958:19;44010:4;44005:3;44001:14;43986:29;;43948:73;;;;:::o;44027:168::-;;44144:6;44139:3;44132:19;44184:4;44179:3;44175:14;44160:29;;44122:73;;;;:::o;44201:147::-;;44339:3;44324:18;;44314:34;;;;:::o;44354:169::-;;44472:6;44467:3;44460:19;44512:4;44507:3;44503:14;44488:29;;44450:73;;;;:::o;44529:148::-;;44668:3;44653:18;;44643:34;;;;:::o;44683:273::-;;44742:20;44760:1;44742:20;:::i;:::-;44737:25;;44776:20;44794:1;44776:20;:::i;:::-;44771:25;;44898:1;44862:34;44858:42;44855:1;44852:49;44849:2;;;44904:18;;:::i;:::-;44849:2;44948:1;44945;44941:9;44934:16;;44727:229;;;;:::o;44962:305::-;;45021:20;45039:1;45021:20;:::i;:::-;45016:25;;45055:20;45073:1;45055:20;:::i;:::-;45050:25;;45209:1;45141:66;45137:74;45134:1;45131:81;45128:2;;;45215:18;;:::i;:::-;45128:2;45259:1;45256;45252:9;45245:16;;45006:261;;;;:::o;45273:185::-;;45330:20;45348:1;45330:20;:::i;:::-;45325:25;;45364:20;45382:1;45364:20;:::i;:::-;45359:25;;45403:1;45393:2;;45408:18;;:::i;:::-;45393:2;45450:1;45447;45443:9;45438:14;;45315:143;;;;:::o;45464:348::-;;45527:20;45545:1;45527:20;:::i;:::-;45522:25;;45561:20;45579:1;45561:20;:::i;:::-;45556:25;;45749:1;45681:66;45677:74;45674:1;45671:81;45666:1;45659:9;45652:17;45648:105;45645:2;;;45756:18;;:::i;:::-;45645:2;45804:1;45801;45797:9;45786:20;;45512:300;;;;:::o;45818:191::-;;45878:20;45896:1;45878:20;:::i;:::-;45873:25;;45912:20;45930:1;45912:20;:::i;:::-;45907:25;;45951:1;45948;45945:8;45942:2;;;45956:18;;:::i;:::-;45942:2;46001:1;45998;45994:9;45986:17;;45863:146;;;;:::o;46015:191::-;;46075:20;46093:1;46075:20;:::i;:::-;46070:25;;46109:20;46127:1;46109:20;:::i;:::-;46104:25;;46148:1;46145;46142:8;46139:2;;;46153:18;;:::i;:::-;46139:2;46198:1;46195;46191:9;46183:17;;46060:146;;;;:::o;46212:96::-;;46278:24;46296:5;46278:24;:::i;:::-;46267:35;;46257:51;;;:::o;46314:90::-;;46391:5;46384:13;46377:21;46366:32;;46356:48;;;:::o;46410:77::-;;46476:5;46465:16;;46455:32;;;:::o;46493:149::-;;46569:66;46562:5;46558:78;46547:89;;46537:105;;;:::o;46648:118::-;;46725:34;46718:5;46714:46;46703:57;;46693:73;;;:::o;46772:126::-;;46849:42;46842:5;46838:54;46827:65;;46817:81;;;:::o;46904:77::-;;46970:5;46959:16;;46949:32;;;:::o;46987:101::-;;47063:18;47056:5;47052:30;47041:41;;47031:57;;;:::o;47094:86::-;;47169:4;47162:5;47158:16;47147:27;;47137:43;;;:::o;47186:154::-;47270:6;47265:3;47260;47247:30;47332:1;47323:6;47318:3;47314:16;47307:27;47237:103;;;:::o;47346:307::-;47414:1;47424:113;47438:6;47435:1;47432:13;47424:113;;;47523:1;47518:3;47514:11;47508:18;47504:1;47499:3;47495:11;47488:39;47460:2;47457:1;47453:10;47448:15;;47424:113;;;47555:6;47552:1;47549:13;47546:2;;;47635:1;47626:6;47621:3;47617:16;47610:27;47546:2;47395:258;;;;:::o;47659:171::-;;47721:24;47739:5;47721:24;:::i;:::-;47712:33;;47767:4;47760:5;47757:15;47754:2;;;47775:18;;:::i;:::-;47754:2;47822:1;47815:5;47811:13;47804:20;;47702:128;;;:::o;47836:320::-;;47917:1;47911:4;47907:12;47897:22;;47964:1;47958:4;47954:12;47985:18;47975:2;;48041:4;48033:6;48029:17;48019:27;;47975:2;48103;48095:6;48092:14;48072:18;48069:38;48066:2;;;48122:18;;:::i;:::-;48066:2;47887:269;;;;:::o;48162:233::-;;48224:24;48242:5;48224:24;:::i;:::-;48215:33;;48270:66;48263:5;48260:77;48257:2;;;48340:18;;:::i;:::-;48257:2;48387:1;48380:5;48376:13;48369:20;;48205:190;;;:::o;48401:79::-;;48469:5;48458:16;;48448:32;;;:::o;48486:176::-;;48535:20;48553:1;48535:20;:::i;:::-;48530:25;;48569:20;48587:1;48569:20;:::i;:::-;48564:25;;48608:1;48598:2;;48613:18;;:::i;:::-;48598:2;48654:1;48651;48647:9;48642:14;;48520:142;;;;:::o;48668:180::-;48716:77;48713:1;48706:88;48813:4;48810:1;48803:15;48837:4;48834:1;48827:15;48854:180;48902:77;48899:1;48892:88;48999:4;48996:1;48989:15;49023:4;49020:1;49013:15;49040:180;49088:77;49085:1;49078:88;49185:4;49182:1;49175:15;49209:4;49206:1;49199:15;49226:180;49274:77;49271:1;49264:88;49371:4;49368:1;49361:15;49395:4;49392:1;49385:15;49412:102;;49504:2;49500:7;49495:2;49488:5;49484:14;49480:28;49470:38;;49460:54;;;:::o;49520:122::-;49593:24;49611:5;49593:24;:::i;:::-;49586:5;49583:35;49573:2;;49632:1;49629;49622:12;49573:2;49563:79;:::o;49648:116::-;49718:21;49733:5;49718:21;:::i;:::-;49711:5;49708:32;49698:2;;49754:1;49751;49744:12;49698:2;49688:76;:::o;49770:122::-;49843:24;49861:5;49843:24;:::i;:::-;49836:5;49833:35;49823:2;;49882:1;49879;49872:12;49823:2;49813:79;:::o;49898:120::-;49970:23;49987:5;49970:23;:::i;:::-;49963:5;49960:34;49950:2;;50008:1;50005;49998:12;49950:2;49940:78;:::o;50024:122::-;50097:24;50115:5;50097:24;:::i;:::-;50090:5;50087:35;50077:2;;50136:1;50133;50126:12;50077:2;50067:79;:::o

Swarm Source

ipfs://66013e00f9e9445a69bffff0e21c6bcd532bb5a007b77afb0916d121d00f30c1
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.