ETH Price: $2,375.66 (-3.88%)
Gas: 6.1 Gwei

Token

PV2 By BIG BEEPLE (PV2)
 

Overview

Max Total Supply

319 PV2

Holders

277

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
patricksowles.eth
Balance
1 PV2
0xbdf05f6c2c45eb25b6b5de5ed5376c4fcdf50084
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:
PV2BYBIGBEEPLE

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-06-12
*/

/**
 *Submitted for verification at Etherscan.io on 2022-06-12
*/

// File: @openzeppelin/contracts/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



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



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



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



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



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



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



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



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: contracts/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()))
        : "";
  }

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



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

// File: contracts/PV2.sol


pragma solidity ^0.8.0;



contract PV2BYBIGBEEPLE is Ownable, ERC721A {

    // constants
    uint256 constant MAX_ELEMENTS = 3333;
    uint256 constant MAX_ELEMENTS_TX = 10;
    uint256 constant PUBLIC_PRICE = 0.003 ether;

    string public baseTokenURI;
    bool public paused = false;

    constructor() ERC721A("PV2 By BIG BEEPLE", "PV2", 10) {}

    function mint(uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(_mintAmount > 0,"No 0 mints");
        require(_mintAmount <= MAX_ELEMENTS_TX,"Exceeds max per tx");
        require(!paused, "Paused");

        require(supply + _mintAmount <= MAX_ELEMENTS,"Exceeds max supply");
        require(msg.value >= (_mintAmount - 1)* PUBLIC_PRICE,"Invalid funds provided");
        _safeMint(msg.sender,_mintAmount);
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"payable","type":"function"}]

60a0604052600060015560006008556000600a60006101000a81548160ff0219169083151502179055503480156200003657600080fd5b506040518060400160405280601181526020017f5056322042792042494720424545504c450000000000000000000000000000008152506040518060400160405280600381526020017f5056320000000000000000000000000000000000000000000000000000000000815250600a620000c5620000b96200014e60201b60201c565b6200015660201b60201c565b600081116200010b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010290620002f1565b60405180910390fd5b8260029080519060200190620001239291906200021a565b5081600390805190602001906200013c9291906200021a565b508060808181525050505050620003d8565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002289062000324565b90600052602060002090601f0160209004810192826200024c576000855562000298565b82601f106200026757805160ff191683800117855562000298565b8280016001018555821562000298579182015b82811115620002975782518255916020019190600101906200027a565b5b509050620002a79190620002ab565b5090565b5b80821115620002c6576000816000905550600101620002ac565b5090565b6000620002d960278362000313565b9150620002e68262000389565b604082019050919050565b600060208201905081810360008301526200030c81620002ca565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200033d57607f821691505b602082108114156200035457620003536200035a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6080516142426200040260003960008181611de601528181611e0f01526124cf01526142426000f3fe6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063d547cfb711610064578063d547cfb714610564578063d7224ba01461058f578063e985e9c5146105ba578063f2fde38b146105f757610181565b8063a22cb465146104d5578063b88d4fde146104fe578063c87b56dd1461052757610181565b80636352211e146103d257806370a082311461040f578063715018a61461044c5780638da5cb5b1461046357806395d89b411461048e578063a0712d68146104b957610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e146103185780634f6ccce71461034157806355f804b31461037e5780635c975abb146103a757610181565b806323b872dd146102a85780632f745c59146102d15780633ccfd60b1461030e57610181565b806301ffc9a71461018657806302329a29146101c357806306fdde03146101ec578063081812fc14610217578063095ea7b31461025457806318160ddd1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612cfc565b610620565b6040516101ba9190613296565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190612ccf565b61076a565b005b3480156101f857600080fd5b50610201610803565b60405161020e91906132b1565b60405180910390f35b34801561022357600080fd5b5061023e60048036038101906102399190612da3565b610895565b60405161024b919061322f565b60405180910390f35b34801561026057600080fd5b5061027b60048036038101906102769190612c8f565b61091a565b005b34801561028957600080fd5b50610292610a33565b60405161029f91906135f3565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612b79565b610a3d565b005b3480156102dd57600080fd5b506102f860048036038101906102f39190612c8f565b610a4d565b60405161030591906135f3565b60405180910390f35b610316610c4b565b005b34801561032457600080fd5b5061033f600480360381019061033a9190612b79565b610d07565b005b34801561034d57600080fd5b5061036860048036038101906103639190612da3565b610d27565b60405161037591906135f3565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612d56565b610d7a565b005b3480156103b357600080fd5b506103bc610e0c565b6040516103c99190613296565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612da3565b610e1f565b604051610406919061322f565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612b0c565b610e35565b60405161044391906135f3565b60405180910390f35b34801561045857600080fd5b50610461610f1e565b005b34801561046f57600080fd5b50610478610fa6565b604051610485919061322f565b60405180910390f35b34801561049a57600080fd5b506104a3610fcf565b6040516104b091906132b1565b60405180910390f35b6104d360048036038101906104ce9190612da3565b611061565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612c4f565b611203565b005b34801561050a57600080fd5b5061052560048036038101906105209190612bcc565b611384565b005b34801561053357600080fd5b5061054e60048036038101906105499190612da3565b6113e0565b60405161055b91906132b1565b60405180910390f35b34801561057057600080fd5b50610579611487565b60405161058691906132b1565b60405180910390f35b34801561059b57600080fd5b506105a4611515565b6040516105b191906135f3565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc9190612b39565b61151b565b6040516105ee9190613296565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190612b0c565b6115af565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106eb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107635750610762826116a7565b5b9050919050565b610772611711565b73ffffffffffffffffffffffffffffffffffffffff16610790610fa6565b73ffffffffffffffffffffffffffffffffffffffff16146107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd90613453565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b60606002805461081290613932565b80601f016020809104026020016040519081016040528092919081815260200182805461083e90613932565b801561088b5780601f106108605761010080835404028352916020019161088b565b820191906000526020600020905b81548152906001019060200180831161086e57829003601f168201915b5050505050905090565b60006108a082611719565b6108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d6906135b3565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092582610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d906134f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b5611711565b73ffffffffffffffffffffffffffffffffffffffff1614806109e457506109e3816109de611711565b61151b565b5b610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a906133d3565b60405180910390fd5b610a2e838383611727565b505050565b6000600154905090565b610a488383836117d9565b505050565b6000610a5883610e35565b8210610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a90906132d3565b60405180910390fd5b6000610aa3610a33565b905060008060005b83811015610c09576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b9d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf55786841415610be6578195505050505050610c45565b8380610bf190613995565b9450505b508080610c0190613995565b915050610aab565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90613573565b60405180910390fd5b92915050565b610c53611711565b73ffffffffffffffffffffffffffffffffffffffff16610c71610fa6565b73ffffffffffffffffffffffffffffffffffffffff1614610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90613453565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d0557600080fd5b565b610d2283838360405180602001604052806000815250611384565b505050565b6000610d31610a33565b8210610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990613393565b60405180910390fd5b819050919050565b610d82611711565b73ffffffffffffffffffffffffffffffffffffffff16610da0610fa6565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613453565b60405180910390fd5b818160099190610e07929190612900565b505050565b600a60009054906101000a900460ff1681565b6000610e2a82611d92565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90613413565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f26611711565b73ffffffffffffffffffffffffffffffffffffffff16610f44610fa6565b73ffffffffffffffffffffffffffffffffffffffff1614610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9190613453565b60405180910390fd5b610fa46000611f95565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fde90613932565b80601f016020809104026020016040519081016040528092919081815260200182805461100a90613932565b80156110575780601f1061102c57610100808354040283529160200191611057565b820191906000526020600020905b81548152906001019060200180831161103a57829003601f168201915b5050505050905090565b600061106b610a33565b9050600082116110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613353565b60405180910390fd5b600a8211156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613373565b60405180910390fd5b600a60009054906101000a900460ff1615611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906132f3565b60405180910390fd5b610d05828261115391906136ed565b1115611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b906133f3565b60405180910390fd5b660aa87bee5380006001836111a99190613802565b6111b39190613774565b3410156111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec906134d3565b60405180910390fd5b6111ff3383612059565b5050565b61120b611711565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090613493565b60405180910390fd5b8060076000611286611711565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611333611711565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113789190613296565b60405180910390a35050565b61138f8484846117d9565b61139b84848484612077565b6113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190613513565b60405180910390fd5b50505050565b60606113eb82611719565b61142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190613473565b60405180910390fd5b600061143461220e565b90506000815111611454576040518060200160405280600081525061147f565b8061145e846122a0565b60405160200161146f92919061320b565b6040516020818303038152906040525b915050919050565b6009805461149490613932565b80601f01602080910402602001604051908101604052809291908181526020018280546114c090613932565b801561150d5780601f106114e25761010080835404028352916020019161150d565b820191906000526020600020905b8154815290600101906020018083116114f057829003601f168201915b505050505081565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b7611711565b73ffffffffffffffffffffffffffffffffffffffff166115d5610fa6565b73ffffffffffffffffffffffffffffffffffffffff161461162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290613453565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290613313565b60405180910390fd5b6116a481611f95565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006117e482611d92565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661180b611711565b73ffffffffffffffffffffffffffffffffffffffff1614806118675750611830611711565b73ffffffffffffffffffffffffffffffffffffffff1661184f84610895565b73ffffffffffffffffffffffffffffffffffffffff16145b806118835750611882826000015161187d611711565b61151b565b5b9050806118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906134b3565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e90613433565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e906133b3565b60405180910390fd5b6119b48585856001612401565b6119c46000848460000151611727565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a3291906137ce565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ad691906136a7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611bdc91906136ed565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d2257611c5281611719565b15611d21576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8a8686866001612407565b505050505050565b611d9a612986565b611da382611719565b611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990613333565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611e465760017f000000000000000000000000000000000000000000000000000000000000000084611e399190613802565b611e4391906136ed565b90505b60008390505b818110611f54576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f4057809350505050611f90565b508080611f4c90613908565b915050611e4c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790613593565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61207382826040518060200160405280600081525061240d565b5050565b60006120988473ffffffffffffffffffffffffffffffffffffffff166128ed565b15612201578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120c1611711565b8786866040518563ffffffff1660e01b81526004016120e3949392919061324a565b602060405180830381600087803b1580156120fd57600080fd5b505af192505050801561212e57506040513d601f19601f8201168201806040525081019061212b9190612d29565b60015b6121b1573d806000811461215e576040519150601f19603f3d011682016040523d82523d6000602084013e612163565b606091505b506000815114156121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090613513565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612206565b600190505b949350505050565b60606009805461221d90613932565b80601f016020809104026020016040519081016040528092919081815260200182805461224990613932565b80156122965780601f1061226b57610100808354040283529160200191612296565b820191906000526020600020905b81548152906001019060200180831161227957829003601f168201915b5050505050905090565b606060008214156122e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123fc565b600082905060005b6000821461231a57808061230390613995565b915050600a826123139190613743565b91506122f0565b60008167ffffffffffffffff81111561233657612335613acb565b5b6040519080825280601f01601f1916602001820160405280156123685781602001600182028036833780820191505090505b5090505b600085146123f5576001826123819190613802565b9150600a8561239091906139de565b603061239c91906136ed565b60f81b8183815181106123b2576123b1613a9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123ee9190613743565b945061236c565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247b90613553565b60405180910390fd5b61248d81611719565b156124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490613533565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612527906135d3565b60405180910390fd5b61253d6000858386612401565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161263a91906136a7565b6fffffffffffffffffffffffffffffffff16815260200185836020015161266191906136a7565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156128d057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128706000888488612077565b6128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a690613513565b60405180910390fd5b81806128ba90613995565b92505080806128c890613995565b9150506127ff565b50806001819055506128e56000878588612407565b505050505050565b600080823b905060008111915050919050565b82805461290c90613932565b90600052602060002090601f01602090048101928261292e5760008555612975565b82601f1061294757803560ff1916838001178555612975565b82800160010185558215612975579182015b82811115612974578235825591602001919060010190612959565b5b50905061298291906129c0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156129d95760008160009055506001016129c1565b5090565b60006129f06129eb84613633565b61360e565b905082815260208101848484011115612a0c57612a0b613b09565b5b612a178482856138c6565b509392505050565b600081359050612a2e816141b0565b92915050565b600081359050612a43816141c7565b92915050565b600081359050612a58816141de565b92915050565b600081519050612a6d816141de565b92915050565b600082601f830112612a8857612a87613aff565b5b8135612a988482602086016129dd565b91505092915050565b60008083601f840112612ab757612ab6613aff565b5b8235905067ffffffffffffffff811115612ad457612ad3613afa565b5b602083019150836001820283011115612af057612aef613b04565b5b9250929050565b600081359050612b06816141f5565b92915050565b600060208284031215612b2257612b21613b13565b5b6000612b3084828501612a1f565b91505092915050565b60008060408385031215612b5057612b4f613b13565b5b6000612b5e85828601612a1f565b9250506020612b6f85828601612a1f565b9150509250929050565b600080600060608486031215612b9257612b91613b13565b5b6000612ba086828701612a1f565b9350506020612bb186828701612a1f565b9250506040612bc286828701612af7565b9150509250925092565b60008060008060808587031215612be657612be5613b13565b5b6000612bf487828801612a1f565b9450506020612c0587828801612a1f565b9350506040612c1687828801612af7565b925050606085013567ffffffffffffffff811115612c3757612c36613b0e565b5b612c4387828801612a73565b91505092959194509250565b60008060408385031215612c6657612c65613b13565b5b6000612c7485828601612a1f565b9250506020612c8585828601612a34565b9150509250929050565b60008060408385031215612ca657612ca5613b13565b5b6000612cb485828601612a1f565b9250506020612cc585828601612af7565b9150509250929050565b600060208284031215612ce557612ce4613b13565b5b6000612cf384828501612a34565b91505092915050565b600060208284031215612d1257612d11613b13565b5b6000612d2084828501612a49565b91505092915050565b600060208284031215612d3f57612d3e613b13565b5b6000612d4d84828501612a5e565b91505092915050565b60008060208385031215612d6d57612d6c613b13565b5b600083013567ffffffffffffffff811115612d8b57612d8a613b0e565b5b612d9785828601612aa1565b92509250509250929050565b600060208284031215612db957612db8613b13565b5b6000612dc784828501612af7565b91505092915050565b612dd981613836565b82525050565b612de881613848565b82525050565b6000612df982613664565b612e03818561367a565b9350612e138185602086016138d5565b612e1c81613b18565b840191505092915050565b6000612e328261366f565b612e3c818561368b565b9350612e4c8185602086016138d5565b612e5581613b18565b840191505092915050565b6000612e6b8261366f565b612e75818561369c565b9350612e858185602086016138d5565b80840191505092915050565b6000612e9e60228361368b565b9150612ea982613b29565b604082019050919050565b6000612ec160068361368b565b9150612ecc82613b78565b602082019050919050565b6000612ee460268361368b565b9150612eef82613ba1565b604082019050919050565b6000612f07602a8361368b565b9150612f1282613bf0565b604082019050919050565b6000612f2a600a8361368b565b9150612f3582613c3f565b602082019050919050565b6000612f4d60128361368b565b9150612f5882613c68565b602082019050919050565b6000612f7060238361368b565b9150612f7b82613c91565b604082019050919050565b6000612f9360258361368b565b9150612f9e82613ce0565b604082019050919050565b6000612fb660398361368b565b9150612fc182613d2f565b604082019050919050565b6000612fd960128361368b565b9150612fe482613d7e565b602082019050919050565b6000612ffc602b8361368b565b915061300782613da7565b604082019050919050565b600061301f60268361368b565b915061302a82613df6565b604082019050919050565b600061304260208361368b565b915061304d82613e45565b602082019050919050565b6000613065602f8361368b565b915061307082613e6e565b604082019050919050565b6000613088601a8361368b565b915061309382613ebd565b602082019050919050565b60006130ab60328361368b565b91506130b682613ee6565b604082019050919050565b60006130ce60168361368b565b91506130d982613f35565b602082019050919050565b60006130f160228361368b565b91506130fc82613f5e565b604082019050919050565b600061311460338361368b565b915061311f82613fad565b604082019050919050565b6000613137601d8361368b565b915061314282613ffc565b602082019050919050565b600061315a60218361368b565b915061316582614025565b604082019050919050565b600061317d602e8361368b565b915061318882614074565b604082019050919050565b60006131a0602f8361368b565b91506131ab826140c3565b604082019050919050565b60006131c3602d8361368b565b91506131ce82614112565b604082019050919050565b60006131e660228361368b565b91506131f182614161565b604082019050919050565b613205816138bc565b82525050565b60006132178285612e60565b91506132238284612e60565b91508190509392505050565b60006020820190506132446000830184612dd0565b92915050565b600060808201905061325f6000830187612dd0565b61326c6020830186612dd0565b61327960408301856131fc565b818103606083015261328b8184612dee565b905095945050505050565b60006020820190506132ab6000830184612ddf565b92915050565b600060208201905081810360008301526132cb8184612e27565b905092915050565b600060208201905081810360008301526132ec81612e91565b9050919050565b6000602082019050818103600083015261330c81612eb4565b9050919050565b6000602082019050818103600083015261332c81612ed7565b9050919050565b6000602082019050818103600083015261334c81612efa565b9050919050565b6000602082019050818103600083015261336c81612f1d565b9050919050565b6000602082019050818103600083015261338c81612f40565b9050919050565b600060208201905081810360008301526133ac81612f63565b9050919050565b600060208201905081810360008301526133cc81612f86565b9050919050565b600060208201905081810360008301526133ec81612fa9565b9050919050565b6000602082019050818103600083015261340c81612fcc565b9050919050565b6000602082019050818103600083015261342c81612fef565b9050919050565b6000602082019050818103600083015261344c81613012565b9050919050565b6000602082019050818103600083015261346c81613035565b9050919050565b6000602082019050818103600083015261348c81613058565b9050919050565b600060208201905081810360008301526134ac8161307b565b9050919050565b600060208201905081810360008301526134cc8161309e565b9050919050565b600060208201905081810360008301526134ec816130c1565b9050919050565b6000602082019050818103600083015261350c816130e4565b9050919050565b6000602082019050818103600083015261352c81613107565b9050919050565b6000602082019050818103600083015261354c8161312a565b9050919050565b6000602082019050818103600083015261356c8161314d565b9050919050565b6000602082019050818103600083015261358c81613170565b9050919050565b600060208201905081810360008301526135ac81613193565b9050919050565b600060208201905081810360008301526135cc816131b6565b9050919050565b600060208201905081810360008301526135ec816131d9565b9050919050565b600060208201905061360860008301846131fc565b92915050565b6000613618613629565b90506136248282613964565b919050565b6000604051905090565b600067ffffffffffffffff82111561364e5761364d613acb565b5b61365782613b18565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136b282613880565b91506136bd83613880565b9250826fffffffffffffffffffffffffffffffff038211156136e2576136e1613a0f565b5b828201905092915050565b60006136f8826138bc565b9150613703836138bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373857613737613a0f565b5b828201905092915050565b600061374e826138bc565b9150613759836138bc565b92508261376957613768613a3e565b5b828204905092915050565b600061377f826138bc565b915061378a836138bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c3576137c2613a0f565b5b828202905092915050565b60006137d982613880565b91506137e483613880565b9250828210156137f7576137f6613a0f565b5b828203905092915050565b600061380d826138bc565b9150613818836138bc565b92508282101561382b5761382a613a0f565b5b828203905092915050565b60006138418261389c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138f35780820151818401526020810190506138d8565b83811115613902576000848401525b50505050565b6000613913826138bc565b9150600082141561392757613926613a0f565b5b600182039050919050565b6000600282049050600182168061394a57607f821691505b6020821081141561395e5761395d613a6d565b5b50919050565b61396d82613b18565b810181811067ffffffffffffffff8211171561398c5761398b613acb565b5b80604052505050565b60006139a0826138bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139d3576139d2613a0f565b5b600182019050919050565b60006139e9826138bc565b91506139f4836138bc565b925082613a0457613a03613a3e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6141b981613836565b81146141c457600080fd5b50565b6141d081613848565b81146141db57600080fd5b50565b6141e781613854565b81146141f257600080fd5b50565b6141fe816138bc565b811461420957600080fd5b5056fea2646970667358221220b25998c256b0943bc49f8f71d830c65feda134884ced24bab7b57af430dea9e664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063d547cfb711610064578063d547cfb714610564578063d7224ba01461058f578063e985e9c5146105ba578063f2fde38b146105f757610181565b8063a22cb465146104d5578063b88d4fde146104fe578063c87b56dd1461052757610181565b80636352211e146103d257806370a082311461040f578063715018a61461044c5780638da5cb5b1461046357806395d89b411461048e578063a0712d68146104b957610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e146103185780634f6ccce71461034157806355f804b31461037e5780635c975abb146103a757610181565b806323b872dd146102a85780632f745c59146102d15780633ccfd60b1461030e57610181565b806301ffc9a71461018657806302329a29146101c357806306fdde03146101ec578063081812fc14610217578063095ea7b31461025457806318160ddd1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612cfc565b610620565b6040516101ba9190613296565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190612ccf565b61076a565b005b3480156101f857600080fd5b50610201610803565b60405161020e91906132b1565b60405180910390f35b34801561022357600080fd5b5061023e60048036038101906102399190612da3565b610895565b60405161024b919061322f565b60405180910390f35b34801561026057600080fd5b5061027b60048036038101906102769190612c8f565b61091a565b005b34801561028957600080fd5b50610292610a33565b60405161029f91906135f3565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612b79565b610a3d565b005b3480156102dd57600080fd5b506102f860048036038101906102f39190612c8f565b610a4d565b60405161030591906135f3565b60405180910390f35b610316610c4b565b005b34801561032457600080fd5b5061033f600480360381019061033a9190612b79565b610d07565b005b34801561034d57600080fd5b5061036860048036038101906103639190612da3565b610d27565b60405161037591906135f3565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612d56565b610d7a565b005b3480156103b357600080fd5b506103bc610e0c565b6040516103c99190613296565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612da3565b610e1f565b604051610406919061322f565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612b0c565b610e35565b60405161044391906135f3565b60405180910390f35b34801561045857600080fd5b50610461610f1e565b005b34801561046f57600080fd5b50610478610fa6565b604051610485919061322f565b60405180910390f35b34801561049a57600080fd5b506104a3610fcf565b6040516104b091906132b1565b60405180910390f35b6104d360048036038101906104ce9190612da3565b611061565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612c4f565b611203565b005b34801561050a57600080fd5b5061052560048036038101906105209190612bcc565b611384565b005b34801561053357600080fd5b5061054e60048036038101906105499190612da3565b6113e0565b60405161055b91906132b1565b60405180910390f35b34801561057057600080fd5b50610579611487565b60405161058691906132b1565b60405180910390f35b34801561059b57600080fd5b506105a4611515565b6040516105b191906135f3565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc9190612b39565b61151b565b6040516105ee9190613296565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190612b0c565b6115af565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106eb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107635750610762826116a7565b5b9050919050565b610772611711565b73ffffffffffffffffffffffffffffffffffffffff16610790610fa6565b73ffffffffffffffffffffffffffffffffffffffff16146107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd90613453565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b60606002805461081290613932565b80601f016020809104026020016040519081016040528092919081815260200182805461083e90613932565b801561088b5780601f106108605761010080835404028352916020019161088b565b820191906000526020600020905b81548152906001019060200180831161086e57829003601f168201915b5050505050905090565b60006108a082611719565b6108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d6906135b3565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092582610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d906134f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b5611711565b73ffffffffffffffffffffffffffffffffffffffff1614806109e457506109e3816109de611711565b61151b565b5b610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a906133d3565b60405180910390fd5b610a2e838383611727565b505050565b6000600154905090565b610a488383836117d9565b505050565b6000610a5883610e35565b8210610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a90906132d3565b60405180910390fd5b6000610aa3610a33565b905060008060005b83811015610c09576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b9d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf55786841415610be6578195505050505050610c45565b8380610bf190613995565b9450505b508080610c0190613995565b915050610aab565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90613573565b60405180910390fd5b92915050565b610c53611711565b73ffffffffffffffffffffffffffffffffffffffff16610c71610fa6565b73ffffffffffffffffffffffffffffffffffffffff1614610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90613453565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d0557600080fd5b565b610d2283838360405180602001604052806000815250611384565b505050565b6000610d31610a33565b8210610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990613393565b60405180910390fd5b819050919050565b610d82611711565b73ffffffffffffffffffffffffffffffffffffffff16610da0610fa6565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613453565b60405180910390fd5b818160099190610e07929190612900565b505050565b600a60009054906101000a900460ff1681565b6000610e2a82611d92565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90613413565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f26611711565b73ffffffffffffffffffffffffffffffffffffffff16610f44610fa6565b73ffffffffffffffffffffffffffffffffffffffff1614610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9190613453565b60405180910390fd5b610fa46000611f95565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fde90613932565b80601f016020809104026020016040519081016040528092919081815260200182805461100a90613932565b80156110575780601f1061102c57610100808354040283529160200191611057565b820191906000526020600020905b81548152906001019060200180831161103a57829003601f168201915b5050505050905090565b600061106b610a33565b9050600082116110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613353565b60405180910390fd5b600a8211156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613373565b60405180910390fd5b600a60009054906101000a900460ff1615611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906132f3565b60405180910390fd5b610d05828261115391906136ed565b1115611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b906133f3565b60405180910390fd5b660aa87bee5380006001836111a99190613802565b6111b39190613774565b3410156111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec906134d3565b60405180910390fd5b6111ff3383612059565b5050565b61120b611711565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090613493565b60405180910390fd5b8060076000611286611711565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611333611711565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113789190613296565b60405180910390a35050565b61138f8484846117d9565b61139b84848484612077565b6113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190613513565b60405180910390fd5b50505050565b60606113eb82611719565b61142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190613473565b60405180910390fd5b600061143461220e565b90506000815111611454576040518060200160405280600081525061147f565b8061145e846122a0565b60405160200161146f92919061320b565b6040516020818303038152906040525b915050919050565b6009805461149490613932565b80601f01602080910402602001604051908101604052809291908181526020018280546114c090613932565b801561150d5780601f106114e25761010080835404028352916020019161150d565b820191906000526020600020905b8154815290600101906020018083116114f057829003601f168201915b505050505081565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b7611711565b73ffffffffffffffffffffffffffffffffffffffff166115d5610fa6565b73ffffffffffffffffffffffffffffffffffffffff161461162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290613453565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290613313565b60405180910390fd5b6116a481611f95565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006117e482611d92565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661180b611711565b73ffffffffffffffffffffffffffffffffffffffff1614806118675750611830611711565b73ffffffffffffffffffffffffffffffffffffffff1661184f84610895565b73ffffffffffffffffffffffffffffffffffffffff16145b806118835750611882826000015161187d611711565b61151b565b5b9050806118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906134b3565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e90613433565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e906133b3565b60405180910390fd5b6119b48585856001612401565b6119c46000848460000151611727565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a3291906137ce565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ad691906136a7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611bdc91906136ed565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d2257611c5281611719565b15611d21576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8a8686866001612407565b505050505050565b611d9a612986565b611da382611719565b611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990613333565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8310611e465760017f000000000000000000000000000000000000000000000000000000000000000a84611e399190613802565b611e4391906136ed565b90505b60008390505b818110611f54576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f4057809350505050611f90565b508080611f4c90613908565b915050611e4c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790613593565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61207382826040518060200160405280600081525061240d565b5050565b60006120988473ffffffffffffffffffffffffffffffffffffffff166128ed565b15612201578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120c1611711565b8786866040518563ffffffff1660e01b81526004016120e3949392919061324a565b602060405180830381600087803b1580156120fd57600080fd5b505af192505050801561212e57506040513d601f19601f8201168201806040525081019061212b9190612d29565b60015b6121b1573d806000811461215e576040519150601f19603f3d011682016040523d82523d6000602084013e612163565b606091505b506000815114156121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090613513565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612206565b600190505b949350505050565b60606009805461221d90613932565b80601f016020809104026020016040519081016040528092919081815260200182805461224990613932565b80156122965780601f1061226b57610100808354040283529160200191612296565b820191906000526020600020905b81548152906001019060200180831161227957829003601f168201915b5050505050905090565b606060008214156122e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123fc565b600082905060005b6000821461231a57808061230390613995565b915050600a826123139190613743565b91506122f0565b60008167ffffffffffffffff81111561233657612335613acb565b5b6040519080825280601f01601f1916602001820160405280156123685781602001600182028036833780820191505090505b5090505b600085146123f5576001826123819190613802565b9150600a8561239091906139de565b603061239c91906136ed565b60f81b8183815181106123b2576123b1613a9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123ee9190613743565b945061236c565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247b90613553565b60405180910390fd5b61248d81611719565b156124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490613533565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115612530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612527906135d3565b60405180910390fd5b61253d6000858386612401565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161263a91906136a7565b6fffffffffffffffffffffffffffffffff16815260200185836020015161266191906136a7565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156128d057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128706000888488612077565b6128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a690613513565b60405180910390fd5b81806128ba90613995565b92505080806128c890613995565b9150506127ff565b50806001819055506128e56000878588612407565b505050505050565b600080823b905060008111915050919050565b82805461290c90613932565b90600052602060002090601f01602090048101928261292e5760008555612975565b82601f1061294757803560ff1916838001178555612975565b82800160010185558215612975579182015b82811115612974578235825591602001919060010190612959565b5b50905061298291906129c0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156129d95760008160009055506001016129c1565b5090565b60006129f06129eb84613633565b61360e565b905082815260208101848484011115612a0c57612a0b613b09565b5b612a178482856138c6565b509392505050565b600081359050612a2e816141b0565b92915050565b600081359050612a43816141c7565b92915050565b600081359050612a58816141de565b92915050565b600081519050612a6d816141de565b92915050565b600082601f830112612a8857612a87613aff565b5b8135612a988482602086016129dd565b91505092915050565b60008083601f840112612ab757612ab6613aff565b5b8235905067ffffffffffffffff811115612ad457612ad3613afa565b5b602083019150836001820283011115612af057612aef613b04565b5b9250929050565b600081359050612b06816141f5565b92915050565b600060208284031215612b2257612b21613b13565b5b6000612b3084828501612a1f565b91505092915050565b60008060408385031215612b5057612b4f613b13565b5b6000612b5e85828601612a1f565b9250506020612b6f85828601612a1f565b9150509250929050565b600080600060608486031215612b9257612b91613b13565b5b6000612ba086828701612a1f565b9350506020612bb186828701612a1f565b9250506040612bc286828701612af7565b9150509250925092565b60008060008060808587031215612be657612be5613b13565b5b6000612bf487828801612a1f565b9450506020612c0587828801612a1f565b9350506040612c1687828801612af7565b925050606085013567ffffffffffffffff811115612c3757612c36613b0e565b5b612c4387828801612a73565b91505092959194509250565b60008060408385031215612c6657612c65613b13565b5b6000612c7485828601612a1f565b9250506020612c8585828601612a34565b9150509250929050565b60008060408385031215612ca657612ca5613b13565b5b6000612cb485828601612a1f565b9250506020612cc585828601612af7565b9150509250929050565b600060208284031215612ce557612ce4613b13565b5b6000612cf384828501612a34565b91505092915050565b600060208284031215612d1257612d11613b13565b5b6000612d2084828501612a49565b91505092915050565b600060208284031215612d3f57612d3e613b13565b5b6000612d4d84828501612a5e565b91505092915050565b60008060208385031215612d6d57612d6c613b13565b5b600083013567ffffffffffffffff811115612d8b57612d8a613b0e565b5b612d9785828601612aa1565b92509250509250929050565b600060208284031215612db957612db8613b13565b5b6000612dc784828501612af7565b91505092915050565b612dd981613836565b82525050565b612de881613848565b82525050565b6000612df982613664565b612e03818561367a565b9350612e138185602086016138d5565b612e1c81613b18565b840191505092915050565b6000612e328261366f565b612e3c818561368b565b9350612e4c8185602086016138d5565b612e5581613b18565b840191505092915050565b6000612e6b8261366f565b612e75818561369c565b9350612e858185602086016138d5565b80840191505092915050565b6000612e9e60228361368b565b9150612ea982613b29565b604082019050919050565b6000612ec160068361368b565b9150612ecc82613b78565b602082019050919050565b6000612ee460268361368b565b9150612eef82613ba1565b604082019050919050565b6000612f07602a8361368b565b9150612f1282613bf0565b604082019050919050565b6000612f2a600a8361368b565b9150612f3582613c3f565b602082019050919050565b6000612f4d60128361368b565b9150612f5882613c68565b602082019050919050565b6000612f7060238361368b565b9150612f7b82613c91565b604082019050919050565b6000612f9360258361368b565b9150612f9e82613ce0565b604082019050919050565b6000612fb660398361368b565b9150612fc182613d2f565b604082019050919050565b6000612fd960128361368b565b9150612fe482613d7e565b602082019050919050565b6000612ffc602b8361368b565b915061300782613da7565b604082019050919050565b600061301f60268361368b565b915061302a82613df6565b604082019050919050565b600061304260208361368b565b915061304d82613e45565b602082019050919050565b6000613065602f8361368b565b915061307082613e6e565b604082019050919050565b6000613088601a8361368b565b915061309382613ebd565b602082019050919050565b60006130ab60328361368b565b91506130b682613ee6565b604082019050919050565b60006130ce60168361368b565b91506130d982613f35565b602082019050919050565b60006130f160228361368b565b91506130fc82613f5e565b604082019050919050565b600061311460338361368b565b915061311f82613fad565b604082019050919050565b6000613137601d8361368b565b915061314282613ffc565b602082019050919050565b600061315a60218361368b565b915061316582614025565b604082019050919050565b600061317d602e8361368b565b915061318882614074565b604082019050919050565b60006131a0602f8361368b565b91506131ab826140c3565b604082019050919050565b60006131c3602d8361368b565b91506131ce82614112565b604082019050919050565b60006131e660228361368b565b91506131f182614161565b604082019050919050565b613205816138bc565b82525050565b60006132178285612e60565b91506132238284612e60565b91508190509392505050565b60006020820190506132446000830184612dd0565b92915050565b600060808201905061325f6000830187612dd0565b61326c6020830186612dd0565b61327960408301856131fc565b818103606083015261328b8184612dee565b905095945050505050565b60006020820190506132ab6000830184612ddf565b92915050565b600060208201905081810360008301526132cb8184612e27565b905092915050565b600060208201905081810360008301526132ec81612e91565b9050919050565b6000602082019050818103600083015261330c81612eb4565b9050919050565b6000602082019050818103600083015261332c81612ed7565b9050919050565b6000602082019050818103600083015261334c81612efa565b9050919050565b6000602082019050818103600083015261336c81612f1d565b9050919050565b6000602082019050818103600083015261338c81612f40565b9050919050565b600060208201905081810360008301526133ac81612f63565b9050919050565b600060208201905081810360008301526133cc81612f86565b9050919050565b600060208201905081810360008301526133ec81612fa9565b9050919050565b6000602082019050818103600083015261340c81612fcc565b9050919050565b6000602082019050818103600083015261342c81612fef565b9050919050565b6000602082019050818103600083015261344c81613012565b9050919050565b6000602082019050818103600083015261346c81613035565b9050919050565b6000602082019050818103600083015261348c81613058565b9050919050565b600060208201905081810360008301526134ac8161307b565b9050919050565b600060208201905081810360008301526134cc8161309e565b9050919050565b600060208201905081810360008301526134ec816130c1565b9050919050565b6000602082019050818103600083015261350c816130e4565b9050919050565b6000602082019050818103600083015261352c81613107565b9050919050565b6000602082019050818103600083015261354c8161312a565b9050919050565b6000602082019050818103600083015261356c8161314d565b9050919050565b6000602082019050818103600083015261358c81613170565b9050919050565b600060208201905081810360008301526135ac81613193565b9050919050565b600060208201905081810360008301526135cc816131b6565b9050919050565b600060208201905081810360008301526135ec816131d9565b9050919050565b600060208201905061360860008301846131fc565b92915050565b6000613618613629565b90506136248282613964565b919050565b6000604051905090565b600067ffffffffffffffff82111561364e5761364d613acb565b5b61365782613b18565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136b282613880565b91506136bd83613880565b9250826fffffffffffffffffffffffffffffffff038211156136e2576136e1613a0f565b5b828201905092915050565b60006136f8826138bc565b9150613703836138bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373857613737613a0f565b5b828201905092915050565b600061374e826138bc565b9150613759836138bc565b92508261376957613768613a3e565b5b828204905092915050565b600061377f826138bc565b915061378a836138bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c3576137c2613a0f565b5b828202905092915050565b60006137d982613880565b91506137e483613880565b9250828210156137f7576137f6613a0f565b5b828203905092915050565b600061380d826138bc565b9150613818836138bc565b92508282101561382b5761382a613a0f565b5b828203905092915050565b60006138418261389c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138f35780820151818401526020810190506138d8565b83811115613902576000848401525b50505050565b6000613913826138bc565b9150600082141561392757613926613a0f565b5b600182039050919050565b6000600282049050600182168061394a57607f821691505b6020821081141561395e5761395d613a6d565b5b50919050565b61396d82613b18565b810181811067ffffffffffffffff8211171561398c5761398b613acb565b5b80604052505050565b60006139a0826138bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139d3576139d2613a0f565b5b600182019050919050565b60006139e9826138bc565b91506139f4836138bc565b925082613a0457613a03613a3e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6141b981613836565b81146141c457600080fd5b50565b6141d081613848565b81146141db57600080fd5b50565b6141e781613854565b81146141f257600080fd5b50565b6141fe816138bc565b811461420957600080fd5b5056fea2646970667358221220b25998c256b0943bc49f8f71d830c65feda134884ced24bab7b57af430dea9e664736f6c63430008070033

Deployed Bytecode Sourcemap

38334:1261:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23779:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39279:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25505:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27030:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26593:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22343:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27880:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22971:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39151:120;;;:::i;:::-;;28085:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22506:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39489:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38577:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25328:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24205:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37642:94;;;;;;;;;;;;;:::i;:::-;;36991:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25660:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38676:467;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27298:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28305:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25821:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38544:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32636:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27635:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37891:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23779:370;23906:4;23951:25;23936:40;;;:11;:40;;;;:99;;;;24002:33;23987:48;;;:11;:48;;;;23936:99;:160;;;;24061:35;24046:50;;;:11;:50;;;;23936:160;:207;;;;24107:36;24131:11;24107:23;:36::i;:::-;23936:207;23922:221;;23779:370;;;:::o;39279:81::-;37222:12;:10;:12::i;:::-;37211:23;;:7;:5;:7::i;:::-;:23;;;37203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39346:6:::1;39337;;:15;;;;;;;;;;;;;;;;;;39279:81:::0;:::o;25505:94::-;25559:13;25588:5;25581:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25505:94;:::o;27030:204::-;27098:7;27122:16;27130:7;27122;:16::i;:::-;27114:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27204:15;:24;27220:7;27204:24;;;;;;;;;;;;;;;;;;;;;27197:31;;27030:204;;;:::o;26593:379::-;26662:13;26678:24;26694:7;26678:15;:24::i;:::-;26662:40;;26723:5;26717:11;;:2;:11;;;;26709:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;26808:5;26792:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26817:37;26834:5;26841:12;:10;:12::i;:::-;26817:16;:37::i;:::-;26792:62;26776:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;26938:28;26947:2;26951:7;26960:5;26938:8;:28::i;:::-;26655:317;26593:379;;:::o;22343:94::-;22396:7;22419:12;;22412:19;;22343:94;:::o;27880:142::-;27988:28;27998:4;28004:2;28008:7;27988:9;:28::i;:::-;27880:142;;;:::o;22971:744::-;23080:7;23115:16;23125:5;23115:9;:16::i;:::-;23107:5;:24;23099:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23177:22;23202:13;:11;:13::i;:::-;23177:38;;23222:19;23252:25;23302:9;23297:350;23321:14;23317:1;:18;23297:350;;;23351:31;23385:11;:14;23397:1;23385:14;;;;;;;;;;;23351:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23438:1;23412:28;;:9;:14;;;:28;;;23408:89;;23473:9;:14;;;23453:34;;23408:89;23530:5;23509:26;;:17;:26;;;23505:135;;;23567:5;23552:11;:20;23548:59;;;23594:1;23587:8;;;;;;;;;23548:59;23617:13;;;;;:::i;:::-;;;;23505:135;23342:305;23337:3;;;;;:::i;:::-;;;;23297:350;;;;23653:56;;;;;;;;;;:::i;:::-;;;;;;;;22971:744;;;;;:::o;39151:120::-;37222:12;:10;:12::i;:::-;37211:23;;:7;:5;:7::i;:::-;:23;;;37203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39223:10:::1;39215:24;;:47;39240:21;39215:47;;;;;;;;;;;;;;;;;;;;;;;39207:56;;;::::0;::::1;;39151:120::o:0;28085:157::-;28197:39;28214:4;28220:2;28224:7;28197:39;;;;;;;;;;;;:16;:39::i;:::-;28085:157;;;:::o;22506:177::-;22573:7;22605:13;:11;:13::i;:::-;22597:5;:21;22589:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;22672:5;22665:12;;22506:177;;;:::o;39489:103::-;37222:12;:10;:12::i;:::-;37211:23;;:7;:5;:7::i;:::-;:23;;;37203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39577:7:::1;;39562:12;:22;;;;;;;:::i;:::-;;39489:103:::0;;:::o;38577:26::-;;;;;;;;;;;;;:::o;25328:118::-;25392:7;25415:20;25427:7;25415:11;:20::i;:::-;:25;;;25408:32;;25328:118;;;:::o;24205:211::-;24269:7;24310:1;24293:19;;:5;:19;;;;24285:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;24382:12;:19;24395:5;24382:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24374:36;;24367:43;;24205:211;;;:::o;37642:94::-;37222:12;:10;:12::i;:::-;37211:23;;:7;:5;:7::i;:::-;:23;;;37203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37707:21:::1;37725:1;37707:9;:21::i;:::-;37642:94::o:0;36991:87::-;37037:7;37064:6;;;;;;;;;;;37057:13;;36991:87;:::o;25660:98::-;25716:13;25745:7;25738:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25660:98;:::o;38676:467::-;38737:14;38754:13;:11;:13::i;:::-;38737:30;;38800:1;38786:11;:15;38778:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;38483:2;38834:11;:30;;38826:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;38906:6;;;;;;;;;;;38905:7;38897:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;38437:4;38953:11;38944:6;:20;;;;:::i;:::-;:36;;38936:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38524:11;39049:1;39035:11;:15;;;;:::i;:::-;39034:31;;;;:::i;:::-;39021:9;:44;;39013:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;39102:33;39112:10;39123:11;39102:9;:33::i;:::-;38726:417;38676:467;:::o;27298:274::-;27401:12;:10;:12::i;:::-;27389:24;;:8;:24;;;;27381:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27498:8;27453:18;:32;27472:12;:10;:12::i;:::-;27453:32;;;;;;;;;;;;;;;:42;27486:8;27453:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27547:8;27518:48;;27533:12;:10;:12::i;:::-;27518:48;;;27557:8;27518:48;;;;;;:::i;:::-;;;;;;;;27298:274;;:::o;28305:311::-;28442:28;28452:4;28458:2;28462:7;28442:9;:28::i;:::-;28493:48;28516:4;28522:2;28526:7;28535:5;28493:22;:48::i;:::-;28477:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;28305:311;;;;:::o;25821:394::-;25919:13;25960:16;25968:7;25960;:16::i;:::-;25944:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;26050:21;26074:10;:8;:10::i;:::-;26050:34;;26129:1;26111:7;26105:21;:25;:104;;;;;;;;;;;;;;;;;26166:7;26175:18;:7;:16;:18::i;:::-;26149:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26105:104;26091:118;;;25821:394;;;:::o;38544:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32636:43::-;;;;:::o;27635:186::-;27757:4;27780:18;:25;27799:5;27780:25;;;;;;;;;;;;;;;:35;27806:8;27780:35;;;;;;;;;;;;;;;;;;;;;;;;;27773:42;;27635:186;;;;:::o;37891:192::-;37222:12;:10;:12::i;:::-;37211:23;;:7;:5;:7::i;:::-;:23;;;37203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38000:1:::1;37980:22;;:8;:22;;;;37972:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38056:19;38066:8;38056:9;:19::i;:::-;37891:192:::0;:::o;12847:157::-;12932:4;12971:25;12956:40;;;:11;:40;;;;12949:47;;12847:157;;;:::o;20161:98::-;20214:7;20241:10;20234:17;;20161:98;:::o;28855:105::-;28912:4;28942:12;;28932:7;:22;28925:29;;28855:105;;;:::o;32458:172::-;32582:2;32555:15;:24;32571:7;32555:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32616:7;32612:2;32596:28;;32605:5;32596:28;;;;;;;;;;;;32458:172;;;:::o;30823:1529::-;30920:35;30958:20;30970:7;30958:11;:20::i;:::-;30920:58;;30987:22;31029:13;:18;;;31013:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;31082:12;:10;:12::i;:::-;31058:36;;:20;31070:7;31058:11;:20::i;:::-;:36;;;31013:81;:142;;;;31105:50;31122:13;:18;;;31142:12;:10;:12::i;:::-;31105:16;:50::i;:::-;31013:142;30987:169;;31181:17;31165:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;31313:4;31291:26;;:13;:18;;;:26;;;31275:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;31402:1;31388:16;;:2;:16;;;;31380:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31455:43;31477:4;31483:2;31487:7;31496:1;31455:21;:43::i;:::-;31555:49;31572:1;31576:7;31585:13;:18;;;31555:8;:49::i;:::-;31643:1;31613:12;:18;31626:4;31613:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31679:1;31651:12;:16;31664:2;31651:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31710:43;;;;;;;;31725:2;31710:43;;;;;;31736:15;31710:43;;;;;31687:11;:20;31699:7;31687:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31981:19;32013:1;32003:7;:11;;;;:::i;:::-;31981:33;;32066:1;32025:43;;:11;:24;32037:11;32025:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;32021:236;;;32083:20;32091:11;32083:7;:20::i;:::-;32079:171;;;32143:97;;;;;;;;32170:13;:18;;;32143:97;;;;;;32201:13;:28;;;32143:97;;;;;32116:11;:24;32128:11;32116:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32079:171;32021:236;32289:7;32285:2;32270:27;;32279:4;32270:27;;;;;;;;;;;;32304:42;32325:4;32331:2;32335:7;32344:1;32304:20;:42::i;:::-;30913:1439;;;30823:1529;;;:::o;24668:606::-;24744:21;;:::i;:::-;24785:16;24793:7;24785;:16::i;:::-;24777:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24857:26;24905:12;24894:7;:23;24890:93;;24974:1;24959:12;24949:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;24928:47;;24890:93;24996:12;25011:7;24996:22;;24991:212;25028:18;25020:4;:26;24991:212;;25065:31;25099:11;:17;25111:4;25099:17;;;;;;;;;;;25065:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25155:1;25129:28;;:9;:14;;;:28;;;25125:71;;25177:9;25170:16;;;;;;;25125:71;25056:147;25048:6;;;;;:::i;:::-;;;;24991:212;;;;25211:57;;;;;;;;;;:::i;:::-;;;;;;;;24668:606;;;;:::o;38091:173::-;38147:16;38166:6;;;;;;;;;;;38147:25;;38192:8;38183:6;;:17;;;;;;;;;;;;;;;;;;38247:8;38216:40;;38237:8;38216:40;;;;;;;;;;;;38136:128;38091:173;:::o;28966:98::-;29031:27;29041:2;29045:8;29031:27;;;;;;;;;;;;:9;:27::i;:::-;28966:98;;:::o;34169:690::-;34306:4;34323:15;:2;:13;;;:15::i;:::-;34319:535;;;34378:2;34362:36;;;34399:12;:10;:12::i;:::-;34413:4;34419:7;34428:5;34362:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34349:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34610:1;34593:6;:13;:18;34589:215;;;34626:61;;;;;;;;;;:::i;:::-;;;;;;;;34589:215;34772:6;34766:13;34757:6;34753:2;34749:15;34742:38;34349:464;34494:45;;;34484:55;;;:6;:55;;;;34477:62;;;;;34319:535;34842:4;34835:11;;34169:690;;;;;;;:::o;39368:113::-;39428:13;39461:12;39454:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39368:113;:::o;382:723::-;438:13;668:1;659:5;:10;655:53;;;686:10;;;;;;;;;;;;;;;;;;;;;655:53;718:12;733:5;718:20;;749:14;774:78;789:1;781:4;:9;774:78;;807:8;;;;;:::i;:::-;;;;838:2;830:10;;;;;:::i;:::-;;;774:78;;;862:19;894:6;884:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;862:39;;912:154;928:1;919:5;:10;912:154;;956:1;946:11;;;;;:::i;:::-;;;1023:2;1015:5;:10;;;;:::i;:::-;1002:2;:24;;;;:::i;:::-;989:39;;972:6;979;972:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1052:2;1043:11;;;;;:::i;:::-;;;912:154;;;1090:6;1076:21;;;;;382:723;;;;:::o;35321:141::-;;;;;:::o;35848:140::-;;;;;:::o;29319:1272::-;29424:20;29447:12;;29424:35;;29488:1;29474:16;;:2;:16;;;;29466:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29665:21;29673:12;29665:7;:21::i;:::-;29664:22;29656:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29747:12;29735:8;:24;;29727:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29807:61;29837:1;29841:2;29845:12;29859:8;29807:21;:61::i;:::-;29877:30;29910:12;:16;29923:2;29910:16;;;;;;;;;;;;;;;29877:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29952:119;;;;;;;;30002:8;29972:11;:19;;;:39;;;;:::i;:::-;29952:119;;;;;;30055:8;30020:11;:24;;;:44;;;;:::i;:::-;29952:119;;;;;29933:12;:16;29946:2;29933:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30106:43;;;;;;;;30121:2;30106:43;;;;;;30132:15;30106:43;;;;;30078:11;:25;30090:12;30078:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30158:20;30181:12;30158:35;;30207:9;30202:281;30226:8;30222:1;:12;30202:281;;;30280:12;30276:2;30255:38;;30272:1;30255:38;;;;;;;;;;;;30320:59;30351:1;30355:2;30359:12;30373:5;30320:22;:59::i;:::-;30302:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;30461:14;;;;;:::i;:::-;;;;30236:3;;;;;:::i;:::-;;;;30202:281;;;;30506:12;30491;:27;;;;30525:60;30554:1;30558:2;30562:12;30576:8;30525:20;:60::i;:::-;29417:1174;;;29319:1272;;;:::o;2907:387::-;2967:4;3175:12;3242:7;3230:20;3222:28;;3285:1;3278:4;:8;3271:15;;;2907: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:365::-;9174:3;9195:66;9259:1;9254:3;9195:66;:::i;:::-;9188:73;;9270:93;9359:3;9270:93;:::i;:::-;9388:2;9383:3;9379:12;9372:19;;9032:365;;;:::o;9403:366::-;9545:3;9566:67;9630:2;9625:3;9566:67;:::i;:::-;9559:74;;9642:93;9731:3;9642:93;:::i;:::-;9760:2;9755:3;9751:12;9744:19;;9403:366;;;:::o;9775:::-;9917:3;9938:67;10002:2;9997:3;9938:67;:::i;:::-;9931:74;;10014:93;10103:3;10014:93;:::i;:::-;10132:2;10127:3;10123:12;10116:19;;9775:366;;;:::o;10147:::-;10289:3;10310:67;10374:2;10369:3;10310:67;:::i;:::-;10303:74;;10386:93;10475:3;10386:93;:::i;:::-;10504:2;10499:3;10495:12;10488:19;;10147:366;;;:::o;10519:::-;10661:3;10682:67;10746:2;10741:3;10682:67;:::i;:::-;10675:74;;10758:93;10847:3;10758:93;:::i;:::-;10876:2;10871:3;10867:12;10860:19;;10519:366;;;:::o;10891:::-;11033:3;11054:67;11118:2;11113:3;11054:67;:::i;:::-;11047:74;;11130:93;11219:3;11130:93;:::i;:::-;11248:2;11243:3;11239:12;11232:19;;10891:366;;;:::o;11263:::-;11405:3;11426:67;11490:2;11485:3;11426:67;:::i;:::-;11419:74;;11502:93;11591:3;11502:93;:::i;:::-;11620:2;11615:3;11611:12;11604:19;;11263:366;;;:::o;11635:::-;11777:3;11798:67;11862:2;11857:3;11798:67;:::i;:::-;11791:74;;11874:93;11963:3;11874:93;:::i;:::-;11992:2;11987:3;11983:12;11976:19;;11635:366;;;:::o;12007:::-;12149:3;12170:67;12234:2;12229:3;12170:67;:::i;:::-;12163:74;;12246:93;12335:3;12246:93;:::i;:::-;12364:2;12359:3;12355:12;12348:19;;12007:366;;;:::o;12379:::-;12521:3;12542:67;12606:2;12601:3;12542:67;:::i;:::-;12535:74;;12618:93;12707:3;12618:93;:::i;:::-;12736:2;12731:3;12727:12;12720:19;;12379:366;;;:::o;12751:::-;12893:3;12914:67;12978:2;12973:3;12914:67;:::i;:::-;12907:74;;12990:93;13079:3;12990:93;:::i;:::-;13108:2;13103:3;13099:12;13092:19;;12751:366;;;:::o;13123:::-;13265:3;13286:67;13350:2;13345:3;13286:67;:::i;:::-;13279:74;;13362:93;13451:3;13362:93;:::i;:::-;13480:2;13475:3;13471:12;13464:19;;13123:366;;;:::o;13495:::-;13637:3;13658:67;13722:2;13717:3;13658:67;:::i;:::-;13651:74;;13734:93;13823:3;13734:93;:::i;:::-;13852:2;13847:3;13843:12;13836:19;;13495:366;;;:::o;13867:::-;14009:3;14030:67;14094:2;14089:3;14030:67;:::i;:::-;14023:74;;14106:93;14195:3;14106:93;:::i;:::-;14224:2;14219:3;14215:12;14208:19;;13867:366;;;:::o;14239:::-;14381:3;14402:67;14466:2;14461:3;14402:67;:::i;:::-;14395:74;;14478:93;14567:3;14478:93;:::i;:::-;14596:2;14591:3;14587:12;14580:19;;14239:366;;;:::o;14611:::-;14753:3;14774:67;14838:2;14833:3;14774:67;:::i;:::-;14767:74;;14850:93;14939:3;14850:93;:::i;:::-;14968:2;14963:3;14959:12;14952:19;;14611:366;;;:::o;14983:::-;15125:3;15146:67;15210:2;15205:3;15146:67;:::i;:::-;15139:74;;15222:93;15311:3;15222:93;:::i;:::-;15340:2;15335:3;15331:12;15324:19;;14983:366;;;:::o;15355:::-;15497:3;15518:67;15582:2;15577:3;15518:67;:::i;:::-;15511:74;;15594:93;15683:3;15594:93;:::i;:::-;15712:2;15707:3;15703:12;15696:19;;15355:366;;;:::o;15727:::-;15869:3;15890:67;15954:2;15949:3;15890:67;:::i;:::-;15883:74;;15966:93;16055:3;15966:93;:::i;:::-;16084:2;16079:3;16075:12;16068:19;;15727:366;;;:::o;16099:::-;16241:3;16262:67;16326:2;16321:3;16262:67;:::i;:::-;16255:74;;16338:93;16427:3;16338:93;:::i;:::-;16456:2;16451:3;16447:12;16440:19;;16099:366;;;:::o;16471:::-;16613:3;16634:67;16698:2;16693:3;16634:67;:::i;:::-;16627:74;;16710:93;16799:3;16710:93;:::i;:::-;16828:2;16823:3;16819:12;16812:19;;16471:366;;;:::o;16843:::-;16985:3;17006:67;17070:2;17065:3;17006:67;:::i;:::-;16999:74;;17082:93;17171:3;17082:93;:::i;:::-;17200:2;17195:3;17191:12;17184:19;;16843:366;;;:::o;17215:::-;17357:3;17378:67;17442:2;17437:3;17378:67;:::i;:::-;17371:74;;17454:93;17543:3;17454:93;:::i;:::-;17572:2;17567:3;17563:12;17556:19;;17215:366;;;:::o;17587:::-;17729:3;17750:67;17814:2;17809:3;17750:67;:::i;:::-;17743:74;;17826:93;17915:3;17826:93;:::i;:::-;17944:2;17939:3;17935:12;17928:19;;17587:366;;;:::o;17959:118::-;18046:24;18064:5;18046:24;:::i;:::-;18041:3;18034:37;17959:118;;:::o;18083:435::-;18263:3;18285:95;18376:3;18367:6;18285:95;:::i;:::-;18278:102;;18397:95;18488:3;18479:6;18397:95;:::i;:::-;18390:102;;18509:3;18502:10;;18083:435;;;;;:::o;18524:222::-;18617:4;18655:2;18644:9;18640:18;18632:26;;18668:71;18736:1;18725:9;18721:17;18712:6;18668:71;:::i;:::-;18524:222;;;;:::o;18752:640::-;18947:4;18985:3;18974:9;18970:19;18962:27;;18999:71;19067:1;19056:9;19052:17;19043:6;18999:71;:::i;:::-;19080:72;19148:2;19137:9;19133:18;19124:6;19080:72;:::i;:::-;19162;19230:2;19219:9;19215:18;19206:6;19162:72;:::i;:::-;19281:9;19275:4;19271:20;19266:2;19255:9;19251:18;19244:48;19309:76;19380:4;19371:6;19309:76;:::i;:::-;19301:84;;18752:640;;;;;;;:::o;19398:210::-;19485:4;19523:2;19512:9;19508:18;19500:26;;19536:65;19598:1;19587:9;19583:17;19574:6;19536:65;:::i;:::-;19398:210;;;;:::o;19614:313::-;19727:4;19765:2;19754:9;19750:18;19742:26;;19814:9;19808:4;19804:20;19800:1;19789:9;19785:17;19778:47;19842:78;19915:4;19906:6;19842:78;:::i;:::-;19834:86;;19614:313;;;;:::o;19933:419::-;20099:4;20137:2;20126:9;20122:18;20114:26;;20186:9;20180:4;20176:20;20172:1;20161:9;20157:17;20150:47;20214:131;20340:4;20214:131;:::i;:::-;20206:139;;19933:419;;;:::o;20358:::-;20524:4;20562:2;20551:9;20547:18;20539:26;;20611:9;20605:4;20601:20;20597:1;20586:9;20582:17;20575:47;20639:131;20765:4;20639:131;:::i;:::-;20631:139;;20358:419;;;:::o;20783:::-;20949:4;20987:2;20976:9;20972:18;20964:26;;21036:9;21030:4;21026:20;21022:1;21011:9;21007:17;21000:47;21064:131;21190:4;21064:131;:::i;:::-;21056:139;;20783:419;;;:::o;21208:::-;21374:4;21412:2;21401:9;21397:18;21389:26;;21461:9;21455:4;21451:20;21447:1;21436:9;21432:17;21425:47;21489:131;21615:4;21489:131;:::i;:::-;21481:139;;21208:419;;;:::o;21633:::-;21799:4;21837:2;21826:9;21822:18;21814:26;;21886:9;21880:4;21876:20;21872:1;21861:9;21857:17;21850:47;21914:131;22040:4;21914:131;:::i;:::-;21906:139;;21633:419;;;:::o;22058:::-;22224:4;22262:2;22251:9;22247:18;22239:26;;22311:9;22305:4;22301:20;22297:1;22286:9;22282:17;22275:47;22339:131;22465:4;22339:131;:::i;:::-;22331:139;;22058:419;;;:::o;22483:::-;22649:4;22687:2;22676:9;22672:18;22664:26;;22736:9;22730:4;22726:20;22722:1;22711:9;22707:17;22700:47;22764:131;22890:4;22764:131;:::i;:::-;22756:139;;22483:419;;;:::o;22908:::-;23074:4;23112:2;23101:9;23097:18;23089:26;;23161:9;23155:4;23151:20;23147:1;23136:9;23132:17;23125:47;23189:131;23315:4;23189:131;:::i;:::-;23181:139;;22908:419;;;:::o;23333:::-;23499:4;23537:2;23526:9;23522:18;23514:26;;23586:9;23580:4;23576:20;23572:1;23561:9;23557:17;23550:47;23614:131;23740:4;23614:131;:::i;:::-;23606:139;;23333:419;;;:::o;23758:::-;23924:4;23962:2;23951:9;23947:18;23939:26;;24011:9;24005:4;24001:20;23997:1;23986:9;23982:17;23975:47;24039:131;24165:4;24039:131;:::i;:::-;24031:139;;23758:419;;;:::o;24183:::-;24349:4;24387:2;24376:9;24372:18;24364:26;;24436:9;24430:4;24426:20;24422:1;24411:9;24407:17;24400:47;24464:131;24590:4;24464:131;:::i;:::-;24456:139;;24183:419;;;:::o;24608:::-;24774:4;24812:2;24801:9;24797:18;24789:26;;24861:9;24855:4;24851:20;24847:1;24836:9;24832:17;24825:47;24889:131;25015:4;24889:131;:::i;:::-;24881:139;;24608:419;;;:::o;25033:::-;25199:4;25237:2;25226:9;25222:18;25214:26;;25286:9;25280:4;25276:20;25272:1;25261:9;25257:17;25250:47;25314:131;25440:4;25314:131;:::i;:::-;25306:139;;25033:419;;;:::o;25458:::-;25624:4;25662:2;25651:9;25647:18;25639:26;;25711:9;25705:4;25701:20;25697:1;25686:9;25682:17;25675:47;25739:131;25865:4;25739:131;:::i;:::-;25731:139;;25458:419;;;:::o;25883:::-;26049:4;26087:2;26076:9;26072:18;26064:26;;26136:9;26130:4;26126:20;26122:1;26111:9;26107:17;26100:47;26164:131;26290:4;26164:131;:::i;:::-;26156:139;;25883:419;;;:::o;26308:::-;26474:4;26512:2;26501:9;26497:18;26489:26;;26561:9;26555:4;26551:20;26547:1;26536:9;26532:17;26525:47;26589:131;26715:4;26589:131;:::i;:::-;26581:139;;26308:419;;;:::o;26733:::-;26899:4;26937:2;26926:9;26922:18;26914:26;;26986:9;26980:4;26976:20;26972:1;26961:9;26957:17;26950:47;27014:131;27140:4;27014:131;:::i;:::-;27006:139;;26733:419;;;:::o;27158:::-;27324:4;27362:2;27351:9;27347:18;27339:26;;27411:9;27405:4;27401:20;27397:1;27386:9;27382:17;27375:47;27439:131;27565:4;27439:131;:::i;:::-;27431:139;;27158:419;;;:::o;27583:::-;27749:4;27787:2;27776:9;27772:18;27764:26;;27836:9;27830:4;27826:20;27822:1;27811:9;27807:17;27800:47;27864:131;27990:4;27864:131;:::i;:::-;27856:139;;27583:419;;;:::o;28008:::-;28174:4;28212:2;28201:9;28197:18;28189:26;;28261:9;28255:4;28251:20;28247:1;28236:9;28232:17;28225:47;28289:131;28415:4;28289:131;:::i;:::-;28281:139;;28008:419;;;:::o;28433:::-;28599:4;28637:2;28626:9;28622:18;28614:26;;28686:9;28680:4;28676:20;28672:1;28661:9;28657:17;28650:47;28714:131;28840:4;28714:131;:::i;:::-;28706:139;;28433:419;;;:::o;28858:::-;29024:4;29062:2;29051:9;29047:18;29039:26;;29111:9;29105:4;29101:20;29097:1;29086:9;29082:17;29075:47;29139:131;29265:4;29139:131;:::i;:::-;29131:139;;28858:419;;;:::o;29283:::-;29449:4;29487:2;29476:9;29472:18;29464:26;;29536:9;29530:4;29526:20;29522:1;29511:9;29507:17;29500:47;29564:131;29690:4;29564:131;:::i;:::-;29556:139;;29283:419;;;:::o;29708:::-;29874:4;29912:2;29901:9;29897:18;29889:26;;29961:9;29955:4;29951:20;29947:1;29936:9;29932:17;29925:47;29989:131;30115:4;29989:131;:::i;:::-;29981:139;;29708:419;;;:::o;30133:::-;30299:4;30337:2;30326:9;30322:18;30314:26;;30386:9;30380:4;30376:20;30372:1;30361:9;30357:17;30350:47;30414:131;30540:4;30414:131;:::i;:::-;30406:139;;30133:419;;;:::o;30558:222::-;30651:4;30689:2;30678:9;30674:18;30666:26;;30702:71;30770:1;30759:9;30755:17;30746:6;30702:71;:::i;:::-;30558:222;;;;:::o;30786:129::-;30820:6;30847:20;;:::i;:::-;30837:30;;30876:33;30904:4;30896:6;30876:33;:::i;:::-;30786:129;;;:::o;30921:75::-;30954:6;30987:2;30981:9;30971:19;;30921:75;:::o;31002:307::-;31063:4;31153:18;31145:6;31142:30;31139:56;;;31175:18;;:::i;:::-;31139:56;31213:29;31235:6;31213:29;:::i;:::-;31205:37;;31297:4;31291;31287:15;31279:23;;31002:307;;;:::o;31315:98::-;31366:6;31400:5;31394:12;31384:22;;31315:98;;;:::o;31419:99::-;31471:6;31505:5;31499:12;31489:22;;31419:99;;;:::o;31524:168::-;31607:11;31641:6;31636:3;31629:19;31681:4;31676:3;31672:14;31657:29;;31524:168;;;;:::o;31698:169::-;31782:11;31816:6;31811:3;31804:19;31856:4;31851:3;31847:14;31832:29;;31698:169;;;;:::o;31873:148::-;31975:11;32012:3;31997:18;;31873:148;;;;:::o;32027:273::-;32067:3;32086:20;32104:1;32086:20;:::i;:::-;32081:25;;32120:20;32138:1;32120:20;:::i;:::-;32115:25;;32242:1;32206:34;32202:42;32199:1;32196:49;32193:75;;;32248:18;;:::i;:::-;32193:75;32292:1;32289;32285:9;32278:16;;32027:273;;;;:::o;32306:305::-;32346:3;32365:20;32383:1;32365:20;:::i;:::-;32360:25;;32399:20;32417:1;32399:20;:::i;:::-;32394:25;;32553:1;32485:66;32481:74;32478:1;32475:81;32472:107;;;32559:18;;:::i;:::-;32472:107;32603:1;32600;32596:9;32589:16;;32306:305;;;;:::o;32617:185::-;32657:1;32674:20;32692:1;32674:20;:::i;:::-;32669:25;;32708:20;32726:1;32708:20;:::i;:::-;32703:25;;32747:1;32737:35;;32752:18;;:::i;:::-;32737:35;32794:1;32791;32787:9;32782:14;;32617:185;;;;:::o;32808:348::-;32848:7;32871:20;32889:1;32871:20;:::i;:::-;32866:25;;32905:20;32923:1;32905:20;:::i;:::-;32900:25;;33093:1;33025:66;33021:74;33018:1;33015:81;33010:1;33003:9;32996:17;32992:105;32989:131;;;33100:18;;:::i;:::-;32989:131;33148:1;33145;33141:9;33130:20;;32808:348;;;;:::o;33162:191::-;33202:4;33222:20;33240:1;33222:20;:::i;:::-;33217:25;;33256:20;33274:1;33256:20;:::i;:::-;33251:25;;33295:1;33292;33289:8;33286:34;;;33300:18;;:::i;:::-;33286:34;33345:1;33342;33338:9;33330:17;;33162:191;;;;:::o;33359:::-;33399:4;33419:20;33437:1;33419:20;:::i;:::-;33414:25;;33453:20;33471:1;33453:20;:::i;:::-;33448:25;;33492:1;33489;33486:8;33483:34;;;33497:18;;:::i;:::-;33483:34;33542:1;33539;33535:9;33527:17;;33359:191;;;;:::o;33556:96::-;33593:7;33622:24;33640:5;33622:24;:::i;:::-;33611:35;;33556:96;;;:::o;33658:90::-;33692:7;33735:5;33728:13;33721:21;33710:32;;33658:90;;;:::o;33754:149::-;33790:7;33830:66;33823:5;33819:78;33808:89;;33754:149;;;:::o;33909:118::-;33946:7;33986:34;33979:5;33975:46;33964:57;;33909:118;;;:::o;34033:126::-;34070:7;34110:42;34103:5;34099:54;34088:65;;34033:126;;;:::o;34165:77::-;34202:7;34231:5;34220:16;;34165:77;;;:::o;34248:154::-;34332:6;34327:3;34322;34309:30;34394:1;34385:6;34380:3;34376:16;34369:27;34248:154;;;:::o;34408:307::-;34476:1;34486:113;34500:6;34497:1;34494:13;34486:113;;;34585:1;34580:3;34576:11;34570:18;34566:1;34561:3;34557:11;34550:39;34522:2;34519:1;34515:10;34510:15;;34486:113;;;34617:6;34614:1;34611:13;34608:101;;;34697:1;34688:6;34683:3;34679:16;34672:27;34608:101;34457:258;34408:307;;;:::o;34721:171::-;34760:3;34783:24;34801:5;34783:24;:::i;:::-;34774:33;;34829:4;34822:5;34819:15;34816:41;;;34837:18;;:::i;:::-;34816:41;34884:1;34877:5;34873:13;34866:20;;34721:171;;;:::o;34898:320::-;34942:6;34979:1;34973:4;34969:12;34959:22;;35026:1;35020:4;35016:12;35047:18;35037:81;;35103:4;35095:6;35091:17;35081:27;;35037:81;35165:2;35157:6;35154:14;35134:18;35131:38;35128:84;;;35184:18;;:::i;:::-;35128:84;34949:269;34898:320;;;:::o;35224:281::-;35307:27;35329:4;35307:27;:::i;:::-;35299:6;35295:40;35437:6;35425:10;35422:22;35401:18;35389:10;35386:34;35383:62;35380:88;;;35448:18;;:::i;:::-;35380:88;35488:10;35484:2;35477:22;35267:238;35224:281;;:::o;35511:233::-;35550:3;35573:24;35591:5;35573:24;:::i;:::-;35564:33;;35619:66;35612:5;35609:77;35606:103;;;35689:18;;:::i;:::-;35606:103;35736:1;35729:5;35725:13;35718:20;;35511:233;;;:::o;35750:176::-;35782:1;35799:20;35817:1;35799:20;:::i;:::-;35794:25;;35833:20;35851:1;35833:20;:::i;:::-;35828:25;;35872:1;35862:35;;35877:18;;:::i;:::-;35862:35;35918:1;35915;35911:9;35906:14;;35750:176;;;;:::o;35932:180::-;35980:77;35977:1;35970:88;36077:4;36074:1;36067:15;36101:4;36098:1;36091:15;36118:180;36166:77;36163:1;36156:88;36263:4;36260:1;36253:15;36287:4;36284:1;36277:15;36304:180;36352:77;36349:1;36342:88;36449:4;36446:1;36439:15;36473:4;36470:1;36463:15;36490:180;36538:77;36535:1;36528:88;36635:4;36632:1;36625:15;36659:4;36656:1;36649:15;36676:180;36724:77;36721:1;36714:88;36821:4;36818:1;36811:15;36845:4;36842:1;36835:15;36862:117;36971:1;36968;36961:12;36985:117;37094:1;37091;37084:12;37108:117;37217:1;37214;37207:12;37231:117;37340:1;37337;37330:12;37354:117;37463:1;37460;37453:12;37477:117;37586:1;37583;37576:12;37600:102;37641:6;37692:2;37688:7;37683:2;37676:5;37672:14;37668:28;37658:38;;37600:102;;;:::o;37708:221::-;37848:34;37844:1;37836:6;37832:14;37825:58;37917:4;37912:2;37904:6;37900:15;37893:29;37708:221;:::o;37935:156::-;38075:8;38071:1;38063:6;38059:14;38052:32;37935:156;:::o;38097:225::-;38237:34;38233:1;38225:6;38221:14;38214:58;38306:8;38301:2;38293:6;38289:15;38282:33;38097:225;:::o;38328:229::-;38468:34;38464:1;38456:6;38452:14;38445:58;38537:12;38532:2;38524:6;38520:15;38513:37;38328:229;:::o;38563:160::-;38703:12;38699:1;38691:6;38687:14;38680:36;38563:160;:::o;38729:168::-;38869:20;38865:1;38857:6;38853:14;38846:44;38729:168;:::o;38903:222::-;39043:34;39039:1;39031:6;39027:14;39020:58;39112:5;39107:2;39099:6;39095:15;39088:30;38903:222;:::o;39131:224::-;39271:34;39267:1;39259:6;39255:14;39248:58;39340:7;39335:2;39327:6;39323:15;39316:32;39131:224;:::o;39361:244::-;39501:34;39497:1;39489:6;39485:14;39478:58;39570:27;39565:2;39557:6;39553:15;39546:52;39361:244;:::o;39611:168::-;39751:20;39747:1;39739:6;39735:14;39728:44;39611:168;:::o;39785:230::-;39925:34;39921:1;39913:6;39909:14;39902:58;39994:13;39989:2;39981:6;39977:15;39970:38;39785:230;:::o;40021:225::-;40161:34;40157:1;40149:6;40145:14;40138:58;40230:8;40225:2;40217:6;40213:15;40206:33;40021:225;:::o;40252:182::-;40392:34;40388:1;40380:6;40376:14;40369:58;40252:182;:::o;40440:234::-;40580:34;40576:1;40568:6;40564:14;40557:58;40649:17;40644:2;40636:6;40632:15;40625:42;40440:234;:::o;40680:176::-;40820:28;40816:1;40808:6;40804:14;40797:52;40680:176;:::o;40862:237::-;41002:34;40998:1;40990:6;40986:14;40979:58;41071:20;41066:2;41058:6;41054:15;41047:45;40862:237;:::o;41105:172::-;41245:24;41241:1;41233:6;41229:14;41222:48;41105:172;:::o;41283:221::-;41423:34;41419:1;41411:6;41407:14;41400:58;41492:4;41487:2;41479:6;41475:15;41468:29;41283:221;:::o;41510:238::-;41650:34;41646:1;41638:6;41634:14;41627:58;41719:21;41714:2;41706:6;41702:15;41695:46;41510:238;:::o;41754:179::-;41894:31;41890:1;41882:6;41878:14;41871:55;41754:179;:::o;41939:220::-;42079:34;42075:1;42067:6;42063:14;42056:58;42148:3;42143:2;42135:6;42131:15;42124:28;41939:220;:::o;42165:233::-;42305:34;42301:1;42293:6;42289:14;42282:58;42374:16;42369:2;42361:6;42357:15;42350:41;42165:233;:::o;42404:234::-;42544:34;42540:1;42532:6;42528:14;42521:58;42613:17;42608:2;42600:6;42596:15;42589:42;42404:234;:::o;42644:232::-;42784:34;42780:1;42772:6;42768:14;42761:58;42853:15;42848:2;42840:6;42836:15;42829:40;42644:232;:::o;42882:221::-;43022:34;43018:1;43010:6;43006:14;42999:58;43091:4;43086:2;43078:6;43074:15;43067:29;42882:221;:::o;43109:122::-;43182:24;43200:5;43182:24;:::i;:::-;43175:5;43172:35;43162:63;;43221:1;43218;43211:12;43162:63;43109:122;:::o;43237:116::-;43307:21;43322:5;43307:21;:::i;:::-;43300:5;43297:32;43287:60;;43343:1;43340;43333:12;43287:60;43237:116;:::o;43359:120::-;43431:23;43448:5;43431:23;:::i;:::-;43424:5;43421:34;43411:62;;43469:1;43466;43459:12;43411:62;43359:120;:::o;43485:122::-;43558:24;43576:5;43558:24;:::i;:::-;43551:5;43548:35;43538:63;;43597:1;43594;43587:12;43538:63;43485:122;:::o

Swarm Source

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