ETH Price: $3,184.31 (+1.62%)
Gas: 6 Gwei

Token

NorfFc (NORFFC)
 

Overview

Max Total Supply

1,966 NORFFC

Holders

973

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 NORFFC
0x3c0c713419b2be829bb33ac26572a033d3d4767d
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:
NorfFC

Compiler Version
v0.8.7+commit.e28d00a7

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-11
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: tests/ERC721A.sol


// Creators: locationtba.eth, 2pmflow.eth

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..).
 *
 * 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 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.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

  /**
   * @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(totalSupply). 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(),".json"))
        : "";
  }

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  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 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 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:
   *
   * - `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 > currentIndex - 1) {
      endIndex = currentIndex - 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 {}
}
// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

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

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

pragma solidity ^0.8.0;



contract NorfFC is Ownable, ERC721A, ReentrancyGuard {

    
    
    
    uint256 constant MAX_ELEMENTS = 1966;    
    uint256 constant MAX_ELEMENT_PER_USER = 2;
    uint256 constant MAX_ELEMENTS_ONE_TIME = 2;
    

    // state variable
    bool public MINTING_PAUSED = true;
    string public baseTokenURI;
    string public _contractURI = "";
    mapping(address => uint256) private freeMemberList;

    constructor(uint256 maxBatchSize_) ERC721A("NorfFc", "NORFFC", maxBatchSize_) {}

    function setPauseMinting(bool _pause) public onlyOwner {
        MINTING_PAUSED = _pause;
    }

    function getMintCount(address _addr) public view returns (uint256) {
        return freeMemberList[_addr];
    }

    function freeMint(uint256 numberOfTokens) external payable {
        require(!MINTING_PAUSED, "Minting is not active");
        
        require(totalSupply() < MAX_ELEMENTS, 'All tokens have been minted');      
        require(freeMemberList[msg.sender] + numberOfTokens <= MAX_ELEMENT_PER_USER, 'Your free purchase would exceed max(2) supply');
        require(numberOfTokens <= MAX_ELEMENTS_ONE_TIME,"Purchase at a time exceeds max allowed");
        _safeMint(msg.sender, numberOfTokens);
        freeMemberList[msg.sender] += numberOfTokens;
    }

   

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }

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

    function setBaseURI(string calldata baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function setContractURI(string calldata URI) external onlyOwner {
        _contractURI = URI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","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":"MINTING_PAUSED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"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":[{"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":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPauseMinting","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":[],"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"}]

60a0604052600060015560006008556001600a60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600c9080519060200190620000509291906200026f565b503480156200005e57600080fd5b5060405162004a3538038062004a35833981810160405281019062000084919062000336565b6040518060400160405280600681526020017f4e6f7266466300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e4f524646430000000000000000000000000000000000000000000000000000815250826200011162000105620001a360201b60201c565b620001ab60201b60201c565b6000811162000157576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014e906200038f565b60405180910390fd5b82600290805190602001906200016f9291906200026f565b508160039080519060200190620001889291906200026f565b5080608081815250505050506001600981905550506200049f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027d90620003cc565b90600052602060002090601f016020900481019282620002a15760008555620002ed565b82601f10620002bc57805160ff1916838001178555620002ed565b82800160010185558215620002ed579182015b82811115620002ec578251825591602001919060010190620002cf565b5b509050620002fc919062000300565b5090565b5b808211156200031b57600081600090555060010162000301565b5090565b600081519050620003308162000485565b92915050565b6000602082840312156200034f576200034e62000431565b5b60006200035f848285016200031f565b91505092915050565b600062000377602783620003b1565b9150620003848262000436565b604082019050919050565b60006020820190508181036000830152620003aa8162000368565b9050919050565b600082825260208201905092915050565b6000819050919050565b60006002820490506001821680620003e557607f821691505b60208210811415620003fc57620003fb62000402565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6200049081620003c2565b81146200049c57600080fd5b50565b60805161456c620004c9600039600081816121330152818161215c015261281c015261456c6000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063c0e7274011610095578063e8a3d48511610064578063e8a3d48514610679578063e985e9c5146106a4578063f2fde38b146106e1578063f6e024a81461070a576101cd565b8063c0e72740146105bb578063c87b56dd146105e6578063d547cfb714610623578063d7224ba01461064e576101cd565b80639f2ec9f2116100d15780639f2ec9f214610503578063a22cb4651461052c578063a2801f5714610555578063b88d4fde14610592576101cd565b80638da5cb5b14610484578063938e3d7b146104af57806395d89b41146104d8576101cd565b80633ccfd60b1161016f5780636352211e1161013e5780636352211e146103d757806370a0823114610414578063715018a6146104515780637c928fe914610468576101cd565b80633ccfd60b1461033157806342842e0e146103485780634f6ccce71461037157806355f804b3146103ae576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190613049565b610735565b60405161020691906135ee565b60405180910390f35b34801561021b57600080fd5b5061022461087f565b6040516102319190613609565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906130f0565b610911565b60405161026e9190613587565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612fdc565b610996565b005b3480156102ac57600080fd5b506102b5610aaf565b6040516102c2919061392b565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612ec6565b610ab9565b005b34801561030057600080fd5b5061031b60048036038101906103169190612fdc565b610ac9565b604051610328919061392b565b60405180910390f35b34801561033d57600080fd5b50610346610cc7565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612ec6565b610d92565b005b34801561037d57600080fd5b50610398600480360381019061039391906130f0565b610db2565b6040516103a5919061392b565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d091906130a3565b610e05565b005b3480156103e357600080fd5b506103fe60048036038101906103f991906130f0565b610e97565b60405161040b9190613587565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190612e59565b610ead565b604051610448919061392b565b60405180910390f35b34801561045d57600080fd5b50610466610f96565b005b610482600480360381019061047d91906130f0565b61101e565b005b34801561049057600080fd5b506104996111ee565b6040516104a69190613587565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d191906130a3565b611217565b005b3480156104e457600080fd5b506104ed6112a9565b6040516104fa9190613609565b60405180910390f35b34801561050f57600080fd5b5061052a6004803603810190610525919061301c565b61133b565b005b34801561053857600080fd5b50610553600480360381019061054e9190612f9c565b6113d4565b005b34801561056157600080fd5b5061057c60048036038101906105779190612e59565b611555565b604051610589919061392b565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190612f19565b61159e565b005b3480156105c757600080fd5b506105d06115fa565b6040516105dd9190613609565b60405180910390f35b3480156105f257600080fd5b5061060d600480360381019061060891906130f0565b611688565b60405161061a9190613609565b60405180910390f35b34801561062f57600080fd5b5061063861172f565b6040516106459190613609565b60405180910390f35b34801561065a57600080fd5b506106636117bd565b604051610670919061392b565b60405180910390f35b34801561068557600080fd5b5061068e6117c3565b60405161069b9190613609565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190612e86565b611855565b6040516106d891906135ee565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190612e59565b6118e9565b005b34801561071657600080fd5b5061071f6119e1565b60405161072c91906135ee565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108785750610877826119f4565b5b9050919050565b60606002805461088e90613c10565b80601f01602080910402602001604051908101604052809291908181526020018280546108ba90613c10565b80156109075780601f106108dc57610100808354040283529160200191610907565b820191906000526020600020905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b600061091c82611a5e565b61095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906138eb565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a182610e97565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a09906137eb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a31611a6c565b73ffffffffffffffffffffffffffffffffffffffff161480610a605750610a5f81610a5a611a6c565b611855565b5b610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a96906136eb565b60405180910390fd5b610aaa838383611a74565b505050565b6000600154905090565b610ac4838383611b26565b505050565b6000610ad483610ead565b8210610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061362b565b60405180910390fd5b6000610b1f610aaf565b905060008060005b83811015610c85576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c1957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c715786841415610c62578195505050505050610cc1565b8380610c6d90613c73565b9450505b508080610c7d90613c73565b915050610b27565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb89061386b565b60405180910390fd5b92915050565b610ccf611a6c565b73ffffffffffffffffffffffffffffffffffffffff16610ced6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a9061374b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d8e573d6000803e3d6000fd5b5050565b610dad8383836040518060200160405280600081525061159e565b505050565b6000610dbc610aaf565b8210610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df49061368b565b60405180910390fd5b819050919050565b610e0d611a6c565b73ffffffffffffffffffffffffffffffffffffffff16610e2b6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e789061374b565b60405180910390fd5b8181600b9190610e92929190612c4d565b505050565b6000610ea2826120df565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f159061370b565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f9e611a6c565b73ffffffffffffffffffffffffffffffffffffffff16610fbc6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614611012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110099061374b565b60405180910390fd5b61101c60006122e2565b565b600a60009054906101000a900460ff161561106e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110659061376b565b60405180910390fd5b6107ae611079610aaf565b106110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b0906138cb565b60405180910390fd5b600281600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111069190613a25565b1115611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e906136cb565b60405180910390fd5b600281111561118b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611182906138ab565b60405180910390fd5b61119533826123a6565b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111e49190613a25565b9250508190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61121f611a6c565b73ffffffffffffffffffffffffffffffffffffffff1661123d6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a9061374b565b60405180910390fd5b8181600c91906112a4929190612c4d565b505050565b6060600380546112b890613c10565b80601f01602080910402602001604051908101604052809291908181526020018280546112e490613c10565b80156113315780601f1061130657610100808354040283529160200191611331565b820191906000526020600020905b81548152906001019060200180831161131457829003601f168201915b5050505050905090565b611343611a6c565b73ffffffffffffffffffffffffffffffffffffffff166113616111ee565b73ffffffffffffffffffffffffffffffffffffffff16146113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae9061374b565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6113dc611a6c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611441906137ab565b60405180910390fd5b8060076000611457611a6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611504611a6c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161154991906135ee565b60405180910390a35050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115a9848484611b26565b6115b5848484846123c4565b6115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb9061380b565b60405180910390fd5b50505050565b600c805461160790613c10565b80601f016020809104026020016040519081016040528092919081815260200182805461163390613c10565b80156116805780601f1061165557610100808354040283529160200191611680565b820191906000526020600020905b81548152906001019060200180831161166357829003601f168201915b505050505081565b606061169382611a5e565b6116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c99061378b565b60405180910390fd5b60006116dc61255b565b905060008151116116fc5760405180602001604052806000815250611727565b80611706846125ed565b604051602001611717929190613558565b6040516020818303038152906040525b915050919050565b600b805461173c90613c10565b80601f016020809104026020016040519081016040528092919081815260200182805461176890613c10565b80156117b55780601f1061178a576101008083540402835291602001916117b5565b820191906000526020600020905b81548152906001019060200180831161179857829003601f168201915b505050505081565b60085481565b6060600c80546117d290613c10565b80601f01602080910402602001604051908101604052809291908181526020018280546117fe90613c10565b801561184b5780601f106118205761010080835404028352916020019161184b565b820191906000526020600020905b81548152906001019060200180831161182e57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118f1611a6c565b73ffffffffffffffffffffffffffffffffffffffff1661190f6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c9061374b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc9061364b565b60405180910390fd5b6119de816122e2565b50565b600a60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b31826120df565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b58611a6c565b73ffffffffffffffffffffffffffffffffffffffff161480611bb45750611b7d611a6c565b73ffffffffffffffffffffffffffffffffffffffff16611b9c84610911565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bd05750611bcf8260000151611bca611a6c565b611855565b5b905080611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c09906137cb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b9061372b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb906136ab565b60405180910390fd5b611d01858585600161274e565b611d116000848460000151611a74565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d7f9190613aac565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e2391906139df565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f299190613a25565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561206f57611f9f81611a5e565b1561206e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120d78686866001612754565b505050505050565b6120e7612cd3565b6120f082611a5e565b61212f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121269061366b565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106121935760017f0000000000000000000000000000000000000000000000000000000000000000846121869190613ae0565b6121909190613a25565b90505b60008390505b8181106122a1576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461228d578093505050506122dd565b50808061229990613be6565b915050612199565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d49061388b565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123c082826040518060200160405280600081525061275a565b5050565b60006123e58473ffffffffffffffffffffffffffffffffffffffff16612c3a565b1561254e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261240e611a6c565b8786866040518563ffffffff1660e01b815260040161243094939291906135a2565b602060405180830381600087803b15801561244a57600080fd5b505af192505050801561247b57506040513d601f19601f820116820180604052508101906124789190613076565b60015b6124fe573d80600081146124ab576040519150601f19603f3d011682016040523d82523d6000602084013e6124b0565b606091505b506000815114156124f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ed9061380b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612553565b600190505b949350505050565b6060600b805461256a90613c10565b80601f016020809104026020016040519081016040528092919081815260200182805461259690613c10565b80156125e35780601f106125b8576101008083540402835291602001916125e3565b820191906000526020600020905b8154815290600101906020018083116125c657829003601f168201915b5050505050905090565b60606000821415612635576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612749565b600082905060005b6000821461266757808061265090613c73565b915050600a826126609190613a7b565b915061263d565b60008167ffffffffffffffff81111561268357612682613da9565b5b6040519080825280601f01601f1916602001820160405280156126b55781602001600182028036833780820191505090505b5090505b60008514612742576001826126ce9190613ae0565b9150600a856126dd9190613cbc565b60306126e99190613a25565b60f81b8183815181106126ff576126fe613d7a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561273b9190613a7b565b94506126b9565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c89061384b565b60405180910390fd5b6127da81611a5e565b1561281a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128119061382b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561287d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128749061390b565b60405180910390fd5b61288a600085838661274e565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161298791906139df565b6fffffffffffffffffffffffffffffffff1681526020018583602001516129ae91906139df565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c1d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bbd60008884886123c4565b612bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf39061380b565b60405180910390fd5b8180612c0790613c73565b9250508080612c1590613c73565b915050612b4c565b5080600181905550612c326000878588612754565b505050505050565b600080823b905060008111915050919050565b828054612c5990613c10565b90600052602060002090601f016020900481019282612c7b5760008555612cc2565b82601f10612c9457803560ff1916838001178555612cc2565b82800160010185558215612cc2579182015b82811115612cc1578235825591602001919060010190612ca6565b5b509050612ccf9190612d0d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612d26576000816000905550600101612d0e565b5090565b6000612d3d612d388461396b565b613946565b905082815260208101848484011115612d5957612d58613de7565b5b612d64848285613ba4565b509392505050565b600081359050612d7b816144da565b92915050565b600081359050612d90816144f1565b92915050565b600081359050612da581614508565b92915050565b600081519050612dba81614508565b92915050565b600082601f830112612dd557612dd4613ddd565b5b8135612de5848260208601612d2a565b91505092915050565b60008083601f840112612e0457612e03613ddd565b5b8235905067ffffffffffffffff811115612e2157612e20613dd8565b5b602083019150836001820283011115612e3d57612e3c613de2565b5b9250929050565b600081359050612e538161451f565b92915050565b600060208284031215612e6f57612e6e613df1565b5b6000612e7d84828501612d6c565b91505092915050565b60008060408385031215612e9d57612e9c613df1565b5b6000612eab85828601612d6c565b9250506020612ebc85828601612d6c565b9150509250929050565b600080600060608486031215612edf57612ede613df1565b5b6000612eed86828701612d6c565b9350506020612efe86828701612d6c565b9250506040612f0f86828701612e44565b9150509250925092565b60008060008060808587031215612f3357612f32613df1565b5b6000612f4187828801612d6c565b9450506020612f5287828801612d6c565b9350506040612f6387828801612e44565b925050606085013567ffffffffffffffff811115612f8457612f83613dec565b5b612f9087828801612dc0565b91505092959194509250565b60008060408385031215612fb357612fb2613df1565b5b6000612fc185828601612d6c565b9250506020612fd285828601612d81565b9150509250929050565b60008060408385031215612ff357612ff2613df1565b5b600061300185828601612d6c565b925050602061301285828601612e44565b9150509250929050565b60006020828403121561303257613031613df1565b5b600061304084828501612d81565b91505092915050565b60006020828403121561305f5761305e613df1565b5b600061306d84828501612d96565b91505092915050565b60006020828403121561308c5761308b613df1565b5b600061309a84828501612dab565b91505092915050565b600080602083850312156130ba576130b9613df1565b5b600083013567ffffffffffffffff8111156130d8576130d7613dec565b5b6130e485828601612dee565b92509250509250929050565b60006020828403121561310657613105613df1565b5b600061311484828501612e44565b91505092915050565b61312681613b14565b82525050565b61313581613b26565b82525050565b60006131468261399c565b61315081856139b2565b9350613160818560208601613bb3565b61316981613df6565b840191505092915050565b600061317f826139a7565b61318981856139c3565b9350613199818560208601613bb3565b6131a281613df6565b840191505092915050565b60006131b8826139a7565b6131c281856139d4565b93506131d2818560208601613bb3565b80840191505092915050565b60006131eb6022836139c3565b91506131f682613e07565b604082019050919050565b600061320e6026836139c3565b915061321982613e56565b604082019050919050565b6000613231602a836139c3565b915061323c82613ea5565b604082019050919050565b60006132546023836139c3565b915061325f82613ef4565b604082019050919050565b60006132776025836139c3565b915061328282613f43565b604082019050919050565b600061329a602d836139c3565b91506132a582613f92565b604082019050919050565b60006132bd6039836139c3565b91506132c882613fe1565b604082019050919050565b60006132e0602b836139c3565b91506132eb82614030565b604082019050919050565b60006133036026836139c3565b915061330e8261407f565b604082019050919050565b60006133266005836139d4565b9150613331826140ce565b600582019050919050565b60006133496020836139c3565b9150613354826140f7565b602082019050919050565b600061336c6015836139c3565b915061337782614120565b602082019050919050565b600061338f602f836139c3565b915061339a82614149565b604082019050919050565b60006133b2601a836139c3565b91506133bd82614198565b602082019050919050565b60006133d56032836139c3565b91506133e0826141c1565b604082019050919050565b60006133f86022836139c3565b915061340382614210565b604082019050919050565b600061341b6033836139c3565b91506134268261425f565b604082019050919050565b600061343e601d836139c3565b9150613449826142ae565b602082019050919050565b60006134616021836139c3565b915061346c826142d7565b604082019050919050565b6000613484602e836139c3565b915061348f82614326565b604082019050919050565b60006134a7602f836139c3565b91506134b282614375565b604082019050919050565b60006134ca6026836139c3565b91506134d5826143c4565b604082019050919050565b60006134ed601b836139c3565b91506134f882614413565b602082019050919050565b6000613510602d836139c3565b915061351b8261443c565b604082019050919050565b60006135336022836139c3565b915061353e8261448b565b604082019050919050565b61355281613b9a565b82525050565b600061356482856131ad565b915061357082846131ad565b915061357b82613319565b91508190509392505050565b600060208201905061359c600083018461311d565b92915050565b60006080820190506135b7600083018761311d565b6135c4602083018661311d565b6135d16040830185613549565b81810360608301526135e3818461313b565b905095945050505050565b6000602082019050613603600083018461312c565b92915050565b600060208201905081810360008301526136238184613174565b905092915050565b60006020820190508181036000830152613644816131de565b9050919050565b6000602082019050818103600083015261366481613201565b9050919050565b6000602082019050818103600083015261368481613224565b9050919050565b600060208201905081810360008301526136a481613247565b9050919050565b600060208201905081810360008301526136c48161326a565b9050919050565b600060208201905081810360008301526136e48161328d565b9050919050565b60006020820190508181036000830152613704816132b0565b9050919050565b60006020820190508181036000830152613724816132d3565b9050919050565b60006020820190508181036000830152613744816132f6565b9050919050565b600060208201905081810360008301526137648161333c565b9050919050565b600060208201905081810360008301526137848161335f565b9050919050565b600060208201905081810360008301526137a481613382565b9050919050565b600060208201905081810360008301526137c4816133a5565b9050919050565b600060208201905081810360008301526137e4816133c8565b9050919050565b60006020820190508181036000830152613804816133eb565b9050919050565b600060208201905081810360008301526138248161340e565b9050919050565b6000602082019050818103600083015261384481613431565b9050919050565b6000602082019050818103600083015261386481613454565b9050919050565b6000602082019050818103600083015261388481613477565b9050919050565b600060208201905081810360008301526138a48161349a565b9050919050565b600060208201905081810360008301526138c4816134bd565b9050919050565b600060208201905081810360008301526138e4816134e0565b9050919050565b6000602082019050818103600083015261390481613503565b9050919050565b6000602082019050818103600083015261392481613526565b9050919050565b60006020820190506139406000830184613549565b92915050565b6000613950613961565b905061395c8282613c42565b919050565b6000604051905090565b600067ffffffffffffffff82111561398657613985613da9565b5b61398f82613df6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139ea82613b5e565b91506139f583613b5e565b9250826fffffffffffffffffffffffffffffffff03821115613a1a57613a19613ced565b5b828201905092915050565b6000613a3082613b9a565b9150613a3b83613b9a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a7057613a6f613ced565b5b828201905092915050565b6000613a8682613b9a565b9150613a9183613b9a565b925082613aa157613aa0613d1c565b5b828204905092915050565b6000613ab782613b5e565b9150613ac283613b5e565b925082821015613ad557613ad4613ced565b5b828203905092915050565b6000613aeb82613b9a565b9150613af683613b9a565b925082821015613b0957613b08613ced565b5b828203905092915050565b6000613b1f82613b7a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613bd1578082015181840152602081019050613bb6565b83811115613be0576000848401525b50505050565b6000613bf182613b9a565b91506000821415613c0557613c04613ced565b5b600182039050919050565b60006002820490506001821680613c2857607f821691505b60208210811415613c3c57613c3b613d4b565b5b50919050565b613c4b82613df6565b810181811067ffffffffffffffff82111715613c6a57613c69613da9565b5b80604052505050565b6000613c7e82613b9a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cb157613cb0613ced565b5b600182019050919050565b6000613cc782613b9a565b9150613cd283613b9a565b925082613ce257613ce1613d1c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f596f7572206672656520707572636861736520776f756c64206578636565642060008201527f6d617828322920737570706c7900000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f507572636861736520617420612074696d652065786365656473206d6178206160008201527f6c6c6f7765640000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6144e381613b14565b81146144ee57600080fd5b50565b6144fa81613b26565b811461450557600080fd5b50565b61451181613b32565b811461451c57600080fd5b50565b61452881613b9a565b811461453357600080fd5b5056fea26469706673582212205bfc21b36953a4b5d46574f6b0250aac88aafe21f849f9ae82e0fb2cd956485f64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000007ae

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063c0e7274011610095578063e8a3d48511610064578063e8a3d48514610679578063e985e9c5146106a4578063f2fde38b146106e1578063f6e024a81461070a576101cd565b8063c0e72740146105bb578063c87b56dd146105e6578063d547cfb714610623578063d7224ba01461064e576101cd565b80639f2ec9f2116100d15780639f2ec9f214610503578063a22cb4651461052c578063a2801f5714610555578063b88d4fde14610592576101cd565b80638da5cb5b14610484578063938e3d7b146104af57806395d89b41146104d8576101cd565b80633ccfd60b1161016f5780636352211e1161013e5780636352211e146103d757806370a0823114610414578063715018a6146104515780637c928fe914610468576101cd565b80633ccfd60b1461033157806342842e0e146103485780634f6ccce71461037157806355f804b3146103ae576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190613049565b610735565b60405161020691906135ee565b60405180910390f35b34801561021b57600080fd5b5061022461087f565b6040516102319190613609565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906130f0565b610911565b60405161026e9190613587565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612fdc565b610996565b005b3480156102ac57600080fd5b506102b5610aaf565b6040516102c2919061392b565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612ec6565b610ab9565b005b34801561030057600080fd5b5061031b60048036038101906103169190612fdc565b610ac9565b604051610328919061392b565b60405180910390f35b34801561033d57600080fd5b50610346610cc7565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612ec6565b610d92565b005b34801561037d57600080fd5b50610398600480360381019061039391906130f0565b610db2565b6040516103a5919061392b565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d091906130a3565b610e05565b005b3480156103e357600080fd5b506103fe60048036038101906103f991906130f0565b610e97565b60405161040b9190613587565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190612e59565b610ead565b604051610448919061392b565b60405180910390f35b34801561045d57600080fd5b50610466610f96565b005b610482600480360381019061047d91906130f0565b61101e565b005b34801561049057600080fd5b506104996111ee565b6040516104a69190613587565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d191906130a3565b611217565b005b3480156104e457600080fd5b506104ed6112a9565b6040516104fa9190613609565b60405180910390f35b34801561050f57600080fd5b5061052a6004803603810190610525919061301c565b61133b565b005b34801561053857600080fd5b50610553600480360381019061054e9190612f9c565b6113d4565b005b34801561056157600080fd5b5061057c60048036038101906105779190612e59565b611555565b604051610589919061392b565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190612f19565b61159e565b005b3480156105c757600080fd5b506105d06115fa565b6040516105dd9190613609565b60405180910390f35b3480156105f257600080fd5b5061060d600480360381019061060891906130f0565b611688565b60405161061a9190613609565b60405180910390f35b34801561062f57600080fd5b5061063861172f565b6040516106459190613609565b60405180910390f35b34801561065a57600080fd5b506106636117bd565b604051610670919061392b565b60405180910390f35b34801561068557600080fd5b5061068e6117c3565b60405161069b9190613609565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190612e86565b611855565b6040516106d891906135ee565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190612e59565b6118e9565b005b34801561071657600080fd5b5061071f6119e1565b60405161072c91906135ee565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108785750610877826119f4565b5b9050919050565b60606002805461088e90613c10565b80601f01602080910402602001604051908101604052809291908181526020018280546108ba90613c10565b80156109075780601f106108dc57610100808354040283529160200191610907565b820191906000526020600020905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b600061091c82611a5e565b61095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906138eb565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a182610e97565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a09906137eb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a31611a6c565b73ffffffffffffffffffffffffffffffffffffffff161480610a605750610a5f81610a5a611a6c565b611855565b5b610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a96906136eb565b60405180910390fd5b610aaa838383611a74565b505050565b6000600154905090565b610ac4838383611b26565b505050565b6000610ad483610ead565b8210610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061362b565b60405180910390fd5b6000610b1f610aaf565b905060008060005b83811015610c85576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c1957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c715786841415610c62578195505050505050610cc1565b8380610c6d90613c73565b9450505b508080610c7d90613c73565b915050610b27565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb89061386b565b60405180910390fd5b92915050565b610ccf611a6c565b73ffffffffffffffffffffffffffffffffffffffff16610ced6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a9061374b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d8e573d6000803e3d6000fd5b5050565b610dad8383836040518060200160405280600081525061159e565b505050565b6000610dbc610aaf565b8210610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df49061368b565b60405180910390fd5b819050919050565b610e0d611a6c565b73ffffffffffffffffffffffffffffffffffffffff16610e2b6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e789061374b565b60405180910390fd5b8181600b9190610e92929190612c4d565b505050565b6000610ea2826120df565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f159061370b565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f9e611a6c565b73ffffffffffffffffffffffffffffffffffffffff16610fbc6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614611012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110099061374b565b60405180910390fd5b61101c60006122e2565b565b600a60009054906101000a900460ff161561106e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110659061376b565b60405180910390fd5b6107ae611079610aaf565b106110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b0906138cb565b60405180910390fd5b600281600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111069190613a25565b1115611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e906136cb565b60405180910390fd5b600281111561118b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611182906138ab565b60405180910390fd5b61119533826123a6565b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111e49190613a25565b9250508190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61121f611a6c565b73ffffffffffffffffffffffffffffffffffffffff1661123d6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a9061374b565b60405180910390fd5b8181600c91906112a4929190612c4d565b505050565b6060600380546112b890613c10565b80601f01602080910402602001604051908101604052809291908181526020018280546112e490613c10565b80156113315780601f1061130657610100808354040283529160200191611331565b820191906000526020600020905b81548152906001019060200180831161131457829003601f168201915b5050505050905090565b611343611a6c565b73ffffffffffffffffffffffffffffffffffffffff166113616111ee565b73ffffffffffffffffffffffffffffffffffffffff16146113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae9061374b565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6113dc611a6c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611441906137ab565b60405180910390fd5b8060076000611457611a6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611504611a6c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161154991906135ee565b60405180910390a35050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115a9848484611b26565b6115b5848484846123c4565b6115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb9061380b565b60405180910390fd5b50505050565b600c805461160790613c10565b80601f016020809104026020016040519081016040528092919081815260200182805461163390613c10565b80156116805780601f1061165557610100808354040283529160200191611680565b820191906000526020600020905b81548152906001019060200180831161166357829003601f168201915b505050505081565b606061169382611a5e565b6116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c99061378b565b60405180910390fd5b60006116dc61255b565b905060008151116116fc5760405180602001604052806000815250611727565b80611706846125ed565b604051602001611717929190613558565b6040516020818303038152906040525b915050919050565b600b805461173c90613c10565b80601f016020809104026020016040519081016040528092919081815260200182805461176890613c10565b80156117b55780601f1061178a576101008083540402835291602001916117b5565b820191906000526020600020905b81548152906001019060200180831161179857829003601f168201915b505050505081565b60085481565b6060600c80546117d290613c10565b80601f01602080910402602001604051908101604052809291908181526020018280546117fe90613c10565b801561184b5780601f106118205761010080835404028352916020019161184b565b820191906000526020600020905b81548152906001019060200180831161182e57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118f1611a6c565b73ffffffffffffffffffffffffffffffffffffffff1661190f6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c9061374b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc9061364b565b60405180910390fd5b6119de816122e2565b50565b600a60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b31826120df565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b58611a6c565b73ffffffffffffffffffffffffffffffffffffffff161480611bb45750611b7d611a6c565b73ffffffffffffffffffffffffffffffffffffffff16611b9c84610911565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bd05750611bcf8260000151611bca611a6c565b611855565b5b905080611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c09906137cb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b9061372b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb906136ab565b60405180910390fd5b611d01858585600161274e565b611d116000848460000151611a74565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d7f9190613aac565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e2391906139df565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f299190613a25565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561206f57611f9f81611a5e565b1561206e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120d78686866001612754565b505050505050565b6120e7612cd3565b6120f082611a5e565b61212f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121269061366b565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000007ae83106121935760017f00000000000000000000000000000000000000000000000000000000000007ae846121869190613ae0565b6121909190613a25565b90505b60008390505b8181106122a1576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461228d578093505050506122dd565b50808061229990613be6565b915050612199565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d49061388b565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123c082826040518060200160405280600081525061275a565b5050565b60006123e58473ffffffffffffffffffffffffffffffffffffffff16612c3a565b1561254e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261240e611a6c565b8786866040518563ffffffff1660e01b815260040161243094939291906135a2565b602060405180830381600087803b15801561244a57600080fd5b505af192505050801561247b57506040513d601f19601f820116820180604052508101906124789190613076565b60015b6124fe573d80600081146124ab576040519150601f19603f3d011682016040523d82523d6000602084013e6124b0565b606091505b506000815114156124f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ed9061380b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612553565b600190505b949350505050565b6060600b805461256a90613c10565b80601f016020809104026020016040519081016040528092919081815260200182805461259690613c10565b80156125e35780601f106125b8576101008083540402835291602001916125e3565b820191906000526020600020905b8154815290600101906020018083116125c657829003601f168201915b5050505050905090565b60606000821415612635576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612749565b600082905060005b6000821461266757808061265090613c73565b915050600a826126609190613a7b565b915061263d565b60008167ffffffffffffffff81111561268357612682613da9565b5b6040519080825280601f01601f1916602001820160405280156126b55781602001600182028036833780820191505090505b5090505b60008514612742576001826126ce9190613ae0565b9150600a856126dd9190613cbc565b60306126e99190613a25565b60f81b8183815181106126ff576126fe613d7a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561273b9190613a7b565b94506126b9565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c89061384b565b60405180910390fd5b6127da81611a5e565b1561281a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128119061382b565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000007ae83111561287d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128749061390b565b60405180910390fd5b61288a600085838661274e565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161298791906139df565b6fffffffffffffffffffffffffffffffff1681526020018583602001516129ae91906139df565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c1d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bbd60008884886123c4565b612bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf39061380b565b60405180910390fd5b8180612c0790613c73565b9250508080612c1590613c73565b915050612b4c565b5080600181905550612c326000878588612754565b505050505050565b600080823b905060008111915050919050565b828054612c5990613c10565b90600052602060002090601f016020900481019282612c7b5760008555612cc2565b82601f10612c9457803560ff1916838001178555612cc2565b82800160010185558215612cc2579182015b82811115612cc1578235825591602001919060010190612ca6565b5b509050612ccf9190612d0d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612d26576000816000905550600101612d0e565b5090565b6000612d3d612d388461396b565b613946565b905082815260208101848484011115612d5957612d58613de7565b5b612d64848285613ba4565b509392505050565b600081359050612d7b816144da565b92915050565b600081359050612d90816144f1565b92915050565b600081359050612da581614508565b92915050565b600081519050612dba81614508565b92915050565b600082601f830112612dd557612dd4613ddd565b5b8135612de5848260208601612d2a565b91505092915050565b60008083601f840112612e0457612e03613ddd565b5b8235905067ffffffffffffffff811115612e2157612e20613dd8565b5b602083019150836001820283011115612e3d57612e3c613de2565b5b9250929050565b600081359050612e538161451f565b92915050565b600060208284031215612e6f57612e6e613df1565b5b6000612e7d84828501612d6c565b91505092915050565b60008060408385031215612e9d57612e9c613df1565b5b6000612eab85828601612d6c565b9250506020612ebc85828601612d6c565b9150509250929050565b600080600060608486031215612edf57612ede613df1565b5b6000612eed86828701612d6c565b9350506020612efe86828701612d6c565b9250506040612f0f86828701612e44565b9150509250925092565b60008060008060808587031215612f3357612f32613df1565b5b6000612f4187828801612d6c565b9450506020612f5287828801612d6c565b9350506040612f6387828801612e44565b925050606085013567ffffffffffffffff811115612f8457612f83613dec565b5b612f9087828801612dc0565b91505092959194509250565b60008060408385031215612fb357612fb2613df1565b5b6000612fc185828601612d6c565b9250506020612fd285828601612d81565b9150509250929050565b60008060408385031215612ff357612ff2613df1565b5b600061300185828601612d6c565b925050602061301285828601612e44565b9150509250929050565b60006020828403121561303257613031613df1565b5b600061304084828501612d81565b91505092915050565b60006020828403121561305f5761305e613df1565b5b600061306d84828501612d96565b91505092915050565b60006020828403121561308c5761308b613df1565b5b600061309a84828501612dab565b91505092915050565b600080602083850312156130ba576130b9613df1565b5b600083013567ffffffffffffffff8111156130d8576130d7613dec565b5b6130e485828601612dee565b92509250509250929050565b60006020828403121561310657613105613df1565b5b600061311484828501612e44565b91505092915050565b61312681613b14565b82525050565b61313581613b26565b82525050565b60006131468261399c565b61315081856139b2565b9350613160818560208601613bb3565b61316981613df6565b840191505092915050565b600061317f826139a7565b61318981856139c3565b9350613199818560208601613bb3565b6131a281613df6565b840191505092915050565b60006131b8826139a7565b6131c281856139d4565b93506131d2818560208601613bb3565b80840191505092915050565b60006131eb6022836139c3565b91506131f682613e07565b604082019050919050565b600061320e6026836139c3565b915061321982613e56565b604082019050919050565b6000613231602a836139c3565b915061323c82613ea5565b604082019050919050565b60006132546023836139c3565b915061325f82613ef4565b604082019050919050565b60006132776025836139c3565b915061328282613f43565b604082019050919050565b600061329a602d836139c3565b91506132a582613f92565b604082019050919050565b60006132bd6039836139c3565b91506132c882613fe1565b604082019050919050565b60006132e0602b836139c3565b91506132eb82614030565b604082019050919050565b60006133036026836139c3565b915061330e8261407f565b604082019050919050565b60006133266005836139d4565b9150613331826140ce565b600582019050919050565b60006133496020836139c3565b9150613354826140f7565b602082019050919050565b600061336c6015836139c3565b915061337782614120565b602082019050919050565b600061338f602f836139c3565b915061339a82614149565b604082019050919050565b60006133b2601a836139c3565b91506133bd82614198565b602082019050919050565b60006133d56032836139c3565b91506133e0826141c1565b604082019050919050565b60006133f86022836139c3565b915061340382614210565b604082019050919050565b600061341b6033836139c3565b91506134268261425f565b604082019050919050565b600061343e601d836139c3565b9150613449826142ae565b602082019050919050565b60006134616021836139c3565b915061346c826142d7565b604082019050919050565b6000613484602e836139c3565b915061348f82614326565b604082019050919050565b60006134a7602f836139c3565b91506134b282614375565b604082019050919050565b60006134ca6026836139c3565b91506134d5826143c4565b604082019050919050565b60006134ed601b836139c3565b91506134f882614413565b602082019050919050565b6000613510602d836139c3565b915061351b8261443c565b604082019050919050565b60006135336022836139c3565b915061353e8261448b565b604082019050919050565b61355281613b9a565b82525050565b600061356482856131ad565b915061357082846131ad565b915061357b82613319565b91508190509392505050565b600060208201905061359c600083018461311d565b92915050565b60006080820190506135b7600083018761311d565b6135c4602083018661311d565b6135d16040830185613549565b81810360608301526135e3818461313b565b905095945050505050565b6000602082019050613603600083018461312c565b92915050565b600060208201905081810360008301526136238184613174565b905092915050565b60006020820190508181036000830152613644816131de565b9050919050565b6000602082019050818103600083015261366481613201565b9050919050565b6000602082019050818103600083015261368481613224565b9050919050565b600060208201905081810360008301526136a481613247565b9050919050565b600060208201905081810360008301526136c48161326a565b9050919050565b600060208201905081810360008301526136e48161328d565b9050919050565b60006020820190508181036000830152613704816132b0565b9050919050565b60006020820190508181036000830152613724816132d3565b9050919050565b60006020820190508181036000830152613744816132f6565b9050919050565b600060208201905081810360008301526137648161333c565b9050919050565b600060208201905081810360008301526137848161335f565b9050919050565b600060208201905081810360008301526137a481613382565b9050919050565b600060208201905081810360008301526137c4816133a5565b9050919050565b600060208201905081810360008301526137e4816133c8565b9050919050565b60006020820190508181036000830152613804816133eb565b9050919050565b600060208201905081810360008301526138248161340e565b9050919050565b6000602082019050818103600083015261384481613431565b9050919050565b6000602082019050818103600083015261386481613454565b9050919050565b6000602082019050818103600083015261388481613477565b9050919050565b600060208201905081810360008301526138a48161349a565b9050919050565b600060208201905081810360008301526138c4816134bd565b9050919050565b600060208201905081810360008301526138e4816134e0565b9050919050565b6000602082019050818103600083015261390481613503565b9050919050565b6000602082019050818103600083015261392481613526565b9050919050565b60006020820190506139406000830184613549565b92915050565b6000613950613961565b905061395c8282613c42565b919050565b6000604051905090565b600067ffffffffffffffff82111561398657613985613da9565b5b61398f82613df6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139ea82613b5e565b91506139f583613b5e565b9250826fffffffffffffffffffffffffffffffff03821115613a1a57613a19613ced565b5b828201905092915050565b6000613a3082613b9a565b9150613a3b83613b9a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a7057613a6f613ced565b5b828201905092915050565b6000613a8682613b9a565b9150613a9183613b9a565b925082613aa157613aa0613d1c565b5b828204905092915050565b6000613ab782613b5e565b9150613ac283613b5e565b925082821015613ad557613ad4613ced565b5b828203905092915050565b6000613aeb82613b9a565b9150613af683613b9a565b925082821015613b0957613b08613ced565b5b828203905092915050565b6000613b1f82613b7a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613bd1578082015181840152602081019050613bb6565b83811115613be0576000848401525b50505050565b6000613bf182613b9a565b91506000821415613c0557613c04613ced565b5b600182039050919050565b60006002820490506001821680613c2857607f821691505b60208210811415613c3c57613c3b613d4b565b5b50919050565b613c4b82613df6565b810181811067ffffffffffffffff82111715613c6a57613c69613da9565b5b80604052505050565b6000613c7e82613b9a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cb157613cb0613ced565b5b600182019050919050565b6000613cc782613b9a565b9150613cd283613b9a565b925082613ce257613ce1613d1c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f596f7572206672656520707572636861736520776f756c64206578636565642060008201527f6d617828322920737570706c7900000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f507572636861736520617420612074696d652065786365656473206d6178206160008201527f6c6c6f7765640000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6144e381613b14565b81146144ee57600080fd5b50565b6144fa81613b26565b811461450557600080fd5b50565b61451181613b32565b811461451c57600080fd5b50565b61452881613b9a565b811461453357600080fd5b5056fea26469706673582212205bfc21b36953a4b5d46574f6b0250aac88aafe21f849f9ae82e0fb2cd956485f64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000007ae

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 1966

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000007ae


Deployed Bytecode Sourcemap

44465:1912:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24326:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26052:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27585:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27148:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22890:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28435:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23518:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45781:147;;;;;;;;;;;;;:::i;:::-;;28640:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23053:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46057:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25875:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24752:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38261:103;;;;;;;;;;;;;:::i;:::-;;45205:561;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37610:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46168:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26207:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44978:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27853:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45083:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28860:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44793:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26368:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44760:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33191:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46277:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28190:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38519:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44720:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24326:370;24453:4;24498:25;24483:40;;;:11;:40;;;;:99;;;;24549:33;24534:48;;;:11;:48;;;;24483:99;:160;;;;24608:35;24593:50;;;:11;:50;;;;24483:160;:207;;;;24654:36;24678:11;24654:23;:36::i;:::-;24483:207;24469:221;;24326:370;;;:::o;26052:94::-;26106:13;26135:5;26128:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26052:94;:::o;27585:204::-;27653:7;27677:16;27685:7;27677;:16::i;:::-;27669:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27759:15;:24;27775:7;27759:24;;;;;;;;;;;;;;;;;;;;;27752:31;;27585:204;;;:::o;27148:379::-;27217:13;27233:24;27249:7;27233:15;:24::i;:::-;27217:40;;27278:5;27272:11;;:2;:11;;;;27264:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27363:5;27347:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27372:37;27389:5;27396:12;:10;:12::i;:::-;27372:16;:37::i;:::-;27347:62;27331:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;27493:28;27502:2;27506:7;27515:5;27493:8;:28::i;:::-;27210:317;27148:379;;:::o;22890:94::-;22943:7;22966:12;;22959:19;;22890:94;:::o;28435:142::-;28543:28;28553:4;28559:2;28563:7;28543:9;:28::i;:::-;28435:142;;;:::o;23518:744::-;23627:7;23662:16;23672:5;23662:9;:16::i;:::-;23654:5;:24;23646:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23724:22;23749:13;:11;:13::i;:::-;23724:38;;23769:19;23799:25;23849:9;23844:350;23868:14;23864:1;:18;23844:350;;;23898:31;23932:11;:14;23944:1;23932:14;;;;;;;;;;;23898:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23985:1;23959:28;;:9;:14;;;:28;;;23955:89;;24020:9;:14;;;24000:34;;23955:89;24077:5;24056:26;;:17;:26;;;24052:135;;;24114:5;24099:11;:20;24095:59;;;24141:1;24134:8;;;;;;;;;24095:59;24164:13;;;;;:::i;:::-;;;;24052:135;23889:305;23884:3;;;;;:::i;:::-;;;;23844:350;;;;24200:56;;;;;;;;;;:::i;:::-;;;;;;;;23518:744;;;;;:::o;45781:147::-;37841:12;:10;:12::i;:::-;37830:23;;:7;:5;:7::i;:::-;:23;;;37822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45831:15:::1;45849:21;45831:39;;45891:10;45883:28;;:37;45912:7;45883:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45820:108;45781:147::o:0;28640:157::-;28752:39;28769:4;28775:2;28779:7;28752:39;;;;;;;;;;;;:16;:39::i;:::-;28640:157;;;:::o;23053:177::-;23120:7;23152:13;:11;:13::i;:::-;23144:5;:21;23136:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23219:5;23212:12;;23053:177;;;:::o;46057:103::-;37841:12;:10;:12::i;:::-;37830:23;;:7;:5;:7::i;:::-;:23;;;37822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46145:7:::1;;46130:12;:22;;;;;;;:::i;:::-;;46057:103:::0;;:::o;25875:118::-;25939:7;25962:20;25974:7;25962:11;:20::i;:::-;:25;;;25955:32;;25875:118;;;:::o;24752:211::-;24816:7;24857:1;24840:19;;:5;:19;;;;24832:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;24929:12;:19;24942:5;24929:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24921:36;;24914:43;;24752:211;;;:::o;38261:103::-;37841:12;:10;:12::i;:::-;37830:23;;:7;:5;:7::i;:::-;:23;;;37822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38326:30:::1;38353:1;38326:18;:30::i;:::-;38261:103::o:0;45205:561::-;45284:14;;;;;;;;;;;45283:15;45275:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44577:4;45353:13;:11;:13::i;:::-;:28;45345:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44632:1;45467:14;45438;:26;45453:10;45438:26;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:67;;45430:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;44681:1;45574:14;:39;;45566:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;45666:37;45676:10;45688:14;45666:9;:37::i;:::-;45744:14;45714;:26;45729:10;45714:26;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;45205:561;:::o;37610:87::-;37656:7;37683:6;;;;;;;;;;;37676:13;;37610:87;:::o;46168:101::-;37841:12;:10;:12::i;:::-;37830:23;;:7;:5;:7::i;:::-;:23;;;37822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46258:3:::1;;46243:12;:18;;;;;;;:::i;:::-;;46168:101:::0;;:::o;26207:98::-;26263:13;26292:7;26285:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26207:98;:::o;44978:97::-;37841:12;:10;:12::i;:::-;37830:23;;:7;:5;:7::i;:::-;:23;;;37822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45061:6:::1;45044:14;;:23;;;;;;;;;;;;;;;;;;44978:97:::0;:::o;27853:274::-;27956:12;:10;:12::i;:::-;27944:24;;:8;:24;;;;27936:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28053:8;28008:18;:32;28027:12;:10;:12::i;:::-;28008:32;;;;;;;;;;;;;;;:42;28041:8;28008:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28102:8;28073:48;;28088:12;:10;:12::i;:::-;28073:48;;;28112:8;28073:48;;;;;;:::i;:::-;;;;;;;;27853:274;;:::o;45083:114::-;45141:7;45168:14;:21;45183:5;45168:21;;;;;;;;;;;;;;;;45161:28;;45083:114;;;:::o;28860:311::-;28997:28;29007:4;29013:2;29017:7;28997:9;:28::i;:::-;29048:48;29071:4;29077:2;29081:7;29090:5;29048:22;:48::i;:::-;29032:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;28860:311;;;;:::o;44793:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26368:402::-;26466:13;26507:16;26515:7;26507;:16::i;:::-;26491:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;26597:21;26621:10;:8;:10::i;:::-;26597:34;;26676:1;26658:7;26652:21;:25;:112;;;;;;;;;;;;;;;;;26713:7;26722:18;:7;:16;:18::i;:::-;26696:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26652:112;26638:126;;;26368:402;;;:::o;44760:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33191:43::-;;;;:::o;46277:97::-;46321:13;46354:12;46347:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46277:97;:::o;28190:186::-;28312:4;28335:18;:25;28354:5;28335:25;;;;;;;;;;;;;;;:35;28361:8;28335:35;;;;;;;;;;;;;;;;;;;;;;;;;28328:42;;28190:186;;;;:::o;38519:201::-;37841:12;:10;:12::i;:::-;37830:23;;:7;:5;:7::i;:::-;:23;;;37822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38628:1:::1;38608:22;;:8;:22;;;;38600:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38684:28;38703:8;38684:18;:28::i;:::-;38519:201:::0;:::o;44720:33::-;;;;;;;;;;;;;:::o;13121:157::-;13206:4;13245:25;13230:40;;;:11;:40;;;;13223:47;;13121:157;;;:::o;29410:105::-;29467:4;29497:12;;29487:7;:22;29480:29;;29410:105;;;:::o;20712:98::-;20765:7;20792:10;20785:17;;20712:98;:::o;33013:172::-;33137:2;33110:15;:24;33126:7;33110:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33171:7;33167:2;33151:28;;33160:5;33151:28;;;;;;;;;;;;33013:172;;;:::o;31378:1529::-;31475:35;31513:20;31525:7;31513:11;:20::i;:::-;31475:58;;31542:22;31584:13;:18;;;31568:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;31637:12;:10;:12::i;:::-;31613:36;;:20;31625:7;31613:11;:20::i;:::-;:36;;;31568:81;:142;;;;31660:50;31677:13;:18;;;31697:12;:10;:12::i;:::-;31660:16;:50::i;:::-;31568:142;31542:169;;31736:17;31720:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;31868:4;31846:26;;:13;:18;;;:26;;;31830:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;31957:1;31943:16;;:2;:16;;;;31935:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32010:43;32032:4;32038:2;32042:7;32051:1;32010:21;:43::i;:::-;32110:49;32127:1;32131:7;32140:13;:18;;;32110:8;:49::i;:::-;32198:1;32168:12;:18;32181:4;32168:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32234:1;32206:12;:16;32219:2;32206:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32265:43;;;;;;;;32280:2;32265:43;;;;;;32291:15;32265:43;;;;;32242:11;:20;32254:7;32242:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32536:19;32568:1;32558:7;:11;;;;:::i;:::-;32536:33;;32621:1;32580:43;;:11;:24;32592:11;32580:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;32576:236;;;32638:20;32646:11;32638:7;:20::i;:::-;32634:171;;;32698:97;;;;;;;;32725:13;:18;;;32698:97;;;;;;32756:13;:28;;;32698:97;;;;;32671:11;:24;32683:11;32671:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32634:171;32576:236;32844:7;32840:2;32825:27;;32834:4;32825:27;;;;;;;;;;;;32859:42;32880:4;32886:2;32890:7;32899:1;32859:20;:42::i;:::-;31468:1439;;;31378:1529;;;:::o;25215:606::-;25291:21;;:::i;:::-;25332:16;25340:7;25332;:16::i;:::-;25324:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25404:26;25452:12;25441:7;:23;25437:93;;25521:1;25506:12;25496:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;25475:47;;25437:93;25543:12;25558:7;25543:22;;25538:212;25575:18;25567:4;:26;25538:212;;25612:31;25646:11;:17;25658:4;25646:17;;;;;;;;;;;25612:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25702:1;25676:28;;:9;:14;;;:28;;;25672:71;;25724:9;25717:16;;;;;;;25672:71;25603:147;25595:6;;;;;:::i;:::-;;;;25538:212;;;;25758:57;;;;;;;;;;:::i;:::-;;;;;;;;25215:606;;;;:::o;38880:191::-;38954:16;38973:6;;;;;;;;;;;38954:25;;38999:8;38990:6;;:17;;;;;;;;;;;;;;;;;;39054:8;39023:40;;39044:8;39023:40;;;;;;;;;;;;38943:128;38880:191;:::o;29521:98::-;29586:27;29596:2;29600:8;29586:27;;;;;;;;;;;;:9;:27::i;:::-;29521:98;;:::o;34724:690::-;34861:4;34878:15;:2;:13;;;:15::i;:::-;34874:535;;;34933:2;34917:36;;;34954:12;:10;:12::i;:::-;34968:4;34974:7;34983:5;34917:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34904:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35165:1;35148:6;:13;:18;35144:215;;;35181:61;;;;;;;;;;:::i;:::-;;;;;;;;35144:215;35327:6;35321:13;35312:6;35308:2;35304:15;35297:38;34904:464;35049:45;;;35039:55;;;:6;:55;;;;35032:62;;;;;34874:535;35397:4;35390:11;;34724:690;;;;;;;:::o;45936:113::-;45996:13;46029:12;46022:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45936:113;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;35876:141::-;;;;;:::o;36403:140::-;;;;;:::o;29874:1272::-;29979:20;30002:12;;29979:35;;30043:1;30029:16;;:2;:16;;;;30021:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30220:21;30228:12;30220:7;:21::i;:::-;30219:22;30211:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30302:12;30290:8;:24;;30282:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30362:61;30392:1;30396:2;30400:12;30414:8;30362:21;:61::i;:::-;30432:30;30465:12;:16;30478:2;30465:16;;;;;;;;;;;;;;;30432:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30507:119;;;;;;;;30557:8;30527:11;:19;;;:39;;;;:::i;:::-;30507:119;;;;;;30610:8;30575:11;:24;;;:44;;;;:::i;:::-;30507:119;;;;;30488:12;:16;30501:2;30488:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30661:43;;;;;;;;30676:2;30661:43;;;;;;30687:15;30661:43;;;;;30633:11;:25;30645:12;30633:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30713:20;30736:12;30713:35;;30762:9;30757:281;30781:8;30777:1;:12;30757:281;;;30835:12;30831:2;30810:38;;30827:1;30810:38;;;;;;;;;;;;30875:59;30906:1;30910:2;30914:12;30928:5;30875:22;:59::i;:::-;30857:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31016:14;;;;;:::i;:::-;;;;30791:3;;;;;:::i;:::-;;;;30757:281;;;;31061:12;31046;:27;;;;31080:60;31109:1;31113:2;31117:12;31131:8;31080:20;:60::i;:::-;29972:1174;;;29874:1272;;;:::o;2977:387::-;3037:4;3245:12;3312:7;3300:20;3292:28;;3355:1;3348:4;:8;3341:15;;;2977:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:323::-;5471:6;5520:2;5508:9;5499:7;5495:23;5491:32;5488:119;;;5526:79;;:::i;:::-;5488:119;5646:1;5671:50;5713:7;5704:6;5693:9;5689:22;5671:50;:::i;:::-;5661:60;;5617:114;5415:323;;;;:::o;5744:327::-;5802:6;5851:2;5839:9;5830:7;5826:23;5822:32;5819:119;;;5857:79;;:::i;:::-;5819:119;5977:1;6002:52;6046:7;6037:6;6026:9;6022:22;6002:52;:::i;:::-;5992:62;;5948:116;5744:327;;;;:::o;6077:349::-;6146:6;6195:2;6183:9;6174:7;6170:23;6166:32;6163:119;;;6201:79;;:::i;:::-;6163:119;6321:1;6346:63;6401:7;6392:6;6381:9;6377:22;6346:63;:::i;:::-;6336:73;;6292:127;6077:349;;;;:::o;6432:529::-;6503:6;6511;6560:2;6548:9;6539:7;6535:23;6531:32;6528:119;;;6566:79;;:::i;:::-;6528:119;6714:1;6703:9;6699:17;6686:31;6744:18;6736:6;6733:30;6730:117;;;6766:79;;:::i;:::-;6730:117;6879:65;6936:7;6927:6;6916:9;6912:22;6879:65;:::i;:::-;6861:83;;;;6657:297;6432:529;;;;;:::o;6967:329::-;7026:6;7075:2;7063:9;7054:7;7050:23;7046:32;7043:119;;;7081:79;;:::i;:::-;7043:119;7201:1;7226:53;7271:7;7262:6;7251:9;7247:22;7226:53;:::i;:::-;7216:63;;7172:117;6967:329;;;;:::o;7302:118::-;7389:24;7407:5;7389:24;:::i;:::-;7384:3;7377:37;7302:118;;:::o;7426:109::-;7507:21;7522:5;7507:21;:::i;:::-;7502:3;7495:34;7426:109;;:::o;7541:360::-;7627:3;7655:38;7687:5;7655:38;:::i;:::-;7709:70;7772:6;7767:3;7709:70;:::i;:::-;7702:77;;7788:52;7833:6;7828:3;7821:4;7814:5;7810:16;7788:52;:::i;:::-;7865:29;7887:6;7865:29;:::i;:::-;7860:3;7856:39;7849:46;;7631:270;7541:360;;;;:::o;7907:364::-;7995:3;8023:39;8056:5;8023:39;:::i;:::-;8078:71;8142:6;8137:3;8078:71;:::i;:::-;8071:78;;8158:52;8203:6;8198:3;8191:4;8184:5;8180:16;8158:52;:::i;:::-;8235:29;8257:6;8235:29;:::i;:::-;8230:3;8226:39;8219:46;;7999:272;7907:364;;;;:::o;8277:377::-;8383:3;8411:39;8444:5;8411:39;:::i;:::-;8466:89;8548:6;8543:3;8466:89;:::i;:::-;8459:96;;8564:52;8609:6;8604:3;8597:4;8590:5;8586:16;8564:52;:::i;:::-;8641:6;8636:3;8632:16;8625:23;;8387:267;8277:377;;;;:::o;8660:366::-;8802:3;8823:67;8887:2;8882:3;8823:67;:::i;:::-;8816:74;;8899:93;8988:3;8899:93;:::i;:::-;9017:2;9012:3;9008:12;9001:19;;8660:366;;;:::o;9032:::-;9174:3;9195:67;9259:2;9254:3;9195:67;:::i;:::-;9188:74;;9271:93;9360:3;9271:93;:::i;:::-;9389:2;9384:3;9380:12;9373:19;;9032:366;;;:::o;9404:::-;9546:3;9567:67;9631:2;9626:3;9567:67;:::i;:::-;9560:74;;9643:93;9732:3;9643:93;:::i;:::-;9761:2;9756:3;9752:12;9745:19;;9404:366;;;:::o;9776:::-;9918:3;9939:67;10003:2;9998:3;9939:67;:::i;:::-;9932:74;;10015:93;10104:3;10015:93;:::i;:::-;10133:2;10128:3;10124:12;10117:19;;9776:366;;;:::o;10148:::-;10290:3;10311:67;10375:2;10370:3;10311:67;:::i;:::-;10304:74;;10387:93;10476:3;10387:93;:::i;:::-;10505:2;10500:3;10496:12;10489:19;;10148:366;;;:::o;10520:::-;10662:3;10683:67;10747:2;10742:3;10683:67;:::i;:::-;10676:74;;10759:93;10848:3;10759:93;:::i;:::-;10877:2;10872:3;10868:12;10861:19;;10520:366;;;:::o;10892:::-;11034:3;11055:67;11119:2;11114:3;11055:67;:::i;:::-;11048:74;;11131:93;11220:3;11131:93;:::i;:::-;11249:2;11244:3;11240:12;11233:19;;10892:366;;;:::o;11264:::-;11406:3;11427:67;11491:2;11486:3;11427:67;:::i;:::-;11420:74;;11503:93;11592:3;11503:93;:::i;:::-;11621:2;11616:3;11612:12;11605:19;;11264:366;;;:::o;11636:::-;11778:3;11799:67;11863:2;11858:3;11799:67;:::i;:::-;11792:74;;11875:93;11964:3;11875:93;:::i;:::-;11993:2;11988:3;11984:12;11977:19;;11636:366;;;:::o;12008:400::-;12168:3;12189:84;12271:1;12266:3;12189:84;:::i;:::-;12182:91;;12282:93;12371:3;12282:93;:::i;:::-;12400:1;12395:3;12391:11;12384:18;;12008:400;;;:::o;12414:366::-;12556:3;12577:67;12641:2;12636:3;12577:67;:::i;:::-;12570:74;;12653:93;12742:3;12653:93;:::i;:::-;12771:2;12766:3;12762:12;12755:19;;12414:366;;;:::o;12786:::-;12928:3;12949:67;13013:2;13008:3;12949:67;:::i;:::-;12942:74;;13025:93;13114:3;13025:93;:::i;:::-;13143:2;13138:3;13134:12;13127:19;;12786:366;;;:::o;13158:::-;13300:3;13321:67;13385:2;13380:3;13321:67;:::i;:::-;13314:74;;13397:93;13486:3;13397:93;:::i;:::-;13515:2;13510:3;13506:12;13499:19;;13158:366;;;:::o;13530:::-;13672:3;13693:67;13757:2;13752:3;13693:67;:::i;:::-;13686:74;;13769:93;13858:3;13769:93;:::i;:::-;13887:2;13882:3;13878:12;13871:19;;13530:366;;;:::o;13902:::-;14044:3;14065:67;14129:2;14124:3;14065:67;:::i;:::-;14058:74;;14141:93;14230:3;14141:93;:::i;:::-;14259:2;14254:3;14250:12;14243:19;;13902:366;;;:::o;14274:::-;14416:3;14437:67;14501:2;14496:3;14437:67;:::i;:::-;14430:74;;14513:93;14602:3;14513:93;:::i;:::-;14631:2;14626:3;14622:12;14615:19;;14274:366;;;:::o;14646:::-;14788:3;14809:67;14873:2;14868:3;14809:67;:::i;:::-;14802:74;;14885:93;14974:3;14885:93;:::i;:::-;15003:2;14998:3;14994:12;14987:19;;14646:366;;;:::o;15018:::-;15160:3;15181:67;15245:2;15240:3;15181:67;:::i;:::-;15174:74;;15257:93;15346:3;15257:93;:::i;:::-;15375:2;15370:3;15366:12;15359:19;;15018:366;;;:::o;15390:::-;15532:3;15553:67;15617:2;15612:3;15553:67;:::i;:::-;15546:74;;15629:93;15718:3;15629:93;:::i;:::-;15747:2;15742:3;15738:12;15731:19;;15390:366;;;:::o;15762:::-;15904:3;15925:67;15989:2;15984:3;15925:67;:::i;:::-;15918:74;;16001:93;16090:3;16001:93;:::i;:::-;16119:2;16114:3;16110:12;16103:19;;15762:366;;;:::o;16134:::-;16276:3;16297:67;16361:2;16356:3;16297:67;:::i;:::-;16290:74;;16373:93;16462:3;16373:93;:::i;:::-;16491:2;16486:3;16482:12;16475:19;;16134:366;;;:::o;16506:::-;16648:3;16669:67;16733:2;16728:3;16669:67;:::i;:::-;16662:74;;16745:93;16834:3;16745:93;:::i;:::-;16863:2;16858:3;16854:12;16847:19;;16506:366;;;:::o;16878:::-;17020:3;17041:67;17105:2;17100:3;17041:67;:::i;:::-;17034:74;;17117:93;17206:3;17117:93;:::i;:::-;17235:2;17230:3;17226:12;17219:19;;16878:366;;;:::o;17250:::-;17392:3;17413:67;17477:2;17472:3;17413:67;:::i;:::-;17406:74;;17489:93;17578:3;17489:93;:::i;:::-;17607:2;17602:3;17598:12;17591:19;;17250:366;;;:::o;17622:::-;17764:3;17785:67;17849:2;17844:3;17785:67;:::i;:::-;17778:74;;17861:93;17950:3;17861:93;:::i;:::-;17979:2;17974:3;17970:12;17963:19;;17622:366;;;:::o;17994:118::-;18081:24;18099:5;18081:24;:::i;:::-;18076:3;18069:37;17994:118;;:::o;18118:701::-;18399:3;18421:95;18512:3;18503:6;18421:95;:::i;:::-;18414:102;;18533:95;18624:3;18615:6;18533:95;:::i;:::-;18526:102;;18645:148;18789:3;18645:148;:::i;:::-;18638:155;;18810:3;18803:10;;18118:701;;;;;:::o;18825:222::-;18918:4;18956:2;18945:9;18941:18;18933:26;;18969:71;19037:1;19026:9;19022:17;19013:6;18969:71;:::i;:::-;18825:222;;;;:::o;19053:640::-;19248:4;19286:3;19275:9;19271:19;19263:27;;19300:71;19368:1;19357:9;19353:17;19344:6;19300:71;:::i;:::-;19381:72;19449:2;19438:9;19434:18;19425:6;19381:72;:::i;:::-;19463;19531:2;19520:9;19516:18;19507:6;19463:72;:::i;:::-;19582:9;19576:4;19572:20;19567:2;19556:9;19552:18;19545:48;19610:76;19681:4;19672:6;19610:76;:::i;:::-;19602:84;;19053:640;;;;;;;:::o;19699:210::-;19786:4;19824:2;19813:9;19809:18;19801:26;;19837:65;19899:1;19888:9;19884:17;19875:6;19837:65;:::i;:::-;19699:210;;;;:::o;19915:313::-;20028:4;20066:2;20055:9;20051:18;20043:26;;20115:9;20109:4;20105:20;20101:1;20090:9;20086:17;20079:47;20143:78;20216:4;20207:6;20143:78;:::i;:::-;20135:86;;19915:313;;;;:::o;20234:419::-;20400:4;20438:2;20427:9;20423:18;20415:26;;20487:9;20481:4;20477:20;20473:1;20462:9;20458:17;20451:47;20515:131;20641:4;20515:131;:::i;:::-;20507:139;;20234:419;;;:::o;20659:::-;20825:4;20863:2;20852:9;20848:18;20840:26;;20912:9;20906:4;20902:20;20898:1;20887:9;20883:17;20876:47;20940:131;21066:4;20940:131;:::i;:::-;20932:139;;20659:419;;;:::o;21084:::-;21250:4;21288:2;21277:9;21273:18;21265:26;;21337:9;21331:4;21327:20;21323:1;21312:9;21308:17;21301:47;21365:131;21491:4;21365:131;:::i;:::-;21357:139;;21084:419;;;:::o;21509:::-;21675:4;21713:2;21702:9;21698:18;21690:26;;21762:9;21756:4;21752:20;21748:1;21737:9;21733:17;21726:47;21790:131;21916:4;21790:131;:::i;:::-;21782:139;;21509:419;;;:::o;21934:::-;22100:4;22138:2;22127:9;22123:18;22115:26;;22187:9;22181:4;22177:20;22173:1;22162:9;22158:17;22151:47;22215:131;22341:4;22215:131;:::i;:::-;22207:139;;21934:419;;;:::o;22359:::-;22525:4;22563:2;22552:9;22548:18;22540:26;;22612:9;22606:4;22602:20;22598:1;22587:9;22583:17;22576:47;22640:131;22766:4;22640:131;:::i;:::-;22632:139;;22359:419;;;:::o;22784:::-;22950:4;22988:2;22977:9;22973:18;22965:26;;23037:9;23031:4;23027:20;23023:1;23012:9;23008:17;23001:47;23065:131;23191:4;23065:131;:::i;:::-;23057:139;;22784:419;;;:::o;23209:::-;23375:4;23413:2;23402:9;23398:18;23390:26;;23462:9;23456:4;23452:20;23448:1;23437:9;23433:17;23426:47;23490:131;23616:4;23490:131;:::i;:::-;23482:139;;23209:419;;;:::o;23634:::-;23800:4;23838:2;23827:9;23823:18;23815:26;;23887:9;23881:4;23877:20;23873:1;23862:9;23858:17;23851:47;23915:131;24041:4;23915:131;:::i;:::-;23907:139;;23634:419;;;:::o;24059:::-;24225:4;24263:2;24252:9;24248:18;24240:26;;24312:9;24306:4;24302:20;24298:1;24287:9;24283:17;24276:47;24340:131;24466:4;24340:131;:::i;:::-;24332:139;;24059:419;;;:::o;24484:::-;24650:4;24688:2;24677:9;24673:18;24665:26;;24737:9;24731:4;24727:20;24723:1;24712:9;24708:17;24701:47;24765:131;24891:4;24765:131;:::i;:::-;24757:139;;24484:419;;;:::o;24909:::-;25075:4;25113:2;25102:9;25098:18;25090:26;;25162:9;25156:4;25152:20;25148:1;25137:9;25133:17;25126:47;25190:131;25316:4;25190:131;:::i;:::-;25182:139;;24909:419;;;:::o;25334:::-;25500:4;25538:2;25527:9;25523:18;25515:26;;25587:9;25581:4;25577:20;25573:1;25562:9;25558:17;25551:47;25615:131;25741:4;25615:131;:::i;:::-;25607:139;;25334:419;;;:::o;25759:::-;25925:4;25963:2;25952:9;25948:18;25940:26;;26012:9;26006:4;26002:20;25998:1;25987:9;25983:17;25976:47;26040:131;26166:4;26040:131;:::i;:::-;26032:139;;25759:419;;;:::o;26184:::-;26350:4;26388:2;26377:9;26373:18;26365:26;;26437:9;26431:4;26427:20;26423:1;26412:9;26408:17;26401:47;26465:131;26591:4;26465:131;:::i;:::-;26457:139;;26184:419;;;:::o;26609:::-;26775:4;26813:2;26802:9;26798:18;26790:26;;26862:9;26856:4;26852:20;26848:1;26837:9;26833:17;26826:47;26890:131;27016:4;26890:131;:::i;:::-;26882:139;;26609:419;;;:::o;27034:::-;27200:4;27238:2;27227:9;27223:18;27215:26;;27287:9;27281:4;27277:20;27273:1;27262:9;27258:17;27251:47;27315:131;27441:4;27315:131;:::i;:::-;27307:139;;27034:419;;;:::o;27459:::-;27625:4;27663:2;27652:9;27648:18;27640:26;;27712:9;27706:4;27702:20;27698:1;27687:9;27683:17;27676:47;27740:131;27866:4;27740:131;:::i;:::-;27732:139;;27459:419;;;:::o;27884:::-;28050:4;28088:2;28077:9;28073:18;28065:26;;28137:9;28131:4;28127:20;28123:1;28112:9;28108:17;28101:47;28165:131;28291:4;28165:131;:::i;:::-;28157:139;;27884:419;;;:::o;28309:::-;28475:4;28513:2;28502:9;28498:18;28490:26;;28562:9;28556:4;28552:20;28548:1;28537:9;28533:17;28526:47;28590:131;28716:4;28590:131;:::i;:::-;28582:139;;28309:419;;;:::o;28734:::-;28900:4;28938:2;28927:9;28923:18;28915:26;;28987:9;28981:4;28977:20;28973:1;28962:9;28958:17;28951:47;29015:131;29141:4;29015:131;:::i;:::-;29007:139;;28734:419;;;:::o;29159:::-;29325:4;29363:2;29352:9;29348:18;29340:26;;29412:9;29406:4;29402:20;29398:1;29387:9;29383:17;29376:47;29440:131;29566:4;29440:131;:::i;:::-;29432:139;;29159:419;;;:::o;29584:::-;29750:4;29788:2;29777:9;29773:18;29765:26;;29837:9;29831:4;29827:20;29823:1;29812:9;29808:17;29801:47;29865:131;29991:4;29865:131;:::i;:::-;29857:139;;29584:419;;;:::o;30009:::-;30175:4;30213:2;30202:9;30198:18;30190:26;;30262:9;30256:4;30252:20;30248:1;30237:9;30233:17;30226:47;30290:131;30416:4;30290:131;:::i;:::-;30282:139;;30009:419;;;:::o;30434:222::-;30527:4;30565:2;30554:9;30550:18;30542:26;;30578:71;30646:1;30635:9;30631:17;30622:6;30578:71;:::i;:::-;30434:222;;;;:::o;30662:129::-;30696:6;30723:20;;:::i;:::-;30713:30;;30752:33;30780:4;30772:6;30752:33;:::i;:::-;30662:129;;;:::o;30797:75::-;30830:6;30863:2;30857:9;30847:19;;30797:75;:::o;30878:307::-;30939:4;31029:18;31021:6;31018:30;31015:56;;;31051:18;;:::i;:::-;31015:56;31089:29;31111:6;31089:29;:::i;:::-;31081:37;;31173:4;31167;31163:15;31155:23;;30878:307;;;:::o;31191:98::-;31242:6;31276:5;31270:12;31260:22;;31191:98;;;:::o;31295:99::-;31347:6;31381:5;31375:12;31365:22;;31295:99;;;:::o;31400:168::-;31483:11;31517:6;31512:3;31505:19;31557:4;31552:3;31548:14;31533:29;;31400:168;;;;:::o;31574:169::-;31658:11;31692:6;31687:3;31680:19;31732:4;31727:3;31723:14;31708:29;;31574:169;;;;:::o;31749:148::-;31851:11;31888:3;31873:18;;31749:148;;;;:::o;31903:273::-;31943:3;31962:20;31980:1;31962:20;:::i;:::-;31957:25;;31996:20;32014:1;31996:20;:::i;:::-;31991:25;;32118:1;32082:34;32078:42;32075:1;32072:49;32069:75;;;32124:18;;:::i;:::-;32069:75;32168:1;32165;32161:9;32154:16;;31903:273;;;;:::o;32182:305::-;32222:3;32241:20;32259:1;32241:20;:::i;:::-;32236:25;;32275:20;32293:1;32275:20;:::i;:::-;32270:25;;32429:1;32361:66;32357:74;32354:1;32351:81;32348:107;;;32435:18;;:::i;:::-;32348:107;32479:1;32476;32472:9;32465:16;;32182:305;;;;:::o;32493:185::-;32533:1;32550:20;32568:1;32550:20;:::i;:::-;32545:25;;32584:20;32602:1;32584:20;:::i;:::-;32579:25;;32623:1;32613:35;;32628:18;;:::i;:::-;32613:35;32670:1;32667;32663:9;32658:14;;32493:185;;;;:::o;32684:191::-;32724:4;32744:20;32762:1;32744:20;:::i;:::-;32739:25;;32778:20;32796:1;32778:20;:::i;:::-;32773:25;;32817:1;32814;32811:8;32808:34;;;32822:18;;:::i;:::-;32808:34;32867:1;32864;32860:9;32852:17;;32684:191;;;;:::o;32881:::-;32921:4;32941:20;32959:1;32941:20;:::i;:::-;32936:25;;32975:20;32993:1;32975:20;:::i;:::-;32970:25;;33014:1;33011;33008:8;33005:34;;;33019:18;;:::i;:::-;33005:34;33064:1;33061;33057:9;33049:17;;32881:191;;;;:::o;33078:96::-;33115:7;33144:24;33162:5;33144:24;:::i;:::-;33133:35;;33078:96;;;:::o;33180:90::-;33214:7;33257:5;33250:13;33243:21;33232:32;;33180:90;;;:::o;33276:149::-;33312:7;33352:66;33345:5;33341:78;33330:89;;33276:149;;;:::o;33431:118::-;33468:7;33508:34;33501:5;33497:46;33486:57;;33431:118;;;:::o;33555:126::-;33592:7;33632:42;33625:5;33621:54;33610:65;;33555:126;;;:::o;33687:77::-;33724:7;33753:5;33742:16;;33687:77;;;:::o;33770:154::-;33854:6;33849:3;33844;33831:30;33916:1;33907:6;33902:3;33898:16;33891:27;33770:154;;;:::o;33930:307::-;33998:1;34008:113;34022:6;34019:1;34016:13;34008:113;;;34107:1;34102:3;34098:11;34092:18;34088:1;34083:3;34079:11;34072:39;34044:2;34041:1;34037:10;34032:15;;34008:113;;;34139:6;34136:1;34133:13;34130:101;;;34219:1;34210:6;34205:3;34201:16;34194:27;34130:101;33979:258;33930:307;;;:::o;34243:171::-;34282:3;34305:24;34323:5;34305:24;:::i;:::-;34296:33;;34351:4;34344:5;34341:15;34338:41;;;34359:18;;:::i;:::-;34338:41;34406:1;34399:5;34395:13;34388:20;;34243:171;;;:::o;34420:320::-;34464:6;34501:1;34495:4;34491:12;34481:22;;34548:1;34542:4;34538:12;34569:18;34559:81;;34625:4;34617:6;34613:17;34603:27;;34559:81;34687:2;34679:6;34676:14;34656:18;34653:38;34650:84;;;34706:18;;:::i;:::-;34650:84;34471:269;34420:320;;;:::o;34746:281::-;34829:27;34851:4;34829:27;:::i;:::-;34821:6;34817:40;34959:6;34947:10;34944:22;34923:18;34911:10;34908:34;34905:62;34902:88;;;34970:18;;:::i;:::-;34902:88;35010:10;35006:2;34999:22;34789:238;34746:281;;:::o;35033:233::-;35072:3;35095:24;35113:5;35095:24;:::i;:::-;35086:33;;35141:66;35134:5;35131:77;35128:103;;;35211:18;;:::i;:::-;35128:103;35258:1;35251:5;35247:13;35240:20;;35033:233;;;:::o;35272:176::-;35304:1;35321:20;35339:1;35321:20;:::i;:::-;35316:25;;35355:20;35373:1;35355:20;:::i;:::-;35350:25;;35394:1;35384:35;;35399:18;;:::i;:::-;35384:35;35440:1;35437;35433:9;35428:14;;35272:176;;;;:::o;35454:180::-;35502:77;35499:1;35492:88;35599:4;35596:1;35589:15;35623:4;35620:1;35613:15;35640:180;35688:77;35685:1;35678:88;35785:4;35782:1;35775:15;35809:4;35806:1;35799:15;35826:180;35874:77;35871:1;35864:88;35971:4;35968:1;35961:15;35995:4;35992:1;35985:15;36012:180;36060:77;36057:1;36050:88;36157:4;36154:1;36147:15;36181:4;36178:1;36171:15;36198:180;36246:77;36243:1;36236:88;36343:4;36340:1;36333:15;36367:4;36364:1;36357:15;36384:117;36493:1;36490;36483:12;36507:117;36616:1;36613;36606:12;36630:117;36739:1;36736;36729:12;36753:117;36862:1;36859;36852:12;36876:117;36985:1;36982;36975:12;36999:117;37108:1;37105;37098:12;37122:102;37163:6;37214:2;37210:7;37205:2;37198:5;37194:14;37190:28;37180:38;;37122:102;;;:::o;37230:221::-;37370:34;37366:1;37358:6;37354:14;37347:58;37439:4;37434:2;37426:6;37422:15;37415:29;37230:221;:::o;37457:225::-;37597:34;37593:1;37585:6;37581:14;37574:58;37666:8;37661:2;37653:6;37649:15;37642:33;37457:225;:::o;37688:229::-;37828:34;37824:1;37816:6;37812:14;37805:58;37897:12;37892:2;37884:6;37880:15;37873:37;37688:229;:::o;37923:222::-;38063:34;38059:1;38051:6;38047:14;38040:58;38132:5;38127:2;38119:6;38115:15;38108:30;37923:222;:::o;38151:224::-;38291:34;38287:1;38279:6;38275:14;38268:58;38360:7;38355:2;38347:6;38343:15;38336:32;38151:224;:::o;38381:232::-;38521:34;38517:1;38509:6;38505:14;38498:58;38590:15;38585:2;38577:6;38573:15;38566:40;38381:232;:::o;38619:244::-;38759:34;38755:1;38747:6;38743:14;38736:58;38828:27;38823:2;38815:6;38811:15;38804:52;38619:244;:::o;38869:230::-;39009:34;39005:1;38997:6;38993:14;38986:58;39078:13;39073:2;39065:6;39061:15;39054:38;38869:230;:::o;39105:225::-;39245:34;39241:1;39233:6;39229:14;39222:58;39314:8;39309:2;39301:6;39297:15;39290:33;39105:225;:::o;39336:155::-;39476:7;39472:1;39464:6;39460:14;39453:31;39336:155;:::o;39497:182::-;39637:34;39633:1;39625:6;39621:14;39614:58;39497:182;:::o;39685:171::-;39825:23;39821:1;39813:6;39809:14;39802:47;39685:171;:::o;39862:234::-;40002:34;39998:1;39990:6;39986:14;39979:58;40071:17;40066:2;40058:6;40054:15;40047:42;39862:234;:::o;40102:176::-;40242:28;40238:1;40230:6;40226:14;40219:52;40102:176;:::o;40284:237::-;40424:34;40420:1;40412:6;40408:14;40401:58;40493:20;40488:2;40480:6;40476:15;40469:45;40284:237;:::o;40527:221::-;40667:34;40663:1;40655:6;40651:14;40644:58;40736:4;40731:2;40723:6;40719:15;40712:29;40527:221;:::o;40754:238::-;40894:34;40890:1;40882:6;40878:14;40871:58;40963:21;40958:2;40950:6;40946:15;40939:46;40754:238;:::o;40998:179::-;41138:31;41134:1;41126:6;41122:14;41115:55;40998:179;:::o;41183:220::-;41323:34;41319:1;41311:6;41307:14;41300:58;41392:3;41387:2;41379:6;41375:15;41368:28;41183:220;:::o;41409:233::-;41549:34;41545:1;41537:6;41533:14;41526:58;41618:16;41613:2;41605:6;41601:15;41594:41;41409:233;:::o;41648:234::-;41788:34;41784:1;41776:6;41772:14;41765:58;41857:17;41852:2;41844:6;41840:15;41833:42;41648:234;:::o;41888:225::-;42028:34;42024:1;42016:6;42012:14;42005:58;42097:8;42092:2;42084:6;42080:15;42073:33;41888:225;:::o;42119:177::-;42259:29;42255:1;42247:6;42243:14;42236:53;42119:177;:::o;42302:232::-;42442:34;42438:1;42430:6;42426:14;42419:58;42511:15;42506:2;42498:6;42494:15;42487:40;42302:232;:::o;42540:221::-;42680:34;42676:1;42668:6;42664:14;42657:58;42749:4;42744:2;42736:6;42732:15;42725:29;42540:221;:::o;42767:122::-;42840:24;42858:5;42840:24;:::i;:::-;42833:5;42830:35;42820:63;;42879:1;42876;42869:12;42820:63;42767:122;:::o;42895:116::-;42965:21;42980:5;42965:21;:::i;:::-;42958:5;42955:32;42945:60;;43001:1;42998;42991:12;42945:60;42895:116;:::o;43017:120::-;43089:23;43106:5;43089:23;:::i;:::-;43082:5;43079:34;43069:62;;43127:1;43124;43117:12;43069:62;43017:120;:::o;43143:122::-;43216:24;43234:5;43216:24;:::i;:::-;43209:5;43206:35;43196:63;;43255:1;43252;43245:12;43196:63;43143:122;:::o

Swarm Source

ipfs://5bfc21b36953a4b5d46574f6b0250aac88aafe21f849f9ae82e0fb2cd956485f
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.