ETH Price: $2,630.39 (+7.28%)

Token

The Lonely Gnomes (GNOMES)
 

Overview

Max Total Supply

1,002 GNOMES

Holders

74

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
30 GNOMES
0x7a0b3da3e037b8eefb045846a10890516f39b107
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:
TheLonelyGnomes

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-02-14
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  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.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @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(collectionSize). 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"
    );

    uint256 urlTokenId = tokenId + 1;

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, urlTokenId.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:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/TheLonelyGnomes.sol



pragma solidity ^0.8.0;





contract TheLonelyGnomes is Ownable, ERC721A, ReentrancyGuard {

  uint256 public constant freeSaleLimit = 1000;
  uint256 public constant maxPerAddressDuringMint = 30;

  struct SaleConfig {
    uint64 publicPrice;
    bool paused;
  }

  SaleConfig public saleConfig;

  constructor() ERC721A("The Lonely Gnomes", "GNOMES", 10, 6000) {
    saleConfig.publicPrice = 0.01 ether;
    saleConfig.paused = true;
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }  

  function publicSaleMint(uint256 quantity)
    external
    payable
    callerIsUser
  {
    uint256 mintableQuantity = quantity;
    SaleConfig memory config = saleConfig;
    bool state = config.paused;
    uint256 publicPrice = uint256(config.publicPrice);

    require(
      isPublicSaleOn(publicPrice, state),
      "public sale has not begun yet"
    );
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    if( (totalSupply() < freeSaleLimit) && (totalSupply() + quantity > freeSaleLimit)){
      mintableQuantity = freeSaleLimit - totalSupply();
    }
    _safeMint(msg.sender, mintableQuantity);
    if ( totalSupply() > freeSaleLimit ){
      refundIfOver(publicPrice * mintableQuantity);
    }
  }

  function refundIfOver(uint256 price) private {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  function isPublicSaleOn(
    uint256 publicPriceWei,
    bool state
  ) internal view returns (bool) {
    return
      publicPriceWei != 0 &&
      !state;
  }

  // For marketing etc.
  function devMint(uint256 quantity) external onlyOwner {
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

  function SetupSaleInfo(
    uint64 publicPriceWei,
    bool state
  ) external onlyOwner {
    saleConfig = SaleConfig(
      publicPriceWei,
      state
    );
  }

  // // metadata URI
  string private _baseTokenURI;

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

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

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

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

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

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":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"bool","name":"state","type":"bool"}],"name":"SetupSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"publicPrice","type":"uint64"},{"internalType":"bool","name":"paused","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600060015560006008553480156200001b57600080fd5b506040518060400160405280601181526020017f546865204c6f6e656c7920476e6f6d65730000000000000000000000000000008152506040518060400160405280600681526020017f474e4f4d45530000000000000000000000000000000000000000000000000000815250600a611770620000ad620000a1620001de60201b60201c565b620001e660201b60201c565b60008111620000f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ea90620003ca565b60405180910390fd5b6000821162000139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013090620003a8565b60405180910390fd5b836002908051906020019062000151929190620002aa565b5082600390805190602001906200016a929190620002aa565b508160a081815250508060808181525050505050506001600981905550662386f26fc10000600a60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600a60000160086101000a81548160ff02191690831515021790555062000500565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b890620003fd565b90600052602060002090601f016020900481019282620002dc576000855562000328565b82601f10620002f757805160ff191683800117855562000328565b8280016001018555821562000328579182015b82811115620003275782518255916020019190600101906200030a565b5b5090506200033791906200033b565b5090565b5b80821115620003565760008160009055506001016200033c565b5090565b600062000369602783620003ec565b9150620003768262000462565b604082019050919050565b600062000390602e83620003ec565b91506200039d82620004b1565b604082019050919050565b60006020820190508181036000830152620003c3816200035a565b9050919050565b60006020820190508181036000830152620003e58162000381565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041657607f821691505b602082108114156200042d576200042c62000433565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516150a46200055e60003960008181610ee101528181610f4f01528181610f8c01528181612681015281816126aa0152612eee015260008181610e6a0152818161179f015281816123eb015261241f01526150a46000f3fe6080604052600436106101d85760003560e01c80638bc35c2f11610102578063b3ab66b011610095578063dc33e68111610064578063dc33e681146106b0578063e985e9c5146106ed578063eddc080d1461072a578063f2fde38b14610753576101d8565b8063b3ab66b014610603578063b88d4fde1461061f578063c87b56dd14610648578063d7224ba014610685576101d8565b806395d89b41116100d157806395d89b411461056d578063a1da579d14610598578063a22cb465146105c3578063ac446002146105ec576101d8565b80638bc35c2f146104ae5780638da5cb5b146104d957806390aa0b0f146105045780639231ab2a14610530576101d8565b80632f745c591161017a57806355f804b31161014957806355f804b3146103f45780636352211e1461041d57806370a082311461045a578063715018a614610497576101d8565b80632f745c5914610328578063375a069a1461036557806342842e0e1461038e5780634f6ccce7146103b7576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632d20fb60146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613713565b61077c565b6040516102119190613e53565b60405180910390f35b34801561022657600080fd5b5061022f6108c6565b60405161023c9190613e6e565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906137ba565b610958565b6040516102799190613dec565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906136d3565b6109dd565b005b3480156102b757600080fd5b506102c0610af6565b6040516102cd919061428b565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906135bd565b610b00565b005b34801561030b57600080fd5b50610326600480360381019061032191906137ba565b610b10565b005b34801561033457600080fd5b5061034f600480360381019061034a91906136d3565b610bee565b60405161035c919061428b565b60405180910390f35b34801561037157600080fd5b5061038c600480360381019061038791906137ba565b610dec565b005b34801561039a57600080fd5b506103b560048036038101906103b091906135bd565b610fc8565b005b3480156103c357600080fd5b506103de60048036038101906103d991906137ba565b610fe8565b6040516103eb919061428b565b60405180910390f35b34801561040057600080fd5b5061041b6004803603810190610416919061376d565b61103b565b005b34801561042957600080fd5b50610444600480360381019061043f91906137ba565b6110cd565b6040516104519190613dec565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190613550565b6110e3565b60405161048e919061428b565b60405180910390f35b3480156104a357600080fd5b506104ac6111cc565b005b3480156104ba57600080fd5b506104c3611254565b6040516104d0919061428b565b60405180910390f35b3480156104e557600080fd5b506104ee611259565b6040516104fb9190613dec565b60405180910390f35b34801561051057600080fd5b50610519611282565b6040516105279291906142a6565b60405180910390f35b34801561053c57600080fd5b50610557600480360381019061055291906137ba565b6112b5565b6040516105649190614270565b60405180910390f35b34801561057957600080fd5b506105826112cd565b60405161058f9190613e6e565b60405180910390f35b3480156105a457600080fd5b506105ad61135f565b6040516105ba919061428b565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190613693565b611365565b005b3480156105f857600080fd5b506106016114e6565b005b61061d600480360381019061061891906137ba565b611667565b005b34801561062b57600080fd5b5061064660048036038101906106419190613610565b6118e8565b005b34801561065457600080fd5b5061066f600480360381019061066a91906137ba565b611944565b60405161067c9190613e6e565b60405180910390f35b34801561069157600080fd5b5061069a6119fd565b6040516106a7919061428b565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190613550565b611a03565b6040516106e4919061428b565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f919061357d565b611a15565b6040516107219190613e53565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c91906137e7565b611aa9565b005b34801561075f57600080fd5b5061077a60048036038101906107759190613550565b611b9e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108af57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108bf57506108be82611c96565b5b9050919050565b6060600280546108d590614612565b80601f016020809104026020016040519081016040528092919081815260200182805461090190614612565b801561094e5780601f106109235761010080835404028352916020019161094e565b820191906000526020600020905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b600061096382611d00565b6109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990614230565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e8826110cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a50906140d0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a78611d0e565b73ffffffffffffffffffffffffffffffffffffffff161480610aa75750610aa681610aa1611d0e565b611a15565b5b610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90613f90565b60405180910390fd5b610af1838383611d16565b505050565b6000600154905090565b610b0b838383611dc8565b505050565b610b18611d0e565b73ffffffffffffffffffffffffffffffffffffffff16610b36611259565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390614030565b60405180910390fd5b60026009541415610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc9906141f0565b60405180910390fd5b6002600981905550610be381612381565b600160098190555050565b6000610bf9836110e3565b8210610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190613e90565b60405180910390fd5b6000610c44610af6565b905060008060005b83811015610daa576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d3e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d965786841415610d87578195505050505050610de6565b8380610d9290614675565b9450505b508080610da290614675565b915050610c4c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906141b0565b60405180910390fd5b92915050565b610df4611d0e565b73ffffffffffffffffffffffffffffffffffffffff16610e12611259565b73ffffffffffffffffffffffffffffffffffffffff1614610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f90614030565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081610e92610af6565b610e9c91906143b9565b1115610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490613ff0565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000082610f0b91906146be565b14610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613ef0565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000082610f79919061440f565b905060005b81811015610fc357610fb0337f000000000000000000000000000000000000000000000000000000000000000061260f565b8080610fbb90614675565b915050610f7e565b505050565b610fe3838383604051806020016040528060008152506118e8565b505050565b6000610ff2610af6565b8210611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613f10565b60405180910390fd5b819050919050565b611043611d0e565b73ffffffffffffffffffffffffffffffffffffffff16611061611259565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90614030565b60405180910390fd5b8181600b91906110c892919061332f565b505050565b60006110d88261262d565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90613fd0565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111d4611d0e565b73ffffffffffffffffffffffffffffffffffffffff166111f2611259565b73ffffffffffffffffffffffffffffffffffffffff1614611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f90614030565b60405180910390fd5b6112526000612830565b565b601e81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900460ff16905082565b6112bd6133b5565b6112c68261262d565b9050919050565b6060600380546112dc90614612565b80601f016020809104026020016040519081016040528092919081815260200182805461130890614612565b80156113555780601f1061132a57610100808354040283529160200191611355565b820191906000526020600020905b81548152906001019060200180831161133857829003601f168201915b5050505050905090565b6103e881565b61136d611d0e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290614070565b60405180910390fd5b80600760006113e8611d0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611495611d0e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114da9190613e53565b60405180910390a35050565b6114ee611d0e565b73ffffffffffffffffffffffffffffffffffffffff1661150c611259565b73ffffffffffffffffffffffffffffffffffffffff1614611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990614030565b60405180910390fd5b600260095414156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f906141f0565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516115d690613dd7565b60006040518083038185875af1925050503d8060008114611613576040519150601f19603f3d011682016040523d82523d6000602084013e611618565b606091505b505090508061165c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611653906140f0565b60405180910390fd5b506001600981905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613f70565b60405180910390fd5b60008190506000600a6040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900460ff16151515158152505090506000816020015190506000826000015167ffffffffffffffff16905061175e81836128f4565b61179d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611794906140b0565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000856117c7610af6565b6117d191906143b9565b1115611812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180990613ff0565b60405180910390fd5b601e8561181e33611a03565b61182891906143b9565b1115611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186090614190565b60405180910390fd5b6103e8611874610af6565b10801561189457506103e885611888610af6565b61189291906143b9565b115b156118b1576118a1610af6565b6103e86118ae91906144ce565b93505b6118bb338561260f565b6103e86118c6610af6565b11156118e1576118e084826118db9190614440565b61290c565b5b5050505050565b6118f3848484611dc8565b6118ff848484846129ad565b61193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590614110565b60405180910390fd5b50505050565b606061194f82611d00565b61198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590614050565b60405180910390fd5b600060018361199d91906143b9565b905060006119a9612b44565b905060008151116119c957604051806020016040528060008152506119f4565b806119d383612bd6565b6040516020016119e4929190613db3565b6040516020818303038152906040525b92505050919050565b60085481565b6000611a0e82612d37565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ab1611d0e565b73ffffffffffffffffffffffffffffffffffffffff16611acf611259565b73ffffffffffffffffffffffffffffffffffffffff1614611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c90614030565b60405180910390fd5b60405180604001604052808367ffffffffffffffff168152602001821515815250600a60008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548160ff0219169083151502179055509050505050565b611ba6611d0e565b73ffffffffffffffffffffffffffffffffffffffff16611bc4611259565b73ffffffffffffffffffffffffffffffffffffffff1614611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190614030565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8190613eb0565b60405180910390fd5b611c9381612830565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dd38261262d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dfa611d0e565b73ffffffffffffffffffffffffffffffffffffffff161480611e565750611e1f611d0e565b73ffffffffffffffffffffffffffffffffffffffff16611e3e84610958565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e725750611e718260000151611e6c611d0e565b611a15565b5b905080611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90614090565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d90614010565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d90613f30565b60405180910390fd5b611fa38585856001612e20565b611fb36000848460000151611d16565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612021919061449a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120c59190614373565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121cb91906143b9565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123115761224181611d00565b15612310576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123798686866001612e26565b505050505050565b60006008549050600082116123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c290613fb0565b60405180910390fd5b6000600183836123db91906143b9565b6123e591906144ce565b905060017f000000000000000000000000000000000000000000000000000000000000000061241491906144ce565b81111561244b5760017f000000000000000000000000000000000000000000000000000000000000000061244891906144ce565b90505b61245481611d00565b612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a906141d0565b60405180910390fd5b60008290505b8181116125f657600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125e35760006125168261262d565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806125ee90614675565b915050612499565b5060018161260491906143b9565b600881905550505050565b612629828260405180602001604052806000815250612e2c565b5050565b6126356133b5565b61263e82611d00565b61267d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267490613ed0565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106126e15760017f0000000000000000000000000000000000000000000000000000000000000000846126d491906144ce565b6126de91906143b9565b90505b60008390505b8181106127ef576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127db5780935050505061282b565b5080806127e7906145e8565b9150506126e7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282290614210565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808314158015612904575081155b905092915050565b8034101561294f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294690614130565b60405180910390fd5b803411156129aa573373ffffffffffffffffffffffffffffffffffffffff166108fc823461297d91906144ce565b9081150290604051600060405180830381858888f193505050501580156129a8573d6000803e3d6000fd5b505b50565b60006129ce8473ffffffffffffffffffffffffffffffffffffffff1661330c565b15612b37578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129f7611d0e565b8786866040518563ffffffff1660e01b8152600401612a199493929190613e07565b602060405180830381600087803b158015612a3357600080fd5b505af1925050508015612a6457506040513d601f19601f82011682018060405250810190612a619190613740565b60015b612ae7573d8060008114612a94576040519150601f19603f3d011682016040523d82523d6000602084013e612a99565b606091505b50600081511415612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad690614110565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b3c565b600190505b949350505050565b6060600b8054612b5390614612565b80601f0160208091040260200160405190810160405280929190818152602001828054612b7f90614612565b8015612bcc5780601f10612ba157610100808354040283529160200191612bcc565b820191906000526020600020905b815481529060010190602001808311612baf57829003601f168201915b5050505050905090565b60606000821415612c1e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d32565b600082905060005b60008214612c50578080612c3990614675565b915050600a82612c49919061440f565b9150612c26565b60008167ffffffffffffffff811115612c6c57612c6b6147ab565b5b6040519080825280601f01601f191660200182016040528015612c9e5781602001600182028036833780820191505090505b5090505b60008514612d2b57600182612cb791906144ce565b9150600a85612cc691906146be565b6030612cd291906143b9565b60f81b818381518110612ce857612ce761477c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d24919061440f565b9450612ca2565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9f90613f50565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9a90614170565b60405180910390fd5b612eac81611d00565b15612eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee390614150565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4690614250565b60405180910390fd5b612f5c6000858386612e20565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516130599190614373565b6fffffffffffffffffffffffffffffffff1681526020018583602001516130809190614373565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156132ef57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461328f60008884886129ad565b6132ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c590614110565b60405180910390fd5b81806132d990614675565b92505080806132e790614675565b91505061321e565b50806001819055506133046000878588612e26565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461333b90614612565b90600052602060002090601f01602090048101928261335d57600085556133a4565b82601f1061337657803560ff19168380011785556133a4565b828001600101855582156133a4579182015b828111156133a3578235825591602001919060010190613388565b5b5090506133b191906133ef565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134085760008160009055506001016133f0565b5090565b600061341f61341a846142f4565b6142cf565b90508281526020810184848401111561343b5761343a6147e9565b5b6134468482856145a6565b509392505050565b60008135905061345d81614ffb565b92915050565b60008135905061347281615012565b92915050565b60008135905061348781615029565b92915050565b60008151905061349c81615029565b92915050565b600082601f8301126134b7576134b66147df565b5b81356134c784826020860161340c565b91505092915050565b60008083601f8401126134e6576134e56147df565b5b8235905067ffffffffffffffff811115613503576135026147da565b5b60208301915083600182028301111561351f5761351e6147e4565b5b9250929050565b60008135905061353581615040565b92915050565b60008135905061354a81615057565b92915050565b600060208284031215613566576135656147f3565b5b60006135748482850161344e565b91505092915050565b60008060408385031215613594576135936147f3565b5b60006135a28582860161344e565b92505060206135b38582860161344e565b9150509250929050565b6000806000606084860312156135d6576135d56147f3565b5b60006135e48682870161344e565b93505060206135f58682870161344e565b925050604061360686828701613526565b9150509250925092565b6000806000806080858703121561362a576136296147f3565b5b60006136388782880161344e565b94505060206136498782880161344e565b935050604061365a87828801613526565b925050606085013567ffffffffffffffff81111561367b5761367a6147ee565b5b613687878288016134a2565b91505092959194509250565b600080604083850312156136aa576136a96147f3565b5b60006136b88582860161344e565b92505060206136c985828601613463565b9150509250929050565b600080604083850312156136ea576136e96147f3565b5b60006136f88582860161344e565b925050602061370985828601613526565b9150509250929050565b600060208284031215613729576137286147f3565b5b600061373784828501613478565b91505092915050565b600060208284031215613756576137556147f3565b5b60006137648482850161348d565b91505092915050565b60008060208385031215613784576137836147f3565b5b600083013567ffffffffffffffff8111156137a2576137a16147ee565b5b6137ae858286016134d0565b92509250509250929050565b6000602082840312156137d0576137cf6147f3565b5b60006137de84828501613526565b91505092915050565b600080604083850312156137fe576137fd6147f3565b5b600061380c8582860161353b565b925050602061381d85828601613463565b9150509250929050565b61383081614502565b82525050565b61383f81614502565b82525050565b61384e81614514565b82525050565b600061385f82614325565b613869818561433b565b93506138798185602086016145b5565b613882816147f8565b840191505092915050565b600061389882614330565b6138a28185614357565b93506138b28185602086016145b5565b6138bb816147f8565b840191505092915050565b60006138d182614330565b6138db8185614368565b93506138eb8185602086016145b5565b80840191505092915050565b6000613904602283614357565b915061390f82614809565b604082019050919050565b6000613927602683614357565b915061393282614858565b604082019050919050565b600061394a602a83614357565b9150613955826148a7565b604082019050919050565b600061396d602c83614357565b9150613978826148f6565b604082019050919050565b6000613990602383614357565b915061399b82614945565b604082019050919050565b60006139b3602583614357565b91506139be82614994565b604082019050919050565b60006139d6603183614357565b91506139e1826149e3565b604082019050919050565b60006139f9601e83614357565b9150613a0482614a32565b602082019050919050565b6000613a1c603983614357565b9150613a2782614a5b565b604082019050919050565b6000613a3f601883614357565b9150613a4a82614aaa565b602082019050919050565b6000613a62602b83614357565b9150613a6d82614ad3565b604082019050919050565b6000613a85601283614357565b9150613a9082614b22565b602082019050919050565b6000613aa8602683614357565b9150613ab382614b4b565b604082019050919050565b6000613acb602083614357565b9150613ad682614b9a565b602082019050919050565b6000613aee602f83614357565b9150613af982614bc3565b604082019050919050565b6000613b11601a83614357565b9150613b1c82614c12565b602082019050919050565b6000613b34603283614357565b9150613b3f82614c3b565b604082019050919050565b6000613b57601d83614357565b9150613b6282614c8a565b602082019050919050565b6000613b7a602283614357565b9150613b8582614cb3565b604082019050919050565b6000613b9d60008361434c565b9150613ba882614d02565b600082019050919050565b6000613bc0601083614357565b9150613bcb82614d05565b602082019050919050565b6000613be3603383614357565b9150613bee82614d2e565b604082019050919050565b6000613c06601683614357565b9150613c1182614d7d565b602082019050919050565b6000613c29601d83614357565b9150613c3482614da6565b602082019050919050565b6000613c4c602183614357565b9150613c5782614dcf565b604082019050919050565b6000613c6f601683614357565b9150613c7a82614e1e565b602082019050919050565b6000613c92602e83614357565b9150613c9d82614e47565b604082019050919050565b6000613cb5602683614357565b9150613cc082614e96565b604082019050919050565b6000613cd8601f83614357565b9150613ce382614ee5565b602082019050919050565b6000613cfb602f83614357565b9150613d0682614f0e565b604082019050919050565b6000613d1e602d83614357565b9150613d2982614f5d565b604082019050919050565b6000613d41602283614357565b9150613d4c82614fac565b604082019050919050565b604082016000820151613d6d6000850182613827565b506020820151613d806020850182613d95565b50505050565b613d8f81614588565b82525050565b613d9e81614592565b82525050565b613dad81614592565b82525050565b6000613dbf82856138c6565b9150613dcb82846138c6565b91508190509392505050565b6000613de282613b90565b9150819050919050565b6000602082019050613e016000830184613836565b92915050565b6000608082019050613e1c6000830187613836565b613e296020830186613836565b613e366040830185613d86565b8181036060830152613e488184613854565b905095945050505050565b6000602082019050613e686000830184613845565b92915050565b60006020820190508181036000830152613e88818461388d565b905092915050565b60006020820190508181036000830152613ea9816138f7565b9050919050565b60006020820190508181036000830152613ec98161391a565b9050919050565b60006020820190508181036000830152613ee98161393d565b9050919050565b60006020820190508181036000830152613f0981613960565b9050919050565b60006020820190508181036000830152613f2981613983565b9050919050565b60006020820190508181036000830152613f49816139a6565b9050919050565b60006020820190508181036000830152613f69816139c9565b9050919050565b60006020820190508181036000830152613f89816139ec565b9050919050565b60006020820190508181036000830152613fa981613a0f565b9050919050565b60006020820190508181036000830152613fc981613a32565b9050919050565b60006020820190508181036000830152613fe981613a55565b9050919050565b6000602082019050818103600083015261400981613a78565b9050919050565b6000602082019050818103600083015261402981613a9b565b9050919050565b6000602082019050818103600083015261404981613abe565b9050919050565b6000602082019050818103600083015261406981613ae1565b9050919050565b6000602082019050818103600083015261408981613b04565b9050919050565b600060208201905081810360008301526140a981613b27565b9050919050565b600060208201905081810360008301526140c981613b4a565b9050919050565b600060208201905081810360008301526140e981613b6d565b9050919050565b6000602082019050818103600083015261410981613bb3565b9050919050565b6000602082019050818103600083015261412981613bd6565b9050919050565b6000602082019050818103600083015261414981613bf9565b9050919050565b6000602082019050818103600083015261416981613c1c565b9050919050565b6000602082019050818103600083015261418981613c3f565b9050919050565b600060208201905081810360008301526141a981613c62565b9050919050565b600060208201905081810360008301526141c981613c85565b9050919050565b600060208201905081810360008301526141e981613ca8565b9050919050565b6000602082019050818103600083015261420981613ccb565b9050919050565b6000602082019050818103600083015261422981613cee565b9050919050565b6000602082019050818103600083015261424981613d11565b9050919050565b6000602082019050818103600083015261426981613d34565b9050919050565b60006040820190506142856000830184613d57565b92915050565b60006020820190506142a06000830184613d86565b92915050565b60006040820190506142bb6000830185613da4565b6142c86020830184613845565b9392505050565b60006142d96142ea565b90506142e58282614644565b919050565b6000604051905090565b600067ffffffffffffffff82111561430f5761430e6147ab565b5b614318826147f8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061437e8261454c565b91506143898361454c565b9250826fffffffffffffffffffffffffffffffff038211156143ae576143ad6146ef565b5b828201905092915050565b60006143c482614588565b91506143cf83614588565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614404576144036146ef565b5b828201905092915050565b600061441a82614588565b915061442583614588565b9250826144355761443461471e565b5b828204905092915050565b600061444b82614588565b915061445683614588565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561448f5761448e6146ef565b5b828202905092915050565b60006144a58261454c565b91506144b08361454c565b9250828210156144c3576144c26146ef565b5b828203905092915050565b60006144d982614588565b91506144e483614588565b9250828210156144f7576144f66146ef565b5b828203905092915050565b600061450d82614568565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156145d35780820151818401526020810190506145b8565b838111156145e2576000848401525b50505050565b60006145f382614588565b91506000821415614607576146066146ef565b5b600182039050919050565b6000600282049050600182168061462a57607f821691505b6020821081141561463e5761463d61474d565b5b50919050565b61464d826147f8565b810181811067ffffffffffffffff8211171561466c5761466b6147ab565b5b80604052505050565b600061468082614588565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146b3576146b26146ef565b5b600182019050919050565b60006146c982614588565b91506146d483614588565b9250826146e4576146e361471e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61500481614502565b811461500f57600080fd5b50565b61501b81614514565b811461502657600080fd5b50565b61503281614520565b811461503d57600080fd5b50565b61504981614588565b811461505457600080fd5b50565b61506081614592565b811461506b57600080fd5b5056fea264697066735822122050b0566ff2ce675866d1536ae0e5d54b11ad0e0e628176b697110b7178491dcc64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80638bc35c2f11610102578063b3ab66b011610095578063dc33e68111610064578063dc33e681146106b0578063e985e9c5146106ed578063eddc080d1461072a578063f2fde38b14610753576101d8565b8063b3ab66b014610603578063b88d4fde1461061f578063c87b56dd14610648578063d7224ba014610685576101d8565b806395d89b41116100d157806395d89b411461056d578063a1da579d14610598578063a22cb465146105c3578063ac446002146105ec576101d8565b80638bc35c2f146104ae5780638da5cb5b146104d957806390aa0b0f146105045780639231ab2a14610530576101d8565b80632f745c591161017a57806355f804b31161014957806355f804b3146103f45780636352211e1461041d57806370a082311461045a578063715018a614610497576101d8565b80632f745c5914610328578063375a069a1461036557806342842e0e1461038e5780634f6ccce7146103b7576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632d20fb60146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613713565b61077c565b6040516102119190613e53565b60405180910390f35b34801561022657600080fd5b5061022f6108c6565b60405161023c9190613e6e565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906137ba565b610958565b6040516102799190613dec565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906136d3565b6109dd565b005b3480156102b757600080fd5b506102c0610af6565b6040516102cd919061428b565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906135bd565b610b00565b005b34801561030b57600080fd5b50610326600480360381019061032191906137ba565b610b10565b005b34801561033457600080fd5b5061034f600480360381019061034a91906136d3565b610bee565b60405161035c919061428b565b60405180910390f35b34801561037157600080fd5b5061038c600480360381019061038791906137ba565b610dec565b005b34801561039a57600080fd5b506103b560048036038101906103b091906135bd565b610fc8565b005b3480156103c357600080fd5b506103de60048036038101906103d991906137ba565b610fe8565b6040516103eb919061428b565b60405180910390f35b34801561040057600080fd5b5061041b6004803603810190610416919061376d565b61103b565b005b34801561042957600080fd5b50610444600480360381019061043f91906137ba565b6110cd565b6040516104519190613dec565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190613550565b6110e3565b60405161048e919061428b565b60405180910390f35b3480156104a357600080fd5b506104ac6111cc565b005b3480156104ba57600080fd5b506104c3611254565b6040516104d0919061428b565b60405180910390f35b3480156104e557600080fd5b506104ee611259565b6040516104fb9190613dec565b60405180910390f35b34801561051057600080fd5b50610519611282565b6040516105279291906142a6565b60405180910390f35b34801561053c57600080fd5b50610557600480360381019061055291906137ba565b6112b5565b6040516105649190614270565b60405180910390f35b34801561057957600080fd5b506105826112cd565b60405161058f9190613e6e565b60405180910390f35b3480156105a457600080fd5b506105ad61135f565b6040516105ba919061428b565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190613693565b611365565b005b3480156105f857600080fd5b506106016114e6565b005b61061d600480360381019061061891906137ba565b611667565b005b34801561062b57600080fd5b5061064660048036038101906106419190613610565b6118e8565b005b34801561065457600080fd5b5061066f600480360381019061066a91906137ba565b611944565b60405161067c9190613e6e565b60405180910390f35b34801561069157600080fd5b5061069a6119fd565b6040516106a7919061428b565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190613550565b611a03565b6040516106e4919061428b565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f919061357d565b611a15565b6040516107219190613e53565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c91906137e7565b611aa9565b005b34801561075f57600080fd5b5061077a60048036038101906107759190613550565b611b9e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108af57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108bf57506108be82611c96565b5b9050919050565b6060600280546108d590614612565b80601f016020809104026020016040519081016040528092919081815260200182805461090190614612565b801561094e5780601f106109235761010080835404028352916020019161094e565b820191906000526020600020905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b600061096382611d00565b6109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990614230565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e8826110cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a50906140d0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a78611d0e565b73ffffffffffffffffffffffffffffffffffffffff161480610aa75750610aa681610aa1611d0e565b611a15565b5b610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90613f90565b60405180910390fd5b610af1838383611d16565b505050565b6000600154905090565b610b0b838383611dc8565b505050565b610b18611d0e565b73ffffffffffffffffffffffffffffffffffffffff16610b36611259565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390614030565b60405180910390fd5b60026009541415610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc9906141f0565b60405180910390fd5b6002600981905550610be381612381565b600160098190555050565b6000610bf9836110e3565b8210610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190613e90565b60405180910390fd5b6000610c44610af6565b905060008060005b83811015610daa576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d3e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d965786841415610d87578195505050505050610de6565b8380610d9290614675565b9450505b508080610da290614675565b915050610c4c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906141b0565b60405180910390fd5b92915050565b610df4611d0e565b73ffffffffffffffffffffffffffffffffffffffff16610e12611259565b73ffffffffffffffffffffffffffffffffffffffff1614610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f90614030565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000177081610e92610af6565b610e9c91906143b9565b1115610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490613ff0565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a82610f0b91906146be565b14610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613ef0565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a82610f79919061440f565b905060005b81811015610fc357610fb0337f000000000000000000000000000000000000000000000000000000000000000a61260f565b8080610fbb90614675565b915050610f7e565b505050565b610fe3838383604051806020016040528060008152506118e8565b505050565b6000610ff2610af6565b8210611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613f10565b60405180910390fd5b819050919050565b611043611d0e565b73ffffffffffffffffffffffffffffffffffffffff16611061611259565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90614030565b60405180910390fd5b8181600b91906110c892919061332f565b505050565b60006110d88261262d565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90613fd0565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111d4611d0e565b73ffffffffffffffffffffffffffffffffffffffff166111f2611259565b73ffffffffffffffffffffffffffffffffffffffff1614611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f90614030565b60405180910390fd5b6112526000612830565b565b601e81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900460ff16905082565b6112bd6133b5565b6112c68261262d565b9050919050565b6060600380546112dc90614612565b80601f016020809104026020016040519081016040528092919081815260200182805461130890614612565b80156113555780601f1061132a57610100808354040283529160200191611355565b820191906000526020600020905b81548152906001019060200180831161133857829003601f168201915b5050505050905090565b6103e881565b61136d611d0e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290614070565b60405180910390fd5b80600760006113e8611d0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611495611d0e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114da9190613e53565b60405180910390a35050565b6114ee611d0e565b73ffffffffffffffffffffffffffffffffffffffff1661150c611259565b73ffffffffffffffffffffffffffffffffffffffff1614611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990614030565b60405180910390fd5b600260095414156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f906141f0565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516115d690613dd7565b60006040518083038185875af1925050503d8060008114611613576040519150601f19603f3d011682016040523d82523d6000602084013e611618565b606091505b505090508061165c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611653906140f0565b60405180910390fd5b506001600981905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613f70565b60405180910390fd5b60008190506000600a6040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900460ff16151515158152505090506000816020015190506000826000015167ffffffffffffffff16905061175e81836128f4565b61179d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611794906140b0565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001770856117c7610af6565b6117d191906143b9565b1115611812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180990613ff0565b60405180910390fd5b601e8561181e33611a03565b61182891906143b9565b1115611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186090614190565b60405180910390fd5b6103e8611874610af6565b10801561189457506103e885611888610af6565b61189291906143b9565b115b156118b1576118a1610af6565b6103e86118ae91906144ce565b93505b6118bb338561260f565b6103e86118c6610af6565b11156118e1576118e084826118db9190614440565b61290c565b5b5050505050565b6118f3848484611dc8565b6118ff848484846129ad565b61193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590614110565b60405180910390fd5b50505050565b606061194f82611d00565b61198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590614050565b60405180910390fd5b600060018361199d91906143b9565b905060006119a9612b44565b905060008151116119c957604051806020016040528060008152506119f4565b806119d383612bd6565b6040516020016119e4929190613db3565b6040516020818303038152906040525b92505050919050565b60085481565b6000611a0e82612d37565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ab1611d0e565b73ffffffffffffffffffffffffffffffffffffffff16611acf611259565b73ffffffffffffffffffffffffffffffffffffffff1614611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c90614030565b60405180910390fd5b60405180604001604052808367ffffffffffffffff168152602001821515815250600a60008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548160ff0219169083151502179055509050505050565b611ba6611d0e565b73ffffffffffffffffffffffffffffffffffffffff16611bc4611259565b73ffffffffffffffffffffffffffffffffffffffff1614611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190614030565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8190613eb0565b60405180910390fd5b611c9381612830565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dd38261262d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dfa611d0e565b73ffffffffffffffffffffffffffffffffffffffff161480611e565750611e1f611d0e565b73ffffffffffffffffffffffffffffffffffffffff16611e3e84610958565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e725750611e718260000151611e6c611d0e565b611a15565b5b905080611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90614090565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d90614010565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d90613f30565b60405180910390fd5b611fa38585856001612e20565b611fb36000848460000151611d16565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612021919061449a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120c59190614373565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121cb91906143b9565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123115761224181611d00565b15612310576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123798686866001612e26565b505050505050565b60006008549050600082116123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c290613fb0565b60405180910390fd5b6000600183836123db91906143b9565b6123e591906144ce565b905060017f000000000000000000000000000000000000000000000000000000000000177061241491906144ce565b81111561244b5760017f000000000000000000000000000000000000000000000000000000000000177061244891906144ce565b90505b61245481611d00565b612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a906141d0565b60405180910390fd5b60008290505b8181116125f657600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125e35760006125168261262d565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806125ee90614675565b915050612499565b5060018161260491906143b9565b600881905550505050565b612629828260405180602001604052806000815250612e2c565b5050565b6126356133b5565b61263e82611d00565b61267d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267490613ed0565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106126e15760017f000000000000000000000000000000000000000000000000000000000000000a846126d491906144ce565b6126de91906143b9565b90505b60008390505b8181106127ef576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127db5780935050505061282b565b5080806127e7906145e8565b9150506126e7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282290614210565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808314158015612904575081155b905092915050565b8034101561294f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294690614130565b60405180910390fd5b803411156129aa573373ffffffffffffffffffffffffffffffffffffffff166108fc823461297d91906144ce565b9081150290604051600060405180830381858888f193505050501580156129a8573d6000803e3d6000fd5b505b50565b60006129ce8473ffffffffffffffffffffffffffffffffffffffff1661330c565b15612b37578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129f7611d0e565b8786866040518563ffffffff1660e01b8152600401612a199493929190613e07565b602060405180830381600087803b158015612a3357600080fd5b505af1925050508015612a6457506040513d601f19601f82011682018060405250810190612a619190613740565b60015b612ae7573d8060008114612a94576040519150601f19603f3d011682016040523d82523d6000602084013e612a99565b606091505b50600081511415612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad690614110565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b3c565b600190505b949350505050565b6060600b8054612b5390614612565b80601f0160208091040260200160405190810160405280929190818152602001828054612b7f90614612565b8015612bcc5780601f10612ba157610100808354040283529160200191612bcc565b820191906000526020600020905b815481529060010190602001808311612baf57829003601f168201915b5050505050905090565b60606000821415612c1e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d32565b600082905060005b60008214612c50578080612c3990614675565b915050600a82612c49919061440f565b9150612c26565b60008167ffffffffffffffff811115612c6c57612c6b6147ab565b5b6040519080825280601f01601f191660200182016040528015612c9e5781602001600182028036833780820191505090505b5090505b60008514612d2b57600182612cb791906144ce565b9150600a85612cc691906146be565b6030612cd291906143b9565b60f81b818381518110612ce857612ce761477c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d24919061440f565b9450612ca2565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9f90613f50565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9a90614170565b60405180910390fd5b612eac81611d00565b15612eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee390614150565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115612f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4690614250565b60405180910390fd5b612f5c6000858386612e20565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516130599190614373565b6fffffffffffffffffffffffffffffffff1681526020018583602001516130809190614373565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156132ef57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461328f60008884886129ad565b6132ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c590614110565b60405180910390fd5b81806132d990614675565b92505080806132e790614675565b91505061321e565b50806001819055506133046000878588612e26565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461333b90614612565b90600052602060002090601f01602090048101928261335d57600085556133a4565b82601f1061337657803560ff19168380011785556133a4565b828001600101855582156133a4579182015b828111156133a3578235825591602001919060010190613388565b5b5090506133b191906133ef565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134085760008160009055506001016133f0565b5090565b600061341f61341a846142f4565b6142cf565b90508281526020810184848401111561343b5761343a6147e9565b5b6134468482856145a6565b509392505050565b60008135905061345d81614ffb565b92915050565b60008135905061347281615012565b92915050565b60008135905061348781615029565b92915050565b60008151905061349c81615029565b92915050565b600082601f8301126134b7576134b66147df565b5b81356134c784826020860161340c565b91505092915050565b60008083601f8401126134e6576134e56147df565b5b8235905067ffffffffffffffff811115613503576135026147da565b5b60208301915083600182028301111561351f5761351e6147e4565b5b9250929050565b60008135905061353581615040565b92915050565b60008135905061354a81615057565b92915050565b600060208284031215613566576135656147f3565b5b60006135748482850161344e565b91505092915050565b60008060408385031215613594576135936147f3565b5b60006135a28582860161344e565b92505060206135b38582860161344e565b9150509250929050565b6000806000606084860312156135d6576135d56147f3565b5b60006135e48682870161344e565b93505060206135f58682870161344e565b925050604061360686828701613526565b9150509250925092565b6000806000806080858703121561362a576136296147f3565b5b60006136388782880161344e565b94505060206136498782880161344e565b935050604061365a87828801613526565b925050606085013567ffffffffffffffff81111561367b5761367a6147ee565b5b613687878288016134a2565b91505092959194509250565b600080604083850312156136aa576136a96147f3565b5b60006136b88582860161344e565b92505060206136c985828601613463565b9150509250929050565b600080604083850312156136ea576136e96147f3565b5b60006136f88582860161344e565b925050602061370985828601613526565b9150509250929050565b600060208284031215613729576137286147f3565b5b600061373784828501613478565b91505092915050565b600060208284031215613756576137556147f3565b5b60006137648482850161348d565b91505092915050565b60008060208385031215613784576137836147f3565b5b600083013567ffffffffffffffff8111156137a2576137a16147ee565b5b6137ae858286016134d0565b92509250509250929050565b6000602082840312156137d0576137cf6147f3565b5b60006137de84828501613526565b91505092915050565b600080604083850312156137fe576137fd6147f3565b5b600061380c8582860161353b565b925050602061381d85828601613463565b9150509250929050565b61383081614502565b82525050565b61383f81614502565b82525050565b61384e81614514565b82525050565b600061385f82614325565b613869818561433b565b93506138798185602086016145b5565b613882816147f8565b840191505092915050565b600061389882614330565b6138a28185614357565b93506138b28185602086016145b5565b6138bb816147f8565b840191505092915050565b60006138d182614330565b6138db8185614368565b93506138eb8185602086016145b5565b80840191505092915050565b6000613904602283614357565b915061390f82614809565b604082019050919050565b6000613927602683614357565b915061393282614858565b604082019050919050565b600061394a602a83614357565b9150613955826148a7565b604082019050919050565b600061396d602c83614357565b9150613978826148f6565b604082019050919050565b6000613990602383614357565b915061399b82614945565b604082019050919050565b60006139b3602583614357565b91506139be82614994565b604082019050919050565b60006139d6603183614357565b91506139e1826149e3565b604082019050919050565b60006139f9601e83614357565b9150613a0482614a32565b602082019050919050565b6000613a1c603983614357565b9150613a2782614a5b565b604082019050919050565b6000613a3f601883614357565b9150613a4a82614aaa565b602082019050919050565b6000613a62602b83614357565b9150613a6d82614ad3565b604082019050919050565b6000613a85601283614357565b9150613a9082614b22565b602082019050919050565b6000613aa8602683614357565b9150613ab382614b4b565b604082019050919050565b6000613acb602083614357565b9150613ad682614b9a565b602082019050919050565b6000613aee602f83614357565b9150613af982614bc3565b604082019050919050565b6000613b11601a83614357565b9150613b1c82614c12565b602082019050919050565b6000613b34603283614357565b9150613b3f82614c3b565b604082019050919050565b6000613b57601d83614357565b9150613b6282614c8a565b602082019050919050565b6000613b7a602283614357565b9150613b8582614cb3565b604082019050919050565b6000613b9d60008361434c565b9150613ba882614d02565b600082019050919050565b6000613bc0601083614357565b9150613bcb82614d05565b602082019050919050565b6000613be3603383614357565b9150613bee82614d2e565b604082019050919050565b6000613c06601683614357565b9150613c1182614d7d565b602082019050919050565b6000613c29601d83614357565b9150613c3482614da6565b602082019050919050565b6000613c4c602183614357565b9150613c5782614dcf565b604082019050919050565b6000613c6f601683614357565b9150613c7a82614e1e565b602082019050919050565b6000613c92602e83614357565b9150613c9d82614e47565b604082019050919050565b6000613cb5602683614357565b9150613cc082614e96565b604082019050919050565b6000613cd8601f83614357565b9150613ce382614ee5565b602082019050919050565b6000613cfb602f83614357565b9150613d0682614f0e565b604082019050919050565b6000613d1e602d83614357565b9150613d2982614f5d565b604082019050919050565b6000613d41602283614357565b9150613d4c82614fac565b604082019050919050565b604082016000820151613d6d6000850182613827565b506020820151613d806020850182613d95565b50505050565b613d8f81614588565b82525050565b613d9e81614592565b82525050565b613dad81614592565b82525050565b6000613dbf82856138c6565b9150613dcb82846138c6565b91508190509392505050565b6000613de282613b90565b9150819050919050565b6000602082019050613e016000830184613836565b92915050565b6000608082019050613e1c6000830187613836565b613e296020830186613836565b613e366040830185613d86565b8181036060830152613e488184613854565b905095945050505050565b6000602082019050613e686000830184613845565b92915050565b60006020820190508181036000830152613e88818461388d565b905092915050565b60006020820190508181036000830152613ea9816138f7565b9050919050565b60006020820190508181036000830152613ec98161391a565b9050919050565b60006020820190508181036000830152613ee98161393d565b9050919050565b60006020820190508181036000830152613f0981613960565b9050919050565b60006020820190508181036000830152613f2981613983565b9050919050565b60006020820190508181036000830152613f49816139a6565b9050919050565b60006020820190508181036000830152613f69816139c9565b9050919050565b60006020820190508181036000830152613f89816139ec565b9050919050565b60006020820190508181036000830152613fa981613a0f565b9050919050565b60006020820190508181036000830152613fc981613a32565b9050919050565b60006020820190508181036000830152613fe981613a55565b9050919050565b6000602082019050818103600083015261400981613a78565b9050919050565b6000602082019050818103600083015261402981613a9b565b9050919050565b6000602082019050818103600083015261404981613abe565b9050919050565b6000602082019050818103600083015261406981613ae1565b9050919050565b6000602082019050818103600083015261408981613b04565b9050919050565b600060208201905081810360008301526140a981613b27565b9050919050565b600060208201905081810360008301526140c981613b4a565b9050919050565b600060208201905081810360008301526140e981613b6d565b9050919050565b6000602082019050818103600083015261410981613bb3565b9050919050565b6000602082019050818103600083015261412981613bd6565b9050919050565b6000602082019050818103600083015261414981613bf9565b9050919050565b6000602082019050818103600083015261416981613c1c565b9050919050565b6000602082019050818103600083015261418981613c3f565b9050919050565b600060208201905081810360008301526141a981613c62565b9050919050565b600060208201905081810360008301526141c981613c85565b9050919050565b600060208201905081810360008301526141e981613ca8565b9050919050565b6000602082019050818103600083015261420981613ccb565b9050919050565b6000602082019050818103600083015261422981613cee565b9050919050565b6000602082019050818103600083015261424981613d11565b9050919050565b6000602082019050818103600083015261426981613d34565b9050919050565b60006040820190506142856000830184613d57565b92915050565b60006020820190506142a06000830184613d86565b92915050565b60006040820190506142bb6000830185613da4565b6142c86020830184613845565b9392505050565b60006142d96142ea565b90506142e58282614644565b919050565b6000604051905090565b600067ffffffffffffffff82111561430f5761430e6147ab565b5b614318826147f8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061437e8261454c565b91506143898361454c565b9250826fffffffffffffffffffffffffffffffff038211156143ae576143ad6146ef565b5b828201905092915050565b60006143c482614588565b91506143cf83614588565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614404576144036146ef565b5b828201905092915050565b600061441a82614588565b915061442583614588565b9250826144355761443461471e565b5b828204905092915050565b600061444b82614588565b915061445683614588565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561448f5761448e6146ef565b5b828202905092915050565b60006144a58261454c565b91506144b08361454c565b9250828210156144c3576144c26146ef565b5b828203905092915050565b60006144d982614588565b91506144e483614588565b9250828210156144f7576144f66146ef565b5b828203905092915050565b600061450d82614568565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156145d35780820151818401526020810190506145b8565b838111156145e2576000848401525b50505050565b60006145f382614588565b91506000821415614607576146066146ef565b5b600182039050919050565b6000600282049050600182168061462a57607f821691505b6020821081141561463e5761463d61474d565b5b50919050565b61464d826147f8565b810181811067ffffffffffffffff8211171561466c5761466b6147ab565b5b80604052505050565b600061468082614588565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146b3576146b26146ef565b5b600182019050919050565b60006146c982614588565b91506146d483614588565b9250826146e4576146e361471e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61500481614502565b811461500f57600080fd5b50565b61501b81614514565b811461502657600080fd5b50565b61503281614520565b811461503d57600080fd5b50565b61504981614588565b811461505457600080fd5b50565b61506081614592565b811461506b57600080fd5b5056fea264697066735822122050b0566ff2ce675866d1536ae0e5d54b11ad0e0e628176b697110b7178491dcc64736f6c63430008070033

Deployed Bytecode Sourcemap

42756:3286:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27799:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29525:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31094:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30657:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26360:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31944:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45655:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26991:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44606:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32149:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26523:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45362:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29348:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28225:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41858:103;;;;;;;;;;;;;:::i;:::-;;42874:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41207:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43006:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;45892:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29680:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42825:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31362:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45468:181;;;;;;;;;;;;;:::i;:::-;;43308:884;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32369:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29841:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36784:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45779:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31699:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45013:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42116:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27799:370;27926:4;27971:25;27956:40;;;:11;:40;;;;:99;;;;28022:33;28007:48;;;:11;:48;;;;27956:99;:160;;;;28081:35;28066:50;;;:11;:50;;;;27956:160;:207;;;;28127:36;28151:11;28127:23;:36::i;:::-;27956:207;27942:221;;27799:370;;;:::o;29525:94::-;29579:13;29608:5;29601:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29525:94;:::o;31094:204::-;31162:7;31186:16;31194:7;31186;:16::i;:::-;31178:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31268:15;:24;31284:7;31268:24;;;;;;;;;;;;;;;;;;;;;31261:31;;31094:204;;;:::o;30657:379::-;30726:13;30742:24;30758:7;30742:15;:24::i;:::-;30726:40;;30787:5;30781:11;;:2;:11;;;;30773:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30872:5;30856:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30881:37;30898:5;30905:12;:10;:12::i;:::-;30881:16;:37::i;:::-;30856:62;30840:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;31002:28;31011:2;31015:7;31024:5;31002:8;:28::i;:::-;30719:317;30657:379;;:::o;26360:94::-;26413:7;26436:12;;26429:19;;26360:94;:::o;31944:142::-;32052:28;32062:4;32068:2;32072:7;32052:9;:28::i;:::-;31944:142;;;:::o;45655:118::-;41438:12;:10;:12::i;:::-;41427:23;;:7;:5;:7::i;:::-;:23;;;41419:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22204:1:::1;22802:7;;:19;;22794:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22204:1;22935:7;:18;;;;45739:28:::2;45758:8;45739:18;:28::i;:::-;22160:1:::1;23114:7;:22;;;;45655:118:::0;:::o;26991:744::-;27100:7;27135:16;27145:5;27135:9;:16::i;:::-;27127:5;:24;27119:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27197:22;27222:13;:11;:13::i;:::-;27197:38;;27242:19;27272:25;27322:9;27317:350;27341:14;27337:1;:18;27317:350;;;27371:31;27405:11;:14;27417:1;27405:14;;;;;;;;;;;27371:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27458:1;27432:28;;:9;:14;;;:28;;;27428:89;;27493:9;:14;;;27473:34;;27428:89;27550:5;27529:26;;:17;:26;;;27525:135;;;27587:5;27572:11;:20;27568:59;;;27614:1;27607:8;;;;;;;;;27568:59;27637:13;;;;;:::i;:::-;;;;27525:135;27362:305;27357:3;;;;;:::i;:::-;;;;27317:350;;;;27673:56;;;;;;;;;;:::i;:::-;;;;;;;;26991:744;;;;;:::o;44606:401::-;41438:12;:10;:12::i;:::-;41427:23;;:7;:5;:7::i;:::-;:23;;;41419:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44703:14:::1;44691:8;44675:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;44667:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44790:1;44774:12;44763:8;:23;;;;:::i;:::-;:28;44747:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;44860:17;44891:12;44880:8;:23;;;;:::i;:::-;44860:43;;44915:9;44910:92;44934:9;44930:1;:13;44910:92;;;44959:35;44969:10;44981:12;44959:9;:35::i;:::-;44945:3;;;;;:::i;:::-;;;;44910:92;;;;44660:347;44606:401:::0;:::o;32149:157::-;32261:39;32278:4;32284:2;32288:7;32261:39;;;;;;;;;;;;:16;:39::i;:::-;32149:157;;;:::o;26523:177::-;26590:7;26622:13;:11;:13::i;:::-;26614:5;:21;26606:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26689:5;26682:12;;26523:177;;;:::o;45362:100::-;41438:12;:10;:12::i;:::-;41427:23;;:7;:5;:7::i;:::-;:23;;;41419:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45449:7:::1;;45433:13;:23;;;;;;;:::i;:::-;;45362:100:::0;;:::o;29348:118::-;29412:7;29435:20;29447:7;29435:11;:20::i;:::-;:25;;;29428:32;;29348:118;;;:::o;28225:211::-;28289:7;28330:1;28313:19;;:5;:19;;;;28305:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28402:12;:19;28415:5;28402:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28394:36;;28387:43;;28225:211;;;:::o;41858:103::-;41438:12;:10;:12::i;:::-;41427:23;;:7;:5;:7::i;:::-;:23;;;41419:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41923:30:::1;41950:1;41923:18;:30::i;:::-;41858:103::o:0;42874:52::-;42924:2;42874:52;:::o;41207:87::-;41253:7;41280:6;;;;;;;;;;;41273:13;;41207:87;:::o;43006:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45892:147::-;45973:21;;:::i;:::-;46013:20;46025:7;46013:11;:20::i;:::-;46006:27;;45892:147;;;:::o;29680:98::-;29736:13;29765:7;29758:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29680:98;:::o;42825:44::-;42865:4;42825:44;:::o;31362:274::-;31465:12;:10;:12::i;:::-;31453:24;;:8;:24;;;;31445:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31562:8;31517:18;:32;31536:12;:10;:12::i;:::-;31517:32;;;;;;;;;;;;;;;:42;31550:8;31517:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31611:8;31582:48;;31597:12;:10;:12::i;:::-;31582:48;;;31621:8;31582:48;;;;;;:::i;:::-;;;;;;;;31362:274;;:::o;45468:181::-;41438:12;:10;:12::i;:::-;41427:23;;:7;:5;:7::i;:::-;:23;;;41419:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22204:1:::1;22802:7;;:19;;22794:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22204:1;22935:7;:18;;;;45533:12:::2;45551:10;:15;;45574:21;45551:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45532:68;;;45615:7;45607:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45525:124;22160:1:::1;23114:7;:22;;;;45468:181::o:0;43308:884::-;43241:10;43228:23;;:9;:23;;;43220:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43405:24:::1;43432:8;43405:35;;43447:24;43474:10;43447:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;43491:10;43504:6;:13;;;43491:26;;43524:19;43554:6;:18;;;43546:27;;43524:49;;43598:34;43613:11;43626:5;43598:14;:34::i;:::-;43582:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;43722:14;43710:8;43694:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;43686:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42924:2;43809:8;43782:24;43795:10;43782:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;43766:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;42865:4;43896:13;:11;:13::i;:::-;:29;43895:77;;;;;42865:4;43947:8;43931:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;43895:77;43891:147;;;44017:13;:11;:13::i;:::-;42865:4;44001:29;;;;:::i;:::-;43982:48;;43891:147;44044:39;44054:10;44066:16;44044:9;:39::i;:::-;42865:4;44095:13;:11;:13::i;:::-;:29;44090:97;;;44135:44;44162:16;44148:11;:30;;;;:::i;:::-;44135:12;:44::i;:::-;44090:97;43398:794;;;;43308:884:::0;:::o;32369:311::-;32506:28;32516:4;32522:2;32526:7;32506:9;:28::i;:::-;32557:48;32580:4;32586:2;32590:7;32599:5;32557:22;:48::i;:::-;32541:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32369:311;;;;:::o;29841:438::-;29939:13;29980:16;29988:7;29980;:16::i;:::-;29964:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;30070:18;30101:1;30091:7;:11;;;;:::i;:::-;30070:32;;30111:21;30135:10;:8;:10::i;:::-;30111:34;;30190:1;30172:7;30166:21;:25;:107;;;;;;;;;;;;;;;;;30227:7;30236:21;:10;:19;:21::i;:::-;30210:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30166:107;30152:121;;;;29841:438;;;:::o;36784:43::-;;;;:::o;45779:107::-;45837:7;45860:20;45874:5;45860:13;:20::i;:::-;45853:27;;45779:107;;;:::o;31699:186::-;31821:4;31844:18;:25;31863:5;31844:25;;;;;;;;;;;;;;;:35;31870:8;31844:35;;;;;;;;;;;;;;;;;;;;;;;;;31837:42;;31699:186;;;;:::o;45013:172::-;41438:12;:10;:12::i;:::-;41427:23;;:7;:5;:7::i;:::-;:23;;;41419:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45125:54:::1;;;;;;;;45144:14;45125:54;;;;;;45167:5;45125:54;;;;::::0;45112:10:::1;:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45013:172:::0;;:::o;42116:201::-;41438:12;:10;:12::i;:::-;41427:23;;:7;:5;:7::i;:::-;:23;;;41419:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42225:1:::1;42205:22;;:8;:22;;;;42197:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42281:28;42300:8;42281:18;:28::i;:::-;42116:201:::0;:::o;13473:157::-;13558:4;13597:25;13582:40;;;:11;:40;;;;13575:47;;13473:157;;;:::o;32919:105::-;32976:4;33006:12;;32996:7;:22;32989:29;;32919:105;;;:::o;23830:98::-;23883:7;23910:10;23903:17;;23830:98;:::o;36606:172::-;36730:2;36703:15;:24;36719:7;36703:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36764:7;36760:2;36744:28;;36753:5;36744:28;;;;;;;;;;;;36606:172;;;:::o;34971:1529::-;35068:35;35106:20;35118:7;35106:11;:20::i;:::-;35068:58;;35135:22;35177:13;:18;;;35161:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35230:12;:10;:12::i;:::-;35206:36;;:20;35218:7;35206:11;:20::i;:::-;:36;;;35161:81;:142;;;;35253:50;35270:13;:18;;;35290:12;:10;:12::i;:::-;35253:16;:50::i;:::-;35161:142;35135:169;;35329:17;35313:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35461:4;35439:26;;:13;:18;;;:26;;;35423:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35550:1;35536:16;;:2;:16;;;;35528:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35603:43;35625:4;35631:2;35635:7;35644:1;35603:21;:43::i;:::-;35703:49;35720:1;35724:7;35733:13;:18;;;35703:8;:49::i;:::-;35791:1;35761:12;:18;35774:4;35761:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35827:1;35799:12;:16;35812:2;35799:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35858:43;;;;;;;;35873:2;35858:43;;;;;;35884:15;35858:43;;;;;35835:11;:20;35847:7;35835:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36129:19;36161:1;36151:7;:11;;;;:::i;:::-;36129:33;;36214:1;36173:43;;:11;:24;36185:11;36173:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36169:236;;;36231:20;36239:11;36231:7;:20::i;:::-;36227:171;;;36291:97;;;;;;;;36318:13;:18;;;36291:97;;;;;;36349:13;:28;;;36291:97;;;;;36264:11;:24;36276:11;36264:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36227:171;36169:236;36437:7;36433:2;36418:27;;36427:4;36418:27;;;;;;;;;;;;36452:42;36473:4;36479:2;36483:7;36492:1;36452:20;:42::i;:::-;35061:1439;;;34971:1529;;;:::o;36932:846::-;36994:25;37022:24;;36994:52;;37072:1;37061:8;:12;37053:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;37109:16;37159:1;37148:8;37128:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;37109:51;;37199:1;37182:14;:18;;;;:::i;:::-;37171:8;:29;37167:81;;;37239:1;37222:14;:18;;;;:::i;:::-;37211:29;;37167:81;37363:17;37371:8;37363:7;:17::i;:::-;37355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37435:9;37447:17;37435:29;;37430:297;37471:8;37466:1;:13;37430:297;;37530:1;37499:33;;:11;:14;37511:1;37499:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;37495:225;;;37545:31;37579:14;37591:1;37579:11;:14::i;:::-;37545:48;;37621:89;;;;;;;;37648:9;:14;;;37621:89;;;;;;37675:9;:24;;;37621:89;;;;;37604:11;:14;37616:1;37604:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37534:186;37495:225;37481:3;;;;;:::i;:::-;;;;37430:297;;;;37771:1;37760:8;:12;;;;:::i;:::-;37733:24;:39;;;;36987:791;;36932:846;:::o;33030:98::-;33095:27;33105:2;33109:8;33095:27;;;;;;;;;;;;:9;:27::i;:::-;33030:98;;:::o;28688:606::-;28764:21;;:::i;:::-;28805:16;28813:7;28805;:16::i;:::-;28797:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28877:26;28925:12;28914:7;:23;28910:93;;28994:1;28979:12;28969:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28948:47;;28910:93;29016:12;29031:7;29016:22;;29011:212;29048:18;29040:4;:26;29011:212;;29085:31;29119:11;:17;29131:4;29119:17;;;;;;;;;;;29085:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29175:1;29149:28;;:9;:14;;;:28;;;29145:71;;29197:9;29190:16;;;;;;;29145:71;29076:147;29068:6;;;;;:::i;:::-;;;;29011:212;;;;29231:57;;;;;;;;;;:::i;:::-;;;;;;;;28688:606;;;;:::o;42477:191::-;42551:16;42570:6;;;;;;;;;;;42551:25;;42596:8;42587:6;;:17;;;;;;;;;;;;;;;;;;42651:8;42620:40;;42641:8;42620:40;;;;;;;;;;;;42540:128;42477:191;:::o;44408:167::-;44506:4;44551:1;44533:14;:19;;:36;;;;;44564:5;44563:6;44533:36;44519:50;;44408:167;;;;:::o;44198:204::-;44271:5;44258:9;:18;;44250:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44326:5;44314:9;:17;44310:87;;;44350:10;44342:28;;:47;44383:5;44371:9;:17;;;;:::i;:::-;44342:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44310:87;44198:204;:::o;38321:690::-;38458:4;38475:15;:2;:13;;;:15::i;:::-;38471:535;;;38530:2;38514:36;;;38551:12;:10;:12::i;:::-;38565:4;38571:7;38580:5;38514:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38501:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38762:1;38745:6;:13;:18;38741:215;;;38778:61;;;;;;;;;;:::i;:::-;;;;;;;;38741:215;38924:6;38918:13;38909:6;38905:2;38901:15;38894:38;38501:464;38646:45;;;38636:55;;;:6;:55;;;;38629:62;;;;;38471:535;38994:4;38987:11;;38321:690;;;;;;;:::o;45248:108::-;45308:13;45337;45330:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45248:108;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;28442:240::-;28503:7;28552:1;28535:19;;:5;:19;;;;28519:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;28643:12;:19;28656:5;28643:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;28635:41;;28628:48;;28442:240;;;:::o;39473:141::-;;;;;:::o;40000:140::-;;;;;:::o;33467:1272::-;33572:20;33595:12;;33572:35;;33636:1;33622:16;;:2;:16;;;;33614:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33813:21;33821:12;33813:7;:21::i;:::-;33812:22;33804:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33895:12;33883:8;:24;;33875:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33955:61;33985:1;33989:2;33993:12;34007:8;33955:21;:61::i;:::-;34025:30;34058:12;:16;34071:2;34058:16;;;;;;;;;;;;;;;34025:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34100:119;;;;;;;;34150:8;34120:11;:19;;;:39;;;;:::i;:::-;34100:119;;;;;;34203:8;34168:11;:24;;;:44;;;;:::i;:::-;34100:119;;;;;34081:12;:16;34094:2;34081:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34254:43;;;;;;;;34269:2;34254:43;;;;;;34280:15;34254:43;;;;;34226:11;:25;34238:12;34226:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34306:20;34329:12;34306:35;;34355:9;34350:281;34374:8;34370:1;:12;34350:281;;;34428:12;34424:2;34403:38;;34420:1;34403:38;;;;;;;;;;;;34468:59;34499:1;34503:2;34507:12;34521:5;34468:22;:59::i;:::-;34450:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34609:14;;;;;:::i;:::-;;;;34384:3;;;;;:::i;:::-;;;;34350:281;;;;34654:12;34639;:27;;;;34673:60;34702:1;34706:2;34710:12;34724:8;34673:20;:60::i;:::-;33565:1174;;;33467:1272;;;:::o;3390:326::-;3450:4;3707:1;3685:7;:19;;;:23;3678:30;;3390:326;;;:::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:137::-;2117:5;2155:6;2142:20;2133:29;;2171:32;2197:5;2171:32;:::i;:::-;2072:137;;;;:::o;2215:329::-;2274:6;2323:2;2311:9;2302:7;2298:23;2294:32;2291:119;;;2329:79;;:::i;:::-;2291:119;2449:1;2474:53;2519:7;2510:6;2499:9;2495:22;2474:53;:::i;:::-;2464:63;;2420:117;2215:329;;;;:::o;2550:474::-;2618:6;2626;2675:2;2663:9;2654:7;2650:23;2646:32;2643:119;;;2681:79;;:::i;:::-;2643:119;2801:1;2826:53;2871:7;2862:6;2851:9;2847:22;2826:53;:::i;:::-;2816:63;;2772:117;2928:2;2954:53;2999:7;2990:6;2979:9;2975:22;2954:53;:::i;:::-;2944:63;;2899:118;2550:474;;;;;:::o;3030:619::-;3107:6;3115;3123;3172:2;3160:9;3151:7;3147:23;3143:32;3140:119;;;3178:79;;:::i;:::-;3140:119;3298:1;3323:53;3368:7;3359:6;3348:9;3344:22;3323:53;:::i;:::-;3313:63;;3269:117;3425:2;3451:53;3496:7;3487:6;3476:9;3472:22;3451:53;:::i;:::-;3441:63;;3396:118;3553:2;3579:53;3624:7;3615:6;3604:9;3600:22;3579:53;:::i;:::-;3569:63;;3524:118;3030:619;;;;;:::o;3655:943::-;3750:6;3758;3766;3774;3823:3;3811:9;3802:7;3798:23;3794:33;3791:120;;;3830:79;;:::i;:::-;3791:120;3950:1;3975:53;4020:7;4011:6;4000:9;3996:22;3975:53;:::i;:::-;3965:63;;3921:117;4077:2;4103:53;4148:7;4139:6;4128:9;4124:22;4103:53;:::i;:::-;4093:63;;4048:118;4205:2;4231:53;4276:7;4267:6;4256:9;4252:22;4231:53;:::i;:::-;4221:63;;4176:118;4361:2;4350:9;4346:18;4333:32;4392:18;4384:6;4381:30;4378:117;;;4414:79;;:::i;:::-;4378:117;4519:62;4573:7;4564:6;4553:9;4549:22;4519:62;:::i;:::-;4509:72;;4304:287;3655:943;;;;;;;:::o;4604:468::-;4669:6;4677;4726:2;4714:9;4705:7;4701:23;4697:32;4694:119;;;4732:79;;:::i;:::-;4694:119;4852:1;4877:53;4922:7;4913:6;4902:9;4898:22;4877:53;:::i;:::-;4867:63;;4823:117;4979:2;5005:50;5047:7;5038:6;5027:9;5023:22;5005:50;:::i;:::-;4995:60;;4950:115;4604:468;;;;;:::o;5078:474::-;5146:6;5154;5203:2;5191:9;5182:7;5178:23;5174:32;5171:119;;;5209:79;;:::i;:::-;5171:119;5329:1;5354:53;5399:7;5390:6;5379:9;5375:22;5354:53;:::i;:::-;5344:63;;5300:117;5456:2;5482:53;5527:7;5518:6;5507:9;5503:22;5482:53;:::i;:::-;5472:63;;5427:118;5078:474;;;;;:::o;5558:327::-;5616:6;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:52;5860:7;5851:6;5840:9;5836:22;5816:52;:::i;:::-;5806:62;;5762:116;5558:327;;;;:::o;5891:349::-;5960:6;6009:2;5997:9;5988:7;5984:23;5980:32;5977:119;;;6015:79;;:::i;:::-;5977:119;6135:1;6160:63;6215:7;6206:6;6195:9;6191:22;6160:63;:::i;:::-;6150:73;;6106:127;5891:349;;;;:::o;6246:529::-;6317:6;6325;6374:2;6362:9;6353:7;6349:23;6345:32;6342:119;;;6380:79;;:::i;:::-;6342:119;6528:1;6517:9;6513:17;6500:31;6558:18;6550:6;6547:30;6544:117;;;6580:79;;:::i;:::-;6544:117;6693:65;6750:7;6741:6;6730:9;6726:22;6693:65;:::i;:::-;6675:83;;;;6471:297;6246:529;;;;;:::o;6781:329::-;6840:6;6889:2;6877:9;6868:7;6864:23;6860:32;6857:119;;;6895:79;;:::i;:::-;6857:119;7015:1;7040:53;7085:7;7076:6;7065:9;7061:22;7040:53;:::i;:::-;7030:63;;6986:117;6781:329;;;;:::o;7116:466::-;7180:6;7188;7237:2;7225:9;7216:7;7212:23;7208:32;7205:119;;;7243:79;;:::i;:::-;7205:119;7363:1;7388:52;7432:7;7423:6;7412:9;7408:22;7388:52;:::i;:::-;7378:62;;7334:116;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7116:466;;;;;:::o;7588:108::-;7665:24;7683:5;7665:24;:::i;:::-;7660:3;7653:37;7588:108;;:::o;7702:118::-;7789:24;7807:5;7789:24;:::i;:::-;7784:3;7777:37;7702:118;;:::o;7826:109::-;7907:21;7922:5;7907:21;:::i;:::-;7902:3;7895:34;7826:109;;:::o;7941:360::-;8027:3;8055:38;8087:5;8055:38;:::i;:::-;8109:70;8172:6;8167:3;8109:70;:::i;:::-;8102:77;;8188:52;8233:6;8228:3;8221:4;8214:5;8210:16;8188:52;:::i;:::-;8265:29;8287:6;8265:29;:::i;:::-;8260:3;8256:39;8249:46;;8031:270;7941:360;;;;:::o;8307:364::-;8395:3;8423:39;8456:5;8423:39;:::i;:::-;8478:71;8542:6;8537:3;8478:71;:::i;:::-;8471:78;;8558:52;8603:6;8598:3;8591:4;8584:5;8580:16;8558:52;:::i;:::-;8635:29;8657:6;8635:29;:::i;:::-;8630:3;8626:39;8619:46;;8399:272;8307:364;;;;:::o;8677:377::-;8783:3;8811:39;8844:5;8811:39;:::i;:::-;8866:89;8948:6;8943:3;8866:89;:::i;:::-;8859:96;;8964:52;9009:6;9004:3;8997:4;8990:5;8986:16;8964:52;:::i;:::-;9041:6;9036:3;9032:16;9025:23;;8787:267;8677:377;;;;:::o;9060:366::-;9202:3;9223:67;9287:2;9282:3;9223:67;:::i;:::-;9216:74;;9299:93;9388:3;9299:93;:::i;:::-;9417:2;9412:3;9408:12;9401:19;;9060:366;;;:::o;9432:::-;9574:3;9595:67;9659:2;9654:3;9595:67;:::i;:::-;9588:74;;9671:93;9760:3;9671:93;:::i;:::-;9789:2;9784:3;9780:12;9773:19;;9432:366;;;:::o;9804:::-;9946:3;9967:67;10031:2;10026:3;9967:67;:::i;:::-;9960:74;;10043:93;10132:3;10043:93;:::i;:::-;10161:2;10156:3;10152:12;10145:19;;9804:366;;;:::o;10176:::-;10318:3;10339:67;10403:2;10398:3;10339:67;:::i;:::-;10332:74;;10415:93;10504:3;10415:93;:::i;:::-;10533:2;10528:3;10524:12;10517:19;;10176:366;;;:::o;10548:::-;10690:3;10711:67;10775:2;10770:3;10711:67;:::i;:::-;10704:74;;10787:93;10876:3;10787:93;:::i;:::-;10905:2;10900:3;10896:12;10889:19;;10548:366;;;:::o;10920:::-;11062:3;11083:67;11147:2;11142:3;11083:67;:::i;:::-;11076:74;;11159:93;11248:3;11159:93;:::i;:::-;11277:2;11272:3;11268:12;11261:19;;10920:366;;;:::o;11292:::-;11434:3;11455:67;11519:2;11514:3;11455:67;:::i;:::-;11448:74;;11531:93;11620:3;11531:93;:::i;:::-;11649:2;11644:3;11640:12;11633:19;;11292:366;;;:::o;11664:::-;11806:3;11827:67;11891:2;11886:3;11827:67;:::i;:::-;11820:74;;11903:93;11992:3;11903:93;:::i;:::-;12021:2;12016:3;12012:12;12005:19;;11664:366;;;:::o;12036:::-;12178:3;12199:67;12263:2;12258:3;12199:67;:::i;:::-;12192:74;;12275:93;12364:3;12275:93;:::i;:::-;12393:2;12388:3;12384:12;12377:19;;12036:366;;;:::o;12408:::-;12550:3;12571:67;12635:2;12630:3;12571:67;:::i;:::-;12564:74;;12647:93;12736:3;12647:93;:::i;:::-;12765:2;12760:3;12756:12;12749:19;;12408:366;;;:::o;12780:::-;12922:3;12943:67;13007:2;13002:3;12943:67;:::i;:::-;12936:74;;13019:93;13108:3;13019:93;:::i;:::-;13137:2;13132:3;13128:12;13121:19;;12780:366;;;:::o;13152:::-;13294:3;13315:67;13379:2;13374:3;13315:67;:::i;:::-;13308:74;;13391:93;13480:3;13391:93;:::i;:::-;13509:2;13504:3;13500:12;13493:19;;13152:366;;;:::o;13524:::-;13666:3;13687:67;13751:2;13746:3;13687:67;:::i;:::-;13680:74;;13763:93;13852:3;13763:93;:::i;:::-;13881:2;13876:3;13872:12;13865:19;;13524:366;;;:::o;13896:::-;14038:3;14059:67;14123:2;14118:3;14059:67;:::i;:::-;14052:74;;14135:93;14224:3;14135:93;:::i;:::-;14253:2;14248:3;14244:12;14237:19;;13896:366;;;:::o;14268:::-;14410:3;14431:67;14495:2;14490:3;14431:67;:::i;:::-;14424:74;;14507:93;14596:3;14507:93;:::i;:::-;14625:2;14620:3;14616:12;14609:19;;14268:366;;;:::o;14640:::-;14782:3;14803:67;14867:2;14862:3;14803:67;:::i;:::-;14796:74;;14879:93;14968:3;14879:93;:::i;:::-;14997:2;14992:3;14988:12;14981:19;;14640:366;;;:::o;15012:::-;15154:3;15175:67;15239:2;15234:3;15175:67;:::i;:::-;15168:74;;15251:93;15340:3;15251:93;:::i;:::-;15369:2;15364:3;15360:12;15353:19;;15012:366;;;:::o;15384:::-;15526:3;15547:67;15611:2;15606:3;15547:67;:::i;:::-;15540:74;;15623:93;15712:3;15623:93;:::i;:::-;15741:2;15736:3;15732:12;15725:19;;15384:366;;;:::o;15756:::-;15898:3;15919:67;15983:2;15978:3;15919:67;:::i;:::-;15912:74;;15995:93;16084:3;15995:93;:::i;:::-;16113:2;16108:3;16104:12;16097:19;;15756:366;;;:::o;16128:398::-;16287:3;16308:83;16389:1;16384:3;16308:83;:::i;:::-;16301:90;;16400:93;16489:3;16400:93;:::i;:::-;16518:1;16513:3;16509:11;16502:18;;16128:398;;;:::o;16532:366::-;16674:3;16695:67;16759:2;16754:3;16695:67;:::i;:::-;16688:74;;16771:93;16860:3;16771:93;:::i;:::-;16889:2;16884:3;16880:12;16873:19;;16532:366;;;:::o;16904:::-;17046:3;17067:67;17131:2;17126:3;17067:67;:::i;:::-;17060:74;;17143:93;17232:3;17143:93;:::i;:::-;17261:2;17256:3;17252:12;17245:19;;16904:366;;;:::o;17276:::-;17418:3;17439:67;17503:2;17498:3;17439:67;:::i;:::-;17432:74;;17515:93;17604:3;17515:93;:::i;:::-;17633:2;17628:3;17624:12;17617:19;;17276:366;;;:::o;17648:::-;17790:3;17811:67;17875:2;17870:3;17811:67;:::i;:::-;17804:74;;17887:93;17976:3;17887:93;:::i;:::-;18005:2;18000:3;17996:12;17989:19;;17648:366;;;:::o;18020:::-;18162:3;18183:67;18247:2;18242:3;18183:67;:::i;:::-;18176:74;;18259:93;18348:3;18259:93;:::i;:::-;18377:2;18372:3;18368:12;18361:19;;18020:366;;;:::o;18392:::-;18534:3;18555:67;18619:2;18614:3;18555:67;:::i;:::-;18548:74;;18631:93;18720:3;18631:93;:::i;:::-;18749:2;18744:3;18740:12;18733:19;;18392:366;;;:::o;18764:::-;18906:3;18927:67;18991:2;18986:3;18927:67;:::i;:::-;18920:74;;19003:93;19092:3;19003:93;:::i;:::-;19121:2;19116:3;19112:12;19105:19;;18764:366;;;:::o;19136:::-;19278:3;19299:67;19363:2;19358:3;19299:67;:::i;:::-;19292:74;;19375:93;19464:3;19375:93;:::i;:::-;19493:2;19488:3;19484:12;19477:19;;19136:366;;;:::o;19508:::-;19650:3;19671:67;19735:2;19730:3;19671:67;:::i;:::-;19664:74;;19747:93;19836:3;19747:93;:::i;:::-;19865:2;19860:3;19856:12;19849:19;;19508:366;;;:::o;19880:::-;20022:3;20043:67;20107:2;20102:3;20043:67;:::i;:::-;20036:74;;20119:93;20208:3;20119:93;:::i;:::-;20237:2;20232:3;20228:12;20221:19;;19880:366;;;:::o;20252:::-;20394:3;20415:67;20479:2;20474:3;20415:67;:::i;:::-;20408:74;;20491:93;20580:3;20491:93;:::i;:::-;20609:2;20604:3;20600:12;20593:19;;20252:366;;;:::o;20624:::-;20766:3;20787:67;20851:2;20846:3;20787:67;:::i;:::-;20780:74;;20863:93;20952:3;20863:93;:::i;:::-;20981:2;20976:3;20972:12;20965:19;;20624:366;;;:::o;21066:527::-;21225:4;21220:3;21216:14;21312:4;21305:5;21301:16;21295:23;21331:63;21388:4;21383:3;21379:14;21365:12;21331:63;:::i;:::-;21240:164;21496:4;21489:5;21485:16;21479:23;21515:61;21570:4;21565:3;21561:14;21547:12;21515:61;:::i;:::-;21414:172;21194:399;21066:527;;:::o;21599:118::-;21686:24;21704:5;21686:24;:::i;:::-;21681:3;21674:37;21599:118;;:::o;21723:105::-;21798:23;21815:5;21798:23;:::i;:::-;21793:3;21786:36;21723:105;;:::o;21834:115::-;21919:23;21936:5;21919:23;:::i;:::-;21914:3;21907:36;21834:115;;:::o;21955:435::-;22135:3;22157:95;22248:3;22239:6;22157:95;:::i;:::-;22150:102;;22269:95;22360:3;22351:6;22269:95;:::i;:::-;22262:102;;22381:3;22374:10;;21955:435;;;;;:::o;22396:379::-;22580:3;22602:147;22745:3;22602:147;:::i;:::-;22595:154;;22766:3;22759:10;;22396:379;;;:::o;22781:222::-;22874:4;22912:2;22901:9;22897:18;22889:26;;22925:71;22993:1;22982:9;22978:17;22969:6;22925:71;:::i;:::-;22781:222;;;;:::o;23009:640::-;23204:4;23242:3;23231:9;23227:19;23219:27;;23256:71;23324:1;23313:9;23309:17;23300:6;23256:71;:::i;:::-;23337:72;23405:2;23394:9;23390:18;23381:6;23337:72;:::i;:::-;23419;23487:2;23476:9;23472:18;23463:6;23419:72;:::i;:::-;23538:9;23532:4;23528:20;23523:2;23512:9;23508:18;23501:48;23566:76;23637:4;23628:6;23566:76;:::i;:::-;23558:84;;23009:640;;;;;;;:::o;23655:210::-;23742:4;23780:2;23769:9;23765:18;23757:26;;23793:65;23855:1;23844:9;23840:17;23831:6;23793:65;:::i;:::-;23655:210;;;;:::o;23871:313::-;23984:4;24022:2;24011:9;24007:18;23999:26;;24071:9;24065:4;24061:20;24057:1;24046:9;24042:17;24035:47;24099:78;24172:4;24163:6;24099:78;:::i;:::-;24091:86;;23871:313;;;;:::o;24190:419::-;24356:4;24394:2;24383:9;24379:18;24371:26;;24443:9;24437:4;24433:20;24429:1;24418:9;24414:17;24407:47;24471:131;24597:4;24471:131;:::i;:::-;24463:139;;24190:419;;;:::o;24615:::-;24781:4;24819:2;24808:9;24804:18;24796:26;;24868:9;24862:4;24858:20;24854:1;24843:9;24839:17;24832:47;24896:131;25022:4;24896:131;:::i;:::-;24888:139;;24615:419;;;:::o;25040:::-;25206:4;25244:2;25233:9;25229:18;25221:26;;25293:9;25287:4;25283:20;25279:1;25268:9;25264:17;25257:47;25321:131;25447:4;25321:131;:::i;:::-;25313:139;;25040:419;;;:::o;25465:::-;25631:4;25669:2;25658:9;25654:18;25646:26;;25718:9;25712:4;25708:20;25704:1;25693:9;25689:17;25682:47;25746:131;25872:4;25746:131;:::i;:::-;25738:139;;25465:419;;;:::o;25890:::-;26056:4;26094:2;26083:9;26079:18;26071:26;;26143:9;26137:4;26133:20;26129:1;26118:9;26114:17;26107:47;26171:131;26297:4;26171:131;:::i;:::-;26163:139;;25890:419;;;:::o;26315:::-;26481:4;26519:2;26508:9;26504:18;26496:26;;26568:9;26562:4;26558:20;26554:1;26543:9;26539:17;26532:47;26596:131;26722:4;26596:131;:::i;:::-;26588:139;;26315:419;;;:::o;26740:::-;26906:4;26944:2;26933:9;26929:18;26921:26;;26993:9;26987:4;26983:20;26979:1;26968:9;26964:17;26957:47;27021:131;27147:4;27021:131;:::i;:::-;27013:139;;26740:419;;;:::o;27165:::-;27331:4;27369:2;27358:9;27354:18;27346:26;;27418:9;27412:4;27408:20;27404:1;27393:9;27389:17;27382:47;27446:131;27572:4;27446:131;:::i;:::-;27438:139;;27165:419;;;:::o;27590:::-;27756:4;27794:2;27783:9;27779:18;27771:26;;27843:9;27837:4;27833:20;27829:1;27818:9;27814:17;27807:47;27871:131;27997:4;27871:131;:::i;:::-;27863:139;;27590:419;;;:::o;28015:::-;28181:4;28219:2;28208:9;28204:18;28196:26;;28268:9;28262:4;28258:20;28254:1;28243:9;28239:17;28232:47;28296:131;28422:4;28296:131;:::i;:::-;28288:139;;28015:419;;;:::o;28440:::-;28606:4;28644:2;28633:9;28629:18;28621:26;;28693:9;28687:4;28683:20;28679:1;28668:9;28664:17;28657:47;28721:131;28847:4;28721:131;:::i;:::-;28713:139;;28440:419;;;:::o;28865:::-;29031:4;29069:2;29058:9;29054:18;29046:26;;29118:9;29112:4;29108:20;29104:1;29093:9;29089:17;29082:47;29146:131;29272:4;29146:131;:::i;:::-;29138:139;;28865:419;;;:::o;29290:::-;29456:4;29494:2;29483:9;29479:18;29471:26;;29543:9;29537:4;29533:20;29529:1;29518:9;29514:17;29507:47;29571:131;29697:4;29571:131;:::i;:::-;29563:139;;29290:419;;;:::o;29715:::-;29881:4;29919:2;29908:9;29904:18;29896:26;;29968:9;29962:4;29958:20;29954:1;29943:9;29939:17;29932:47;29996:131;30122:4;29996:131;:::i;:::-;29988:139;;29715:419;;;:::o;30140:::-;30306:4;30344:2;30333:9;30329:18;30321:26;;30393:9;30387:4;30383:20;30379:1;30368:9;30364:17;30357:47;30421:131;30547:4;30421:131;:::i;:::-;30413:139;;30140:419;;;:::o;30565:::-;30731:4;30769:2;30758:9;30754:18;30746:26;;30818:9;30812:4;30808:20;30804:1;30793:9;30789:17;30782:47;30846:131;30972:4;30846:131;:::i;:::-;30838:139;;30565:419;;;:::o;30990:::-;31156:4;31194:2;31183:9;31179:18;31171:26;;31243:9;31237:4;31233:20;31229:1;31218:9;31214:17;31207:47;31271:131;31397:4;31271:131;:::i;:::-;31263:139;;30990:419;;;:::o;31415:::-;31581:4;31619:2;31608:9;31604:18;31596:26;;31668:9;31662:4;31658:20;31654:1;31643:9;31639:17;31632:47;31696:131;31822:4;31696:131;:::i;:::-;31688:139;;31415:419;;;:::o;31840:::-;32006:4;32044:2;32033:9;32029:18;32021:26;;32093:9;32087:4;32083:20;32079:1;32068:9;32064:17;32057:47;32121:131;32247:4;32121:131;:::i;:::-;32113:139;;31840:419;;;:::o;32265:::-;32431:4;32469:2;32458:9;32454:18;32446:26;;32518:9;32512:4;32508:20;32504:1;32493:9;32489:17;32482:47;32546:131;32672:4;32546:131;:::i;:::-;32538:139;;32265:419;;;:::o;32690:::-;32856:4;32894:2;32883:9;32879:18;32871:26;;32943:9;32937:4;32933:20;32929:1;32918:9;32914:17;32907:47;32971:131;33097:4;32971:131;:::i;:::-;32963:139;;32690:419;;;:::o;33115:::-;33281:4;33319:2;33308:9;33304:18;33296:26;;33368:9;33362:4;33358:20;33354:1;33343:9;33339:17;33332:47;33396:131;33522:4;33396:131;:::i;:::-;33388:139;;33115:419;;;:::o;33540:::-;33706:4;33744:2;33733:9;33729:18;33721:26;;33793:9;33787:4;33783:20;33779:1;33768:9;33764:17;33757:47;33821:131;33947:4;33821:131;:::i;:::-;33813:139;;33540:419;;;:::o;33965:::-;34131:4;34169:2;34158:9;34154:18;34146:26;;34218:9;34212:4;34208:20;34204:1;34193:9;34189:17;34182:47;34246:131;34372:4;34246:131;:::i;:::-;34238:139;;33965:419;;;:::o;34390:::-;34556:4;34594:2;34583:9;34579:18;34571:26;;34643:9;34637:4;34633:20;34629:1;34618:9;34614:17;34607:47;34671:131;34797:4;34671:131;:::i;:::-;34663:139;;34390:419;;;:::o;34815:::-;34981:4;35019:2;35008:9;35004:18;34996:26;;35068:9;35062:4;35058:20;35054:1;35043:9;35039:17;35032:47;35096:131;35222:4;35096:131;:::i;:::-;35088:139;;34815:419;;;:::o;35240:::-;35406:4;35444:2;35433:9;35429:18;35421:26;;35493:9;35487:4;35483:20;35479:1;35468:9;35464:17;35457:47;35521:131;35647:4;35521:131;:::i;:::-;35513:139;;35240:419;;;:::o;35665:::-;35831:4;35869:2;35858:9;35854:18;35846:26;;35918:9;35912:4;35908:20;35904:1;35893:9;35889:17;35882:47;35946:131;36072:4;35946:131;:::i;:::-;35938:139;;35665:419;;;:::o;36090:::-;36256:4;36294:2;36283:9;36279:18;36271:26;;36343:9;36337:4;36333:20;36329:1;36318:9;36314:17;36307:47;36371:131;36497:4;36371:131;:::i;:::-;36363:139;;36090:419;;;:::o;36515:::-;36681:4;36719:2;36708:9;36704:18;36696:26;;36768:9;36762:4;36758:20;36754:1;36743:9;36739:17;36732:47;36796:131;36922:4;36796:131;:::i;:::-;36788:139;;36515:419;;;:::o;36940:::-;37106:4;37144:2;37133:9;37129:18;37121:26;;37193:9;37187:4;37183:20;37179:1;37168:9;37164:17;37157:47;37221:131;37347:4;37221:131;:::i;:::-;37213:139;;36940:419;;;:::o;37365:346::-;37520:4;37558:2;37547:9;37543:18;37535:26;;37571:133;37701:1;37690:9;37686:17;37677:6;37571:133;:::i;:::-;37365:346;;;;:::o;37717:222::-;37810:4;37848:2;37837:9;37833:18;37825:26;;37861:71;37929:1;37918:9;37914:17;37905:6;37861:71;:::i;:::-;37717:222;;;;:::o;37945:316::-;38058:4;38096:2;38085:9;38081:18;38073:26;;38109:69;38175:1;38164:9;38160:17;38151:6;38109:69;:::i;:::-;38188:66;38250:2;38239:9;38235:18;38226:6;38188:66;:::i;:::-;37945:316;;;;;:::o;38267:129::-;38301:6;38328:20;;:::i;:::-;38318:30;;38357:33;38385:4;38377:6;38357:33;:::i;:::-;38267:129;;;:::o;38402:75::-;38435:6;38468:2;38462:9;38452:19;;38402:75;:::o;38483:307::-;38544:4;38634:18;38626:6;38623:30;38620:56;;;38656:18;;:::i;:::-;38620:56;38694:29;38716:6;38694:29;:::i;:::-;38686:37;;38778:4;38772;38768:15;38760:23;;38483:307;;;:::o;38796:98::-;38847:6;38881:5;38875:12;38865:22;;38796:98;;;:::o;38900:99::-;38952:6;38986:5;38980:12;38970:22;;38900:99;;;:::o;39005:168::-;39088:11;39122:6;39117:3;39110:19;39162:4;39157:3;39153:14;39138:29;;39005:168;;;;:::o;39179:147::-;39280:11;39317:3;39302:18;;39179:147;;;;:::o;39332:169::-;39416:11;39450:6;39445:3;39438:19;39490:4;39485:3;39481:14;39466:29;;39332:169;;;;:::o;39507:148::-;39609:11;39646:3;39631:18;;39507:148;;;;:::o;39661:273::-;39701:3;39720:20;39738:1;39720:20;:::i;:::-;39715:25;;39754:20;39772:1;39754:20;:::i;:::-;39749:25;;39876:1;39840:34;39836:42;39833:1;39830:49;39827:75;;;39882:18;;:::i;:::-;39827:75;39926:1;39923;39919:9;39912:16;;39661:273;;;;:::o;39940:305::-;39980:3;39999:20;40017:1;39999:20;:::i;:::-;39994:25;;40033:20;40051:1;40033:20;:::i;:::-;40028:25;;40187:1;40119:66;40115:74;40112:1;40109:81;40106:107;;;40193:18;;:::i;:::-;40106:107;40237:1;40234;40230:9;40223:16;;39940:305;;;;:::o;40251:185::-;40291:1;40308:20;40326:1;40308:20;:::i;:::-;40303:25;;40342:20;40360:1;40342:20;:::i;:::-;40337:25;;40381:1;40371:35;;40386:18;;:::i;:::-;40371:35;40428:1;40425;40421:9;40416:14;;40251:185;;;;:::o;40442:348::-;40482:7;40505:20;40523:1;40505:20;:::i;:::-;40500:25;;40539:20;40557:1;40539:20;:::i;:::-;40534:25;;40727:1;40659:66;40655:74;40652:1;40649:81;40644:1;40637:9;40630:17;40626:105;40623:131;;;40734:18;;:::i;:::-;40623:131;40782:1;40779;40775:9;40764:20;;40442:348;;;;:::o;40796:191::-;40836:4;40856:20;40874:1;40856:20;:::i;:::-;40851:25;;40890:20;40908:1;40890:20;:::i;:::-;40885:25;;40929:1;40926;40923:8;40920:34;;;40934:18;;:::i;:::-;40920:34;40979:1;40976;40972:9;40964:17;;40796:191;;;;:::o;40993:::-;41033:4;41053:20;41071:1;41053:20;:::i;:::-;41048:25;;41087:20;41105:1;41087:20;:::i;:::-;41082:25;;41126:1;41123;41120:8;41117:34;;;41131:18;;:::i;:::-;41117:34;41176:1;41173;41169:9;41161:17;;40993:191;;;;:::o;41190:96::-;41227:7;41256:24;41274:5;41256:24;:::i;:::-;41245:35;;41190:96;;;:::o;41292:90::-;41326:7;41369:5;41362:13;41355:21;41344:32;;41292:90;;;:::o;41388:149::-;41424:7;41464:66;41457:5;41453:78;41442:89;;41388:149;;;:::o;41543:118::-;41580:7;41620:34;41613:5;41609:46;41598:57;;41543:118;;;:::o;41667:126::-;41704:7;41744:42;41737:5;41733:54;41722:65;;41667:126;;;:::o;41799:77::-;41836:7;41865:5;41854:16;;41799:77;;;:::o;41882:101::-;41918:7;41958:18;41951:5;41947:30;41936:41;;41882:101;;;:::o;41989:154::-;42073:6;42068:3;42063;42050:30;42135:1;42126:6;42121:3;42117:16;42110:27;41989:154;;;:::o;42149:307::-;42217:1;42227:113;42241:6;42238:1;42235:13;42227:113;;;42326:1;42321:3;42317:11;42311:18;42307:1;42302:3;42298:11;42291:39;42263:2;42260:1;42256:10;42251:15;;42227:113;;;42358:6;42355:1;42352:13;42349:101;;;42438:1;42429:6;42424:3;42420:16;42413:27;42349:101;42198:258;42149:307;;;:::o;42462:171::-;42501:3;42524:24;42542:5;42524:24;:::i;:::-;42515:33;;42570:4;42563:5;42560:15;42557:41;;;42578:18;;:::i;:::-;42557:41;42625:1;42618:5;42614:13;42607:20;;42462:171;;;:::o;42639:320::-;42683:6;42720:1;42714:4;42710:12;42700:22;;42767:1;42761:4;42757:12;42788:18;42778:81;;42844:4;42836:6;42832:17;42822:27;;42778:81;42906:2;42898:6;42895:14;42875:18;42872:38;42869:84;;;42925:18;;:::i;:::-;42869:84;42690:269;42639:320;;;:::o;42965:281::-;43048:27;43070:4;43048:27;:::i;:::-;43040:6;43036:40;43178:6;43166:10;43163:22;43142:18;43130:10;43127:34;43124:62;43121:88;;;43189:18;;:::i;:::-;43121:88;43229:10;43225:2;43218:22;43008:238;42965:281;;:::o;43252:233::-;43291:3;43314:24;43332:5;43314:24;:::i;:::-;43305:33;;43360:66;43353:5;43350:77;43347:103;;;43430:18;;:::i;:::-;43347:103;43477:1;43470:5;43466:13;43459:20;;43252:233;;;:::o;43491:176::-;43523:1;43540:20;43558:1;43540:20;:::i;:::-;43535:25;;43574:20;43592:1;43574:20;:::i;:::-;43569:25;;43613:1;43603:35;;43618:18;;:::i;:::-;43603:35;43659:1;43656;43652:9;43647:14;;43491:176;;;;:::o;43673:180::-;43721:77;43718:1;43711:88;43818:4;43815:1;43808:15;43842:4;43839:1;43832:15;43859:180;43907:77;43904:1;43897:88;44004:4;44001:1;43994:15;44028:4;44025:1;44018:15;44045:180;44093:77;44090:1;44083:88;44190:4;44187:1;44180:15;44214:4;44211:1;44204:15;44231:180;44279:77;44276:1;44269:88;44376:4;44373:1;44366:15;44400:4;44397:1;44390:15;44417:180;44465:77;44462:1;44455:88;44562:4;44559:1;44552:15;44586:4;44583:1;44576:15;44603:117;44712:1;44709;44702:12;44726:117;44835:1;44832;44825:12;44849:117;44958:1;44955;44948:12;44972:117;45081:1;45078;45071:12;45095:117;45204:1;45201;45194:12;45218:117;45327:1;45324;45317:12;45341:102;45382:6;45433:2;45429:7;45424:2;45417:5;45413:14;45409:28;45399:38;;45341:102;;;:::o;45449:221::-;45589:34;45585:1;45577:6;45573:14;45566:58;45658:4;45653:2;45645:6;45641:15;45634:29;45449:221;:::o;45676:225::-;45816:34;45812:1;45804:6;45800:14;45793:58;45885:8;45880:2;45872:6;45868:15;45861:33;45676:225;:::o;45907:229::-;46047:34;46043:1;46035:6;46031:14;46024:58;46116:12;46111:2;46103:6;46099:15;46092:37;45907:229;:::o;46142:231::-;46282:34;46278:1;46270:6;46266:14;46259:58;46351:14;46346:2;46338:6;46334:15;46327:39;46142:231;:::o;46379:222::-;46519:34;46515:1;46507:6;46503:14;46496:58;46588:5;46583:2;46575:6;46571:15;46564:30;46379:222;:::o;46607:224::-;46747:34;46743:1;46735:6;46731:14;46724:58;46816:7;46811:2;46803:6;46799:15;46792:32;46607:224;:::o;46837:236::-;46977:34;46973:1;46965:6;46961:14;46954:58;47046:19;47041:2;47033:6;47029:15;47022:44;46837:236;:::o;47079:180::-;47219:32;47215:1;47207:6;47203:14;47196:56;47079:180;:::o;47265:244::-;47405:34;47401:1;47393:6;47389:14;47382:58;47474:27;47469:2;47461:6;47457:15;47450:52;47265:244;:::o;47515:174::-;47655:26;47651:1;47643:6;47639:14;47632:50;47515:174;:::o;47695:230::-;47835:34;47831:1;47823:6;47819:14;47812:58;47904:13;47899:2;47891:6;47887:15;47880:38;47695:230;:::o;47931:168::-;48071:20;48067:1;48059:6;48055:14;48048:44;47931:168;:::o;48105:225::-;48245:34;48241:1;48233:6;48229:14;48222:58;48314:8;48309:2;48301:6;48297:15;48290:33;48105:225;:::o;48336:182::-;48476:34;48472:1;48464:6;48460:14;48453:58;48336:182;:::o;48524:234::-;48664:34;48660:1;48652:6;48648:14;48641:58;48733:17;48728:2;48720:6;48716:15;48709:42;48524:234;:::o;48764:176::-;48904:28;48900:1;48892:6;48888:14;48881:52;48764:176;:::o;48946:237::-;49086:34;49082:1;49074:6;49070:14;49063:58;49155:20;49150:2;49142:6;49138:15;49131:45;48946:237;:::o;49189:179::-;49329:31;49325:1;49317:6;49313:14;49306:55;49189:179;:::o;49374:221::-;49514:34;49510:1;49502:6;49498:14;49491:58;49583:4;49578:2;49570:6;49566:15;49559:29;49374:221;:::o;49601:114::-;;:::o;49721:166::-;49861:18;49857:1;49849:6;49845:14;49838:42;49721:166;:::o;49893:238::-;50033:34;50029:1;50021:6;50017:14;50010:58;50102:21;50097:2;50089:6;50085:15;50078:46;49893:238;:::o;50137:172::-;50277:24;50273:1;50265:6;50261:14;50254:48;50137:172;:::o;50315:179::-;50455:31;50451:1;50443:6;50439:14;50432:55;50315:179;:::o;50500:220::-;50640:34;50636:1;50628:6;50624:14;50617:58;50709:3;50704:2;50696:6;50692:15;50685:28;50500:220;:::o;50726:172::-;50866:24;50862:1;50854:6;50850:14;50843:48;50726:172;:::o;50904:233::-;51044:34;51040:1;51032:6;51028:14;51021:58;51113:16;51108:2;51100:6;51096:15;51089:41;50904:233;:::o;51143:225::-;51283:34;51279:1;51271:6;51267:14;51260:58;51352:8;51347:2;51339:6;51335:15;51328:33;51143:225;:::o;51374:181::-;51514:33;51510:1;51502:6;51498:14;51491:57;51374:181;:::o;51561:234::-;51701:34;51697:1;51689:6;51685:14;51678:58;51770:17;51765:2;51757:6;51753:15;51746:42;51561:234;:::o;51801:232::-;51941:34;51937:1;51929:6;51925:14;51918:58;52010:15;52005:2;51997:6;51993:15;51986:40;51801:232;:::o;52039:221::-;52179:34;52175:1;52167:6;52163:14;52156:58;52248:4;52243:2;52235:6;52231:15;52224:29;52039:221;:::o;52266:122::-;52339:24;52357:5;52339:24;:::i;:::-;52332:5;52329:35;52319:63;;52378:1;52375;52368:12;52319:63;52266:122;:::o;52394:116::-;52464:21;52479:5;52464:21;:::i;:::-;52457:5;52454:32;52444:60;;52500:1;52497;52490:12;52444:60;52394:116;:::o;52516:120::-;52588:23;52605:5;52588:23;:::i;:::-;52581:5;52578:34;52568:62;;52626:1;52623;52616:12;52568:62;52516:120;:::o;52642:122::-;52715:24;52733:5;52715:24;:::i;:::-;52708:5;52705:35;52695:63;;52754:1;52751;52744:12;52695:63;52642:122;:::o;52770:120::-;52842:23;52859:5;52842:23;:::i;:::-;52835:5;52832:34;52822:62;;52880:1;52877;52870:12;52822:62;52770:120;:::o

Swarm Source

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