ETH Price: $3,274.63 (+0.72%)
Gas: 1 Gwei

Token

CoolFrens (CoolFrens)
 

Overview

Max Total Supply

266 CoolFrens

Holders

127

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CoolFrens
0xB0F1ea53b5a501CF882b26Ce709908A89907a7F0
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:
CoolFrens

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

// 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 collectionSize;
  uint256 internal 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 maxBatchSize Functionality..
   */
  function changeMaxBatchSize(uint256 newBatch) public{
    maxBatchSize = newBatch;
  }

  function changeCollectionSize(uint256 newCollectionSize) public{
    collectionSize = newCollectionSize;
  }

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

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

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - 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/CoolFrens.sol



pragma solidity ^0.8.0;





contract CoolFrens is Ownable, ERC721A, ReentrancyGuard {

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForAuctionAndDev_,
    uint256 amountForDevs_
  ) ERC721A("CoolFrens", "CoolFrens", maxBatchSize_, collectionSize_) {
    require(amountForAuctionAndDev_ <= collectionSize_, "larger collection size needed" );
  }
    
    uint256 public pricePerWL = 0.04 ether;
    uint256 public pricePerPublic = 0.06 ether;
    bool public presaleLive = true;
    bool public publicLive = false;
    address private ownerAddy = 0x74701CA166857B83bB2F5Eb9420aF938E39088E8;
    mapping(address => uint256) public WLminted;

    /* 
    * @dev Requires msg.sender to have valid access message.
    * @param _v ECDSA signature parameter v.
    * @param _r ECDSA signature parameters r.
    * @param _s ECDSA signature parameters s.
    */

    modifier noInvalidAccess(uint8 _v, bytes32 _r, bytes32 _s) {
        require(!isInvalidAccessMessage(_v,_r,_s) );
        _;
    }
 
    /* 
    * @dev Verifies if message was signed by owner to give access to _add for this contract.
    *      Assumes Geth signature prefix.
    * @param _add Address of agent with access
    * @param _v ECDSA signature parameter v.
    * @param _r ECDSA signature parameters r.
    * @param _s ECDSA signature parameters s.
    * @return Validity of access message for a given address.
    */
    function isInvalidAccessMessage(
        uint8 _v, 
        bytes32 _r, 
        bytes32 _s) 
        view public returns (bool)
    {
        bytes32 hash = keccak256(abi.encodePacked(this));
        address signAddress = ecrecover(
            keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)),
            _v,
            _r,
            _s
        );
        if (ownerAddy == signAddress){
          return true;
        }
        else{
          return false;
        }
    }

  function setPreSale(bool status) public onlyOwner{
    presaleLive = status;
  }  
  
  function setPublicSalePrice(bool status) public onlyOwner{
    publicLive = status;
  }

  function setPreSale(uint256 price) public onlyOwner{
    pricePerWL = price;
  }  
  
  function setPublicSalePrice(uint256 price) public onlyOwner{
    pricePerPublic = price;
  }


  /* 
    * @dev Public Sale Mint
    * @param quantity Number of NFT's to be minted at 0.06 with a max of 10 per transaction. This is a gas efficient function.
    */
  function mint(uint256 quantity) external payable {
    require(quantity <= 10, "Cant mint more than 10");
    require(totalSupply() + quantity <= 3183, "Sold out");
    require(msg.value >= pricePerPublic * quantity, "Not enough Eth");
    require(publicLive, "sale not live");
    _safeMint(msg.sender, quantity);
  }

  function mintMarketing(address to, uint256 quantity) external payable onlyOwner {
    require(quantity <= 10, "Cant mint more than 10");
    require(totalSupply() + quantity <= 3333, "Sold out");
    require(publicLive, "sale not live");
    _safeMint(to, quantity);
  }

 /* 
    * @dev Verifies if message was signed by owner to give access to this contract.
    *      Assumes Geth signature prefix.
    * @param quantity Number of NFT's to be minted at 0.04 with a max of 3. This is a gas efficient function.
    * @param _v ECDSA signature parameter v.
    * @param _r ECDSA signature parameters r.
    * @param _s ECDSA signature parameters s.
    */
  function mintWL(uint256 quantity, uint8 _v, bytes32 _r, bytes32 _s) external payable noInvalidAccess(_v, _r, _s){
    require(quantity <= 3, "Cant mint more than 3");
    require(totalSupply() + quantity <= 3183, "Sold out");
    require(msg.value >= pricePerWL * quantity, "Not enough Eth");
    require(presaleLive, "sale not live");
    require(WLminted[msg.sender] + quantity <= 3, "Cant mint more than 3");
    WLminted[msg.sender] += quantity;
    _safeMint(msg.sender, quantity);
  }

  // // 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":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForAuctionAndDev_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WLminted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCollectionSize","type":"uint256"}],"name":"changeCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBatch","type":"uint256"}],"name":"changeMaxBatchSize","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isInvalidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintMarketing","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicSalePrice","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"}]

608060405260006001556000600a55668e1bc9bf040000600c5566d529ae9e860000600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055507374701ca166857b83bb2f5eb9420af938e39088e8600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000bc57600080fd5b5060405162005ce738038062005ce78339818101604052810190620000e291906200042b565b6040518060400160405280600981526020017f436f6f6c4672656e7300000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f436f6f6c4672656e730000000000000000000000000000000000000000000000815250858562000170620001646200029860201b60201c565b620002a060201b60201c565b60008111620001b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001ad9062000556565b60405180910390fd5b60008211620001fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001f39062000512565b60405180910390fd5b83600490805190602001906200021492919062000364565b5082600590805190602001906200022d92919062000364565b508160038190555080600281905550505050506001600b81905550828211156200028e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002859062000534565b60405180910390fd5b50505050620006de565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003729062000593565b90600052602060002090601f016020900481019282620003965760008555620003e2565b82601f10620003b157805160ff1916838001178555620003e2565b82800160010185558215620003e2579182015b82811115620003e1578251825591602001919060010190620003c4565b5b509050620003f19190620003f5565b5090565b5b8082111562000410576000816000905550600101620003f6565b5090565b6000815190506200042581620006c4565b92915050565b60008060008060808587031215620004485762000447620005f8565b5b6000620004588782880162000414565b94505060206200046b8782880162000414565b93505060406200047e8782880162000414565b9250506060620004918782880162000414565b91505092959194509250565b6000620004ac60278362000578565b9150620004b982620005fd565b604082019050919050565b6000620004d3601d8362000578565b9150620004e0826200064c565b602082019050919050565b6000620004fa602e8362000578565b9150620005078262000675565b604082019050919050565b600060208201905081810360008301526200052d816200049d565b9050919050565b600060208201905081810360008301526200054f81620004c4565b9050919050565b600060208201905081810360008301526200057181620004eb565b9050919050565b600082825260208201905092915050565b6000819050919050565b60006002820490506001821680620005ac57607f821691505b60208210811415620005c357620005c2620005c9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000600082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b620006cf8162000589565b8114620006db57600080fd5b50565b6155f980620006ee6000396000f3fe60806040526004361061023b5760003560e01c8063763f40111161012e578063a22cb465116100ab578063c9cafefc1161006f578063c9cafefc14610875578063d7224ba014610891578063dc33e681146108bc578063e985e9c5146108f9578063f2fde38b146109365761023b565b8063a22cb465146107a4578063ac446002146107cd578063b7f751d8146107e4578063b88d4fde1461080f578063c87b56dd146108385761023b565b806390d89a66116100f257806390d89a66146106ba5780639231ab2a146106f757806395d89b41146107345780639801b11c1461075f578063a0712d68146107885761023b565b8063763f4011146105f4578063791a25191461061057806383a9e049146106395780638736482d146106645780638da5cb5b1461068f5761023b565b806323b872dd116101bc57806355f804b31161018057806355f804b3146105115780636352211e1461053a5780636ebfd34d1461057757806370a08231146105a0578063715018a6146105dd5761023b565b806323b872dd1461041c5780632d20fb60146104455780632f745c591461046e57806342842e0e146104ab5780634f6ccce7146104d45761023b565b80630b12b9c0116102035780630b12b9c0146103395780630d95ccc914610376578063117670be1461039f57806318160ddd146103c857806318441c76146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a857806308cae89e146102e5578063095ea7b314610310575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613afb565b61095f565b6040516102749190614333565b60405180910390f35b34801561028957600080fd5b50610292610aa9565b60405161029f9190614393565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613ba2565b610b3b565b6040516102dc91906142cc565b60405180910390f35b3480156102f157600080fd5b506102fa610bc0565b6040516103079190614790565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613a8e565b610bc6565b005b34801561034557600080fd5b50610360600480360381019061035b919061390b565b610cdf565b60405161036d9190614790565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190613ace565b610cf7565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190613ace565b610d90565b005b3480156103d457600080fd5b506103dd610e29565b6040516103ea9190614790565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190613ba2565b610e33565b005b34801561042857600080fd5b50610443600480360381019061043e9190613978565b610eb9565b005b34801561045157600080fd5b5061046c60048036038101906104679190613ba2565b610ec9565b005b34801561047a57600080fd5b5061049560048036038101906104909190613a8e565b610fa7565b6040516104a29190614790565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190613978565b6111a5565b005b3480156104e057600080fd5b506104fb60048036038101906104f69190613ba2565b6111c5565b6040516105089190614790565b60405180910390f35b34801561051d57600080fd5b5061053860048036038101906105339190613b55565b611218565b005b34801561054657600080fd5b50610561600480360381019061055c9190613ba2565b6112aa565b60405161056e91906142cc565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190613ba2565b6112c0565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061390b565b6112ca565b6040516105d49190614790565b60405180910390f35b3480156105e957600080fd5b506105f26113b3565b005b61060e60048036038101906106099190613a8e565b61143b565b005b34801561061c57600080fd5b5061063760048036038101906106329190613ba2565b6115af565b005b34801561064557600080fd5b5061064e611635565b60405161065b9190614333565b60405180910390f35b34801561067057600080fd5b50610679611648565b6040516106869190614790565b60405180910390f35b34801561069b57600080fd5b506106a461164e565b6040516106b191906142cc565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190613c36565b611677565b6040516106ee9190614333565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613ba2565b61178b565b60405161072b9190614775565b60405180910390f35b34801561074057600080fd5b506107496117a3565b6040516107569190614393565b60405180910390f35b34801561076b57600080fd5b5061078660048036038101906107819190613ba2565b611835565b005b6107a2600480360381019061079d9190613ba2565b61183f565b005b3480156107b057600080fd5b506107cb60048036038101906107c69190613a4e565b611986565b005b3480156107d957600080fd5b506107e2611b07565b005b3480156107f057600080fd5b506107f9611c88565b6040516108069190614333565b60405180910390f35b34801561081b57600080fd5b50610836600480360381019061083191906139cb565b611c9b565b005b34801561084457600080fd5b5061085f600480360381019061085a9190613ba2565b611cf7565b60405161086c9190614393565b60405180910390f35b61088f600480360381019061088a9190613bcf565b611d9e565b005b34801561089d57600080fd5b506108a6611fe7565b6040516108b39190614790565b60405180910390f35b3480156108c857600080fd5b506108e360048036038101906108de919061390b565b611fed565b6040516108f09190614790565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b9190613938565b611fff565b60405161092d9190614333565b60405180910390f35b34801561094257600080fd5b5061095d6004803603810190610958919061390b565b612093565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa25750610aa18261218b565b5b9050919050565b606060048054610ab890614b3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae490614b3b565b8015610b315780601f10610b0657610100808354040283529160200191610b31565b820191906000526020600020905b815481529060010190602001808311610b1457829003601f168201915b5050505050905090565b6000610b46826121f5565b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90614735565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c5481565b6000610bd1826112aa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c39906145d5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c61612203565b73ffffffffffffffffffffffffffffffffffffffff161480610c905750610c8f81610c8a612203565b611fff565b5b610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc6906144b5565b60405180910390fd5b610cda83838361220b565b505050565b600f6020528060005260406000206000915090505481565b610cff612203565b73ffffffffffffffffffffffffffffffffffffffff16610d1d61164e565b73ffffffffffffffffffffffffffffffffffffffff1614610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90614535565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b610d98612203565b73ffffffffffffffffffffffffffffffffffffffff16610db661164e565b73ffffffffffffffffffffffffffffffffffffffff1614610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390614535565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600154905090565b610e3b612203565b73ffffffffffffffffffffffffffffffffffffffff16610e5961164e565b73ffffffffffffffffffffffffffffffffffffffff1614610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690614535565b60405180910390fd5b80600c8190555050565b610ec48383836122bd565b505050565b610ed1612203565b73ffffffffffffffffffffffffffffffffffffffff16610eef61164e565b73ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90614535565b60405180910390fd5b6002600b541415610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f82906146f5565b60405180910390fd5b6002600b81905550610f9c81612876565b6001600b8190555050565b6000610fb2836112ca565b8210610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea906143b5565b60405180910390fd5b6000610ffd610e29565b905060008060005b83811015611163576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110f757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561114f578684141561114057819550505050505061119f565b838061114b90614b9e565b9450505b50808061115b90614b9e565b915050611005565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611196906146b5565b60405180910390fd5b92915050565b6111c083838360405180602001604052806000815250611c9b565b505050565b60006111cf610e29565b8210611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790614455565b60405180910390fd5b819050919050565b611220612203565b73ffffffffffffffffffffffffffffffffffffffff1661123e61164e565b73ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90614535565b60405180910390fd5b8181601091906112a59291906136d5565b505050565b60006112b582612ac8565b600001519050919050565b8060038190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611332906144f5565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113bb612203565b73ffffffffffffffffffffffffffffffffffffffff166113d961164e565b73ffffffffffffffffffffffffffffffffffffffff161461142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690614535565b60405180910390fd5b6114396000612c8f565b565b611443612203565b73ffffffffffffffffffffffffffffffffffffffff1661146161164e565b73ffffffffffffffffffffffffffffffffffffffff16146114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90614535565b60405180910390fd5b600a8111156114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290614415565b60405180910390fd5b610d0581611507610e29565b6115119190614895565b1115611552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154990614615565b60405180910390fd5b600e60019054906101000a900460ff166115a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611598906145b5565b60405180910390fd5b6115ab8282612d53565b5050565b6115b7612203565b73ffffffffffffffffffffffffffffffffffffffff166115d561164e565b73ffffffffffffffffffffffffffffffffffffffff161461162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290614535565b60405180910390fd5b80600d8190555050565b600e60009054906101000a900460ff1681565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000803060405160200161168b9190614252565b60405160208183030381529060405280519060200120905060006001826040516020016116b89190614291565b60405160208183030381529060405280519060200120878787604051600081526020016040526040516116ee949392919061434e565b6020604051602081039080840390855afa158015611710573d6000803e3d6000fd5b5050506020604051035190508073ffffffffffffffffffffffffffffffffffffffff16600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561177d57600192505050611784565b6000925050505b9392505050565b61179361375b565b61179c82612ac8565b9050919050565b6060600580546117b290614b3b565b80601f01602080910402602001604051908101604052809291908181526020018280546117de90614b3b565b801561182b5780601f106118005761010080835404028352916020019161182b565b820191906000526020600020905b81548152906001019060200180831161180e57829003601f168201915b5050505050905090565b8060028190555050565b600a811115611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a90614415565b60405180910390fd5b610c6f8161188f610e29565b6118999190614895565b11156118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190614615565b60405180910390fd5b80600d546118e8919061491c565b34101561192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190614695565b60405180910390fd5b600e60019054906101000a900460ff16611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906145b5565b60405180910390fd5b6119833382612d53565b50565b61198e612203565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f390614575565b60405180910390fd5b8060096000611a09612203565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ab6612203565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611afb9190614333565b60405180910390a35050565b611b0f612203565b73ffffffffffffffffffffffffffffffffffffffff16611b2d61164e565b73ffffffffffffffffffffffffffffffffffffffff1614611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a90614535565b60405180910390fd5b6002600b541415611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc0906146f5565b60405180910390fd5b6002600b8190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611bf7906142b7565b60006040518083038185875af1925050503d8060008114611c34576040519150601f19603f3d011682016040523d82523d6000602084013e611c39565b606091505b5050905080611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c74906145f5565b60405180910390fd5b506001600b81905550565b600e60019054906101000a900460ff1681565b611ca68484846122bd565b611cb284848484612d71565b611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce890614635565b60405180910390fd5b50505050565b6060611d02826121f5565b611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890614555565b60405180910390fd5b6000611d4b612f08565b90506000815111611d6b5760405180602001604052806000815250611d96565b80611d7584612f9a565b604051602001611d8692919061426d565b6040516020818303038152906040525b915050919050565b828282611dac838383611677565b15611db657600080fd5b6003871115611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df1906143d5565b60405180910390fd5b610c6f87611e06610e29565b611e109190614895565b1115611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4890614615565b60405180910390fd5b86600c54611e5f919061491c565b341015611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890614695565b60405180910390fd5b600e60009054906101000a900460ff16611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee7906145b5565b60405180910390fd5b600387600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d9190614895565b1115611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f75906143d5565b60405180910390fd5b86600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fcd9190614895565b92505081905550611fde3388612d53565b50505050505050565b600a5481565b6000611ff8826130fb565b9050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61209b612203565b73ffffffffffffffffffffffffffffffffffffffff166120b961164e565b73ffffffffffffffffffffffffffffffffffffffff161461210f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210690614535565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612176906143f5565b60405180910390fd5b61218881612c8f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122c882612ac8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122ef612203565b73ffffffffffffffffffffffffffffffffffffffff16148061234b5750612314612203565b73ffffffffffffffffffffffffffffffffffffffff1661233384610b3b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061236757506123668260000151612361612203565b611fff565b5b9050806123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a090614595565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461241b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241290614515565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561248b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248290614475565b60405180910390fd5b61249885858560016131e4565b6124a8600084846000015161220b565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125169190614976565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125ba919061484f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846126c09190614895565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561280657612736816121f5565b15612805576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461286e86868660016131ea565b505050505050565b6000600a549050600082116128c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b7906144d5565b60405180910390fd5b6000600183836128d09190614895565b6128da91906149aa565b905060016002546128eb91906149aa565b81111561290457600160025461290191906149aa565b90505b61290d816121f5565b61294c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612943906146d5565b60405180910390fd5b60008290505b818111612aaf57600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a9c5760006129cf82612ac8565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612aa790614b9e565b915050612952565b50600181612abd9190614895565b600a81905550505050565b612ad061375b565b612ad9826121f5565b612b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0f90614435565b60405180910390fd5b60006003548310612b4057600160035484612b3391906149aa565b612b3d9190614895565b90505b60008390505b818110612c4e576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c3a57809350505050612c8a565b508080612c4690614b11565b915050612b46565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8190614715565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d6d8282604051806020016040528060008152506131f0565b5050565b6000612d928473ffffffffffffffffffffffffffffffffffffffff166136b2565b15612efb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dbb612203565b8786866040518563ffffffff1660e01b8152600401612ddd94939291906142e7565b602060405180830381600087803b158015612df757600080fd5b505af1925050508015612e2857506040513d601f19601f82011682018060405250810190612e259190613b28565b60015b612eab573d8060008114612e58576040519150601f19603f3d011682016040523d82523d6000602084013e612e5d565b606091505b50600081511415612ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9a90614635565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f00565b600190505b949350505050565b606060108054612f1790614b3b565b80601f0160208091040260200160405190810160405280929190818152602001828054612f4390614b3b565b8015612f905780601f10612f6557610100808354040283529160200191612f90565b820191906000526020600020905b815481529060010190602001808311612f7357829003601f168201915b5050505050905090565b60606000821415612fe2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130f6565b600082905060005b60008214613014578080612ffd90614b9e565b915050600a8261300d91906148eb565b9150612fea565b60008167ffffffffffffffff8111156130305761302f614d02565b5b6040519080825280601f01601f1916602001820160405280156130625781602001600182028036833780820191505090505b5090505b600085146130ef5760018261307b91906149aa565b9150600a8561308a9190614c15565b60306130969190614895565b60f81b8183815181106130ac576130ab614cd3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130e891906148eb565b9450613066565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561316c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316390614495565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325e90614675565b60405180910390fd5b613270816121f5565b156132b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a790614655565b60405180910390fd5b6003548311156132f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ec90614755565b60405180910390fd5b61330260008583866131e4565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516133ff919061484f565b6fffffffffffffffffffffffffffffffff168152602001858360200151613426919061484f565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561369557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136356000888488612d71565b613674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366b90614635565b60405180910390fd5b818061367f90614b9e565b925050808061368d90614b9e565b9150506135c4565b50806001819055506136aa60008785886131ea565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546136e190614b3b565b90600052602060002090601f016020900481019282613703576000855561374a565b82601f1061371c57803560ff191683800117855561374a565b8280016001018555821561374a579182015b8281111561374957823582559160200191906001019061372e565b5b5090506137579190613795565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156137ae576000816000905550600101613796565b5090565b60006137c56137c0846147d0565b6147ab565b9050828152602081018484840111156137e1576137e0614d40565b5b6137ec848285614acf565b509392505050565b60008135905061380381615539565b92915050565b60008135905061381881615550565b92915050565b60008135905061382d81615567565b92915050565b6000813590506138428161557e565b92915050565b6000815190506138578161557e565b92915050565b600082601f83011261387257613871614d36565b5b81356138828482602086016137b2565b91505092915050565b60008083601f8401126138a1576138a0614d36565b5b8235905067ffffffffffffffff8111156138be576138bd614d31565b5b6020830191508360018202830111156138da576138d9614d3b565b5b9250929050565b6000813590506138f081615595565b92915050565b600081359050613905816155ac565b92915050565b60006020828403121561392157613920614d4a565b5b600061392f848285016137f4565b91505092915050565b6000806040838503121561394f5761394e614d4a565b5b600061395d858286016137f4565b925050602061396e858286016137f4565b9150509250929050565b60008060006060848603121561399157613990614d4a565b5b600061399f868287016137f4565b93505060206139b0868287016137f4565b92505060406139c1868287016138e1565b9150509250925092565b600080600080608085870312156139e5576139e4614d4a565b5b60006139f3878288016137f4565b9450506020613a04878288016137f4565b9350506040613a15878288016138e1565b925050606085013567ffffffffffffffff811115613a3657613a35614d45565b5b613a428782880161385d565b91505092959194509250565b60008060408385031215613a6557613a64614d4a565b5b6000613a73858286016137f4565b9250506020613a8485828601613809565b9150509250929050565b60008060408385031215613aa557613aa4614d4a565b5b6000613ab3858286016137f4565b9250506020613ac4858286016138e1565b9150509250929050565b600060208284031215613ae457613ae3614d4a565b5b6000613af284828501613809565b91505092915050565b600060208284031215613b1157613b10614d4a565b5b6000613b1f84828501613833565b91505092915050565b600060208284031215613b3e57613b3d614d4a565b5b6000613b4c84828501613848565b91505092915050565b60008060208385031215613b6c57613b6b614d4a565b5b600083013567ffffffffffffffff811115613b8a57613b89614d45565b5b613b968582860161388b565b92509250509250929050565b600060208284031215613bb857613bb7614d4a565b5b6000613bc6848285016138e1565b91505092915050565b60008060008060808587031215613be957613be8614d4a565b5b6000613bf7878288016138e1565b9450506020613c08878288016138f6565b9350506040613c198782880161381e565b9250506060613c2a8782880161381e565b91505092959194509250565b600080600060608486031215613c4f57613c4e614d4a565b5b6000613c5d868287016138f6565b9350506020613c6e8682870161381e565b9250506040613c7f8682870161381e565b9150509250925092565b613c92816149de565b82525050565b613ca1816149de565b82525050565b613cb0816149f0565b82525050565b613cbf816149fc565b82525050565b613cd6613cd1826149fc565b614bf9565b82525050565b6000613ce782614801565b613cf18185614817565b9350613d01818560208601614ade565b613d0a81614d4f565b840191505092915050565b613d26613d2182614a99565b614be7565b82525050565b6000613d378261480c565b613d418185614833565b9350613d51818560208601614ade565b613d5a81614d4f565b840191505092915050565b6000613d708261480c565b613d7a8185614844565b9350613d8a818560208601614ade565b80840191505092915050565b6000613da3602283614833565b9150613dae82614d6d565b604082019050919050565b6000613dc6601c83614844565b9150613dd182614dbc565b601c82019050919050565b6000613de9601583614833565b9150613df482614de5565b602082019050919050565b6000613e0c602683614833565b9150613e1782614e0e565b604082019050919050565b6000613e2f601683614833565b9150613e3a82614e5d565b602082019050919050565b6000613e52602a83614833565b9150613e5d82614e86565b604082019050919050565b6000613e75602383614833565b9150613e8082614ed5565b604082019050919050565b6000613e98602583614833565b9150613ea382614f24565b604082019050919050565b6000613ebb603183614833565b9150613ec682614f73565b604082019050919050565b6000613ede603983614833565b9150613ee982614fc2565b604082019050919050565b6000613f01601883614833565b9150613f0c82615011565b602082019050919050565b6000613f24602b83614833565b9150613f2f8261503a565b604082019050919050565b6000613f47602683614833565b9150613f5282615089565b604082019050919050565b6000613f6a602083614833565b9150613f75826150d8565b602082019050919050565b6000613f8d602f83614833565b9150613f9882615101565b604082019050919050565b6000613fb0601a83614833565b9150613fbb82615150565b602082019050919050565b6000613fd3603283614833565b9150613fde82615179565b604082019050919050565b6000613ff6600d83614833565b9150614001826151c8565b602082019050919050565b6000614019602283614833565b9150614024826151f1565b604082019050919050565b600061403c600083614828565b915061404782615240565b600082019050919050565b600061405f601083614833565b915061406a82615243565b602082019050919050565b6000614082600883614833565b915061408d8261526c565b602082019050919050565b60006140a5603383614833565b91506140b082615295565b604082019050919050565b60006140c8601d83614833565b91506140d3826152e4565b602082019050919050565b60006140eb602183614833565b91506140f68261530d565b604082019050919050565b600061410e600e83614833565b91506141198261535c565b602082019050919050565b6000614131602e83614833565b915061413c82615385565b604082019050919050565b6000614154602683614833565b915061415f826153d4565b604082019050919050565b6000614177601f83614833565b915061418282615423565b602082019050919050565b600061419a602f83614833565b91506141a58261544c565b604082019050919050565b60006141bd602d83614833565b91506141c88261549b565b604082019050919050565b60006141e0602283614833565b91506141eb826154ea565b604082019050919050565b60408201600082015161420c6000850182613c89565b50602082015161421f6020850182614234565b50505050565b61422e81614a6e565b82525050565b61423d81614a78565b82525050565b61424c81614a8c565b82525050565b600061425e8284613d15565b60148201915081905092915050565b60006142798285613d65565b91506142858284613d65565b91508190509392505050565b600061429c82613db9565b91506142a88284613cc5565b60208201915081905092915050565b60006142c28261402f565b9150819050919050565b60006020820190506142e16000830184613c98565b92915050565b60006080820190506142fc6000830187613c98565b6143096020830186613c98565b6143166040830185614225565b81810360608301526143288184613cdc565b905095945050505050565b60006020820190506143486000830184613ca7565b92915050565b60006080820190506143636000830187613cb6565b6143706020830186614243565b61437d6040830185613cb6565b61438a6060830184613cb6565b95945050505050565b600060208201905081810360008301526143ad8184613d2c565b905092915050565b600060208201905081810360008301526143ce81613d96565b9050919050565b600060208201905081810360008301526143ee81613ddc565b9050919050565b6000602082019050818103600083015261440e81613dff565b9050919050565b6000602082019050818103600083015261442e81613e22565b9050919050565b6000602082019050818103600083015261444e81613e45565b9050919050565b6000602082019050818103600083015261446e81613e68565b9050919050565b6000602082019050818103600083015261448e81613e8b565b9050919050565b600060208201905081810360008301526144ae81613eae565b9050919050565b600060208201905081810360008301526144ce81613ed1565b9050919050565b600060208201905081810360008301526144ee81613ef4565b9050919050565b6000602082019050818103600083015261450e81613f17565b9050919050565b6000602082019050818103600083015261452e81613f3a565b9050919050565b6000602082019050818103600083015261454e81613f5d565b9050919050565b6000602082019050818103600083015261456e81613f80565b9050919050565b6000602082019050818103600083015261458e81613fa3565b9050919050565b600060208201905081810360008301526145ae81613fc6565b9050919050565b600060208201905081810360008301526145ce81613fe9565b9050919050565b600060208201905081810360008301526145ee8161400c565b9050919050565b6000602082019050818103600083015261460e81614052565b9050919050565b6000602082019050818103600083015261462e81614075565b9050919050565b6000602082019050818103600083015261464e81614098565b9050919050565b6000602082019050818103600083015261466e816140bb565b9050919050565b6000602082019050818103600083015261468e816140de565b9050919050565b600060208201905081810360008301526146ae81614101565b9050919050565b600060208201905081810360008301526146ce81614124565b9050919050565b600060208201905081810360008301526146ee81614147565b9050919050565b6000602082019050818103600083015261470e8161416a565b9050919050565b6000602082019050818103600083015261472e8161418d565b9050919050565b6000602082019050818103600083015261474e816141b0565b9050919050565b6000602082019050818103600083015261476e816141d3565b9050919050565b600060408201905061478a60008301846141f6565b92915050565b60006020820190506147a56000830184614225565b92915050565b60006147b56147c6565b90506147c18282614b6d565b919050565b6000604051905090565b600067ffffffffffffffff8211156147eb576147ea614d02565b5b6147f482614d4f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061485a82614a32565b915061486583614a32565b9250826fffffffffffffffffffffffffffffffff0382111561488a57614889614c46565b5b828201905092915050565b60006148a082614a6e565b91506148ab83614a6e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148e0576148df614c46565b5b828201905092915050565b60006148f682614a6e565b915061490183614a6e565b92508261491157614910614c75565b5b828204905092915050565b600061492782614a6e565b915061493283614a6e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561496b5761496a614c46565b5b828202905092915050565b600061498182614a32565b915061498c83614a32565b92508282101561499f5761499e614c46565b5b828203905092915050565b60006149b582614a6e565b91506149c083614a6e565b9250828210156149d3576149d2614c46565b5b828203905092915050565b60006149e982614a4e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b6000614aa482614aab565b9050919050565b6000614ab682614abd565b9050919050565b6000614ac882614a4e565b9050919050565b82818337600083830152505050565b60005b83811015614afc578082015181840152602081019050614ae1565b83811115614b0b576000848401525b50505050565b6000614b1c82614a6e565b91506000821415614b3057614b2f614c46565b5b600182039050919050565b60006002820490506001821680614b5357607f821691505b60208210811415614b6757614b66614ca4565b5b50919050565b614b7682614d4f565b810181811067ffffffffffffffff82111715614b9557614b94614d02565b5b80604052505050565b6000614ba982614a6e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bdc57614bdb614c46565b5b600182019050919050565b6000614bf282614c03565b9050919050565b6000819050919050565b6000614c0e82614d60565b9050919050565b6000614c2082614a6e565b9150614c2b83614a6e565b925082614c3b57614c3a614c75565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f43616e74206d696e74206d6f7265207468616e20330000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e74206d6f7265207468616e20313000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f73616c65206e6f74206c69766500000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b615542816149de565b811461554d57600080fd5b50565b615559816149f0565b811461556457600080fd5b50565b615570816149fc565b811461557b57600080fd5b50565b61558781614a06565b811461559257600080fd5b50565b61559e81614a6e565b81146155a957600080fd5b50565b6155b581614a8c565b81146155c057600080fd5b5056fea2646970667358221220ae6fb218b84b9b1766c1e8176fd5d9fa4af34d5595aac14b93f5615a13cf2c7964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063763f40111161012e578063a22cb465116100ab578063c9cafefc1161006f578063c9cafefc14610875578063d7224ba014610891578063dc33e681146108bc578063e985e9c5146108f9578063f2fde38b146109365761023b565b8063a22cb465146107a4578063ac446002146107cd578063b7f751d8146107e4578063b88d4fde1461080f578063c87b56dd146108385761023b565b806390d89a66116100f257806390d89a66146106ba5780639231ab2a146106f757806395d89b41146107345780639801b11c1461075f578063a0712d68146107885761023b565b8063763f4011146105f4578063791a25191461061057806383a9e049146106395780638736482d146106645780638da5cb5b1461068f5761023b565b806323b872dd116101bc57806355f804b31161018057806355f804b3146105115780636352211e1461053a5780636ebfd34d1461057757806370a08231146105a0578063715018a6146105dd5761023b565b806323b872dd1461041c5780632d20fb60146104455780632f745c591461046e57806342842e0e146104ab5780634f6ccce7146104d45761023b565b80630b12b9c0116102035780630b12b9c0146103395780630d95ccc914610376578063117670be1461039f57806318160ddd146103c857806318441c76146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a857806308cae89e146102e5578063095ea7b314610310575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613afb565b61095f565b6040516102749190614333565b60405180910390f35b34801561028957600080fd5b50610292610aa9565b60405161029f9190614393565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613ba2565b610b3b565b6040516102dc91906142cc565b60405180910390f35b3480156102f157600080fd5b506102fa610bc0565b6040516103079190614790565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613a8e565b610bc6565b005b34801561034557600080fd5b50610360600480360381019061035b919061390b565b610cdf565b60405161036d9190614790565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190613ace565b610cf7565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190613ace565b610d90565b005b3480156103d457600080fd5b506103dd610e29565b6040516103ea9190614790565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190613ba2565b610e33565b005b34801561042857600080fd5b50610443600480360381019061043e9190613978565b610eb9565b005b34801561045157600080fd5b5061046c60048036038101906104679190613ba2565b610ec9565b005b34801561047a57600080fd5b5061049560048036038101906104909190613a8e565b610fa7565b6040516104a29190614790565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190613978565b6111a5565b005b3480156104e057600080fd5b506104fb60048036038101906104f69190613ba2565b6111c5565b6040516105089190614790565b60405180910390f35b34801561051d57600080fd5b5061053860048036038101906105339190613b55565b611218565b005b34801561054657600080fd5b50610561600480360381019061055c9190613ba2565b6112aa565b60405161056e91906142cc565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190613ba2565b6112c0565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061390b565b6112ca565b6040516105d49190614790565b60405180910390f35b3480156105e957600080fd5b506105f26113b3565b005b61060e60048036038101906106099190613a8e565b61143b565b005b34801561061c57600080fd5b5061063760048036038101906106329190613ba2565b6115af565b005b34801561064557600080fd5b5061064e611635565b60405161065b9190614333565b60405180910390f35b34801561067057600080fd5b50610679611648565b6040516106869190614790565b60405180910390f35b34801561069b57600080fd5b506106a461164e565b6040516106b191906142cc565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190613c36565b611677565b6040516106ee9190614333565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613ba2565b61178b565b60405161072b9190614775565b60405180910390f35b34801561074057600080fd5b506107496117a3565b6040516107569190614393565b60405180910390f35b34801561076b57600080fd5b5061078660048036038101906107819190613ba2565b611835565b005b6107a2600480360381019061079d9190613ba2565b61183f565b005b3480156107b057600080fd5b506107cb60048036038101906107c69190613a4e565b611986565b005b3480156107d957600080fd5b506107e2611b07565b005b3480156107f057600080fd5b506107f9611c88565b6040516108069190614333565b60405180910390f35b34801561081b57600080fd5b50610836600480360381019061083191906139cb565b611c9b565b005b34801561084457600080fd5b5061085f600480360381019061085a9190613ba2565b611cf7565b60405161086c9190614393565b60405180910390f35b61088f600480360381019061088a9190613bcf565b611d9e565b005b34801561089d57600080fd5b506108a6611fe7565b6040516108b39190614790565b60405180910390f35b3480156108c857600080fd5b506108e360048036038101906108de919061390b565b611fed565b6040516108f09190614790565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b9190613938565b611fff565b60405161092d9190614333565b60405180910390f35b34801561094257600080fd5b5061095d6004803603810190610958919061390b565b612093565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa25750610aa18261218b565b5b9050919050565b606060048054610ab890614b3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae490614b3b565b8015610b315780601f10610b0657610100808354040283529160200191610b31565b820191906000526020600020905b815481529060010190602001808311610b1457829003601f168201915b5050505050905090565b6000610b46826121f5565b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90614735565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c5481565b6000610bd1826112aa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c39906145d5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c61612203565b73ffffffffffffffffffffffffffffffffffffffff161480610c905750610c8f81610c8a612203565b611fff565b5b610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc6906144b5565b60405180910390fd5b610cda83838361220b565b505050565b600f6020528060005260406000206000915090505481565b610cff612203565b73ffffffffffffffffffffffffffffffffffffffff16610d1d61164e565b73ffffffffffffffffffffffffffffffffffffffff1614610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90614535565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b610d98612203565b73ffffffffffffffffffffffffffffffffffffffff16610db661164e565b73ffffffffffffffffffffffffffffffffffffffff1614610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390614535565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600154905090565b610e3b612203565b73ffffffffffffffffffffffffffffffffffffffff16610e5961164e565b73ffffffffffffffffffffffffffffffffffffffff1614610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690614535565b60405180910390fd5b80600c8190555050565b610ec48383836122bd565b505050565b610ed1612203565b73ffffffffffffffffffffffffffffffffffffffff16610eef61164e565b73ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90614535565b60405180910390fd5b6002600b541415610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f82906146f5565b60405180910390fd5b6002600b81905550610f9c81612876565b6001600b8190555050565b6000610fb2836112ca565b8210610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea906143b5565b60405180910390fd5b6000610ffd610e29565b905060008060005b83811015611163576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110f757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561114f578684141561114057819550505050505061119f565b838061114b90614b9e565b9450505b50808061115b90614b9e565b915050611005565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611196906146b5565b60405180910390fd5b92915050565b6111c083838360405180602001604052806000815250611c9b565b505050565b60006111cf610e29565b8210611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790614455565b60405180910390fd5b819050919050565b611220612203565b73ffffffffffffffffffffffffffffffffffffffff1661123e61164e565b73ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90614535565b60405180910390fd5b8181601091906112a59291906136d5565b505050565b60006112b582612ac8565b600001519050919050565b8060038190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611332906144f5565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113bb612203565b73ffffffffffffffffffffffffffffffffffffffff166113d961164e565b73ffffffffffffffffffffffffffffffffffffffff161461142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690614535565b60405180910390fd5b6114396000612c8f565b565b611443612203565b73ffffffffffffffffffffffffffffffffffffffff1661146161164e565b73ffffffffffffffffffffffffffffffffffffffff16146114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90614535565b60405180910390fd5b600a8111156114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290614415565b60405180910390fd5b610d0581611507610e29565b6115119190614895565b1115611552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154990614615565b60405180910390fd5b600e60019054906101000a900460ff166115a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611598906145b5565b60405180910390fd5b6115ab8282612d53565b5050565b6115b7612203565b73ffffffffffffffffffffffffffffffffffffffff166115d561164e565b73ffffffffffffffffffffffffffffffffffffffff161461162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290614535565b60405180910390fd5b80600d8190555050565b600e60009054906101000a900460ff1681565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000803060405160200161168b9190614252565b60405160208183030381529060405280519060200120905060006001826040516020016116b89190614291565b60405160208183030381529060405280519060200120878787604051600081526020016040526040516116ee949392919061434e565b6020604051602081039080840390855afa158015611710573d6000803e3d6000fd5b5050506020604051035190508073ffffffffffffffffffffffffffffffffffffffff16600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561177d57600192505050611784565b6000925050505b9392505050565b61179361375b565b61179c82612ac8565b9050919050565b6060600580546117b290614b3b565b80601f01602080910402602001604051908101604052809291908181526020018280546117de90614b3b565b801561182b5780601f106118005761010080835404028352916020019161182b565b820191906000526020600020905b81548152906001019060200180831161180e57829003601f168201915b5050505050905090565b8060028190555050565b600a811115611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a90614415565b60405180910390fd5b610c6f8161188f610e29565b6118999190614895565b11156118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190614615565b60405180910390fd5b80600d546118e8919061491c565b34101561192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190614695565b60405180910390fd5b600e60019054906101000a900460ff16611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906145b5565b60405180910390fd5b6119833382612d53565b50565b61198e612203565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f390614575565b60405180910390fd5b8060096000611a09612203565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ab6612203565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611afb9190614333565b60405180910390a35050565b611b0f612203565b73ffffffffffffffffffffffffffffffffffffffff16611b2d61164e565b73ffffffffffffffffffffffffffffffffffffffff1614611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a90614535565b60405180910390fd5b6002600b541415611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc0906146f5565b60405180910390fd5b6002600b8190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611bf7906142b7565b60006040518083038185875af1925050503d8060008114611c34576040519150601f19603f3d011682016040523d82523d6000602084013e611c39565b606091505b5050905080611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c74906145f5565b60405180910390fd5b506001600b81905550565b600e60019054906101000a900460ff1681565b611ca68484846122bd565b611cb284848484612d71565b611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce890614635565b60405180910390fd5b50505050565b6060611d02826121f5565b611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890614555565b60405180910390fd5b6000611d4b612f08565b90506000815111611d6b5760405180602001604052806000815250611d96565b80611d7584612f9a565b604051602001611d8692919061426d565b6040516020818303038152906040525b915050919050565b828282611dac838383611677565b15611db657600080fd5b6003871115611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df1906143d5565b60405180910390fd5b610c6f87611e06610e29565b611e109190614895565b1115611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4890614615565b60405180910390fd5b86600c54611e5f919061491c565b341015611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890614695565b60405180910390fd5b600e60009054906101000a900460ff16611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee7906145b5565b60405180910390fd5b600387600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f3d9190614895565b1115611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f75906143d5565b60405180910390fd5b86600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fcd9190614895565b92505081905550611fde3388612d53565b50505050505050565b600a5481565b6000611ff8826130fb565b9050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61209b612203565b73ffffffffffffffffffffffffffffffffffffffff166120b961164e565b73ffffffffffffffffffffffffffffffffffffffff161461210f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210690614535565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612176906143f5565b60405180910390fd5b61218881612c8f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122c882612ac8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122ef612203565b73ffffffffffffffffffffffffffffffffffffffff16148061234b5750612314612203565b73ffffffffffffffffffffffffffffffffffffffff1661233384610b3b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061236757506123668260000151612361612203565b611fff565b5b9050806123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a090614595565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461241b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241290614515565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561248b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248290614475565b60405180910390fd5b61249885858560016131e4565b6124a8600084846000015161220b565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125169190614976565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125ba919061484f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846126c09190614895565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561280657612736816121f5565b15612805576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461286e86868660016131ea565b505050505050565b6000600a549050600082116128c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b7906144d5565b60405180910390fd5b6000600183836128d09190614895565b6128da91906149aa565b905060016002546128eb91906149aa565b81111561290457600160025461290191906149aa565b90505b61290d816121f5565b61294c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612943906146d5565b60405180910390fd5b60008290505b818111612aaf57600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a9c5760006129cf82612ac8565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612aa790614b9e565b915050612952565b50600181612abd9190614895565b600a81905550505050565b612ad061375b565b612ad9826121f5565b612b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0f90614435565b60405180910390fd5b60006003548310612b4057600160035484612b3391906149aa565b612b3d9190614895565b90505b60008390505b818110612c4e576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c3a57809350505050612c8a565b508080612c4690614b11565b915050612b46565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8190614715565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d6d8282604051806020016040528060008152506131f0565b5050565b6000612d928473ffffffffffffffffffffffffffffffffffffffff166136b2565b15612efb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dbb612203565b8786866040518563ffffffff1660e01b8152600401612ddd94939291906142e7565b602060405180830381600087803b158015612df757600080fd5b505af1925050508015612e2857506040513d601f19601f82011682018060405250810190612e259190613b28565b60015b612eab573d8060008114612e58576040519150601f19603f3d011682016040523d82523d6000602084013e612e5d565b606091505b50600081511415612ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9a90614635565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f00565b600190505b949350505050565b606060108054612f1790614b3b565b80601f0160208091040260200160405190810160405280929190818152602001828054612f4390614b3b565b8015612f905780601f10612f6557610100808354040283529160200191612f90565b820191906000526020600020905b815481529060010190602001808311612f7357829003601f168201915b5050505050905090565b60606000821415612fe2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130f6565b600082905060005b60008214613014578080612ffd90614b9e565b915050600a8261300d91906148eb565b9150612fea565b60008167ffffffffffffffff8111156130305761302f614d02565b5b6040519080825280601f01601f1916602001820160405280156130625781602001600182028036833780820191505090505b5090505b600085146130ef5760018261307b91906149aa565b9150600a8561308a9190614c15565b60306130969190614895565b60f81b8183815181106130ac576130ab614cd3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130e891906148eb565b9450613066565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561316c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316390614495565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325e90614675565b60405180910390fd5b613270816121f5565b156132b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a790614655565b60405180910390fd5b6003548311156132f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ec90614755565b60405180910390fd5b61330260008583866131e4565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516133ff919061484f565b6fffffffffffffffffffffffffffffffff168152602001858360200151613426919061484f565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561369557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136356000888488612d71565b613674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366b90614635565b60405180910390fd5b818061367f90614b9e565b925050808061368d90614b9e565b9150506135c4565b50806001819055506136aa60008785886131ea565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546136e190614b3b565b90600052602060002090601f016020900481019282613703576000855561374a565b82601f1061371c57803560ff191683800117855561374a565b8280016001018555821561374a579182015b8281111561374957823582559160200191906001019061372e565b5b5090506137579190613795565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156137ae576000816000905550600101613796565b5090565b60006137c56137c0846147d0565b6147ab565b9050828152602081018484840111156137e1576137e0614d40565b5b6137ec848285614acf565b509392505050565b60008135905061380381615539565b92915050565b60008135905061381881615550565b92915050565b60008135905061382d81615567565b92915050565b6000813590506138428161557e565b92915050565b6000815190506138578161557e565b92915050565b600082601f83011261387257613871614d36565b5b81356138828482602086016137b2565b91505092915050565b60008083601f8401126138a1576138a0614d36565b5b8235905067ffffffffffffffff8111156138be576138bd614d31565b5b6020830191508360018202830111156138da576138d9614d3b565b5b9250929050565b6000813590506138f081615595565b92915050565b600081359050613905816155ac565b92915050565b60006020828403121561392157613920614d4a565b5b600061392f848285016137f4565b91505092915050565b6000806040838503121561394f5761394e614d4a565b5b600061395d858286016137f4565b925050602061396e858286016137f4565b9150509250929050565b60008060006060848603121561399157613990614d4a565b5b600061399f868287016137f4565b93505060206139b0868287016137f4565b92505060406139c1868287016138e1565b9150509250925092565b600080600080608085870312156139e5576139e4614d4a565b5b60006139f3878288016137f4565b9450506020613a04878288016137f4565b9350506040613a15878288016138e1565b925050606085013567ffffffffffffffff811115613a3657613a35614d45565b5b613a428782880161385d565b91505092959194509250565b60008060408385031215613a6557613a64614d4a565b5b6000613a73858286016137f4565b9250506020613a8485828601613809565b9150509250929050565b60008060408385031215613aa557613aa4614d4a565b5b6000613ab3858286016137f4565b9250506020613ac4858286016138e1565b9150509250929050565b600060208284031215613ae457613ae3614d4a565b5b6000613af284828501613809565b91505092915050565b600060208284031215613b1157613b10614d4a565b5b6000613b1f84828501613833565b91505092915050565b600060208284031215613b3e57613b3d614d4a565b5b6000613b4c84828501613848565b91505092915050565b60008060208385031215613b6c57613b6b614d4a565b5b600083013567ffffffffffffffff811115613b8a57613b89614d45565b5b613b968582860161388b565b92509250509250929050565b600060208284031215613bb857613bb7614d4a565b5b6000613bc6848285016138e1565b91505092915050565b60008060008060808587031215613be957613be8614d4a565b5b6000613bf7878288016138e1565b9450506020613c08878288016138f6565b9350506040613c198782880161381e565b9250506060613c2a8782880161381e565b91505092959194509250565b600080600060608486031215613c4f57613c4e614d4a565b5b6000613c5d868287016138f6565b9350506020613c6e8682870161381e565b9250506040613c7f8682870161381e565b9150509250925092565b613c92816149de565b82525050565b613ca1816149de565b82525050565b613cb0816149f0565b82525050565b613cbf816149fc565b82525050565b613cd6613cd1826149fc565b614bf9565b82525050565b6000613ce782614801565b613cf18185614817565b9350613d01818560208601614ade565b613d0a81614d4f565b840191505092915050565b613d26613d2182614a99565b614be7565b82525050565b6000613d378261480c565b613d418185614833565b9350613d51818560208601614ade565b613d5a81614d4f565b840191505092915050565b6000613d708261480c565b613d7a8185614844565b9350613d8a818560208601614ade565b80840191505092915050565b6000613da3602283614833565b9150613dae82614d6d565b604082019050919050565b6000613dc6601c83614844565b9150613dd182614dbc565b601c82019050919050565b6000613de9601583614833565b9150613df482614de5565b602082019050919050565b6000613e0c602683614833565b9150613e1782614e0e565b604082019050919050565b6000613e2f601683614833565b9150613e3a82614e5d565b602082019050919050565b6000613e52602a83614833565b9150613e5d82614e86565b604082019050919050565b6000613e75602383614833565b9150613e8082614ed5565b604082019050919050565b6000613e98602583614833565b9150613ea382614f24565b604082019050919050565b6000613ebb603183614833565b9150613ec682614f73565b604082019050919050565b6000613ede603983614833565b9150613ee982614fc2565b604082019050919050565b6000613f01601883614833565b9150613f0c82615011565b602082019050919050565b6000613f24602b83614833565b9150613f2f8261503a565b604082019050919050565b6000613f47602683614833565b9150613f5282615089565b604082019050919050565b6000613f6a602083614833565b9150613f75826150d8565b602082019050919050565b6000613f8d602f83614833565b9150613f9882615101565b604082019050919050565b6000613fb0601a83614833565b9150613fbb82615150565b602082019050919050565b6000613fd3603283614833565b9150613fde82615179565b604082019050919050565b6000613ff6600d83614833565b9150614001826151c8565b602082019050919050565b6000614019602283614833565b9150614024826151f1565b604082019050919050565b600061403c600083614828565b915061404782615240565b600082019050919050565b600061405f601083614833565b915061406a82615243565b602082019050919050565b6000614082600883614833565b915061408d8261526c565b602082019050919050565b60006140a5603383614833565b91506140b082615295565b604082019050919050565b60006140c8601d83614833565b91506140d3826152e4565b602082019050919050565b60006140eb602183614833565b91506140f68261530d565b604082019050919050565b600061410e600e83614833565b91506141198261535c565b602082019050919050565b6000614131602e83614833565b915061413c82615385565b604082019050919050565b6000614154602683614833565b915061415f826153d4565b604082019050919050565b6000614177601f83614833565b915061418282615423565b602082019050919050565b600061419a602f83614833565b91506141a58261544c565b604082019050919050565b60006141bd602d83614833565b91506141c88261549b565b604082019050919050565b60006141e0602283614833565b91506141eb826154ea565b604082019050919050565b60408201600082015161420c6000850182613c89565b50602082015161421f6020850182614234565b50505050565b61422e81614a6e565b82525050565b61423d81614a78565b82525050565b61424c81614a8c565b82525050565b600061425e8284613d15565b60148201915081905092915050565b60006142798285613d65565b91506142858284613d65565b91508190509392505050565b600061429c82613db9565b91506142a88284613cc5565b60208201915081905092915050565b60006142c28261402f565b9150819050919050565b60006020820190506142e16000830184613c98565b92915050565b60006080820190506142fc6000830187613c98565b6143096020830186613c98565b6143166040830185614225565b81810360608301526143288184613cdc565b905095945050505050565b60006020820190506143486000830184613ca7565b92915050565b60006080820190506143636000830187613cb6565b6143706020830186614243565b61437d6040830185613cb6565b61438a6060830184613cb6565b95945050505050565b600060208201905081810360008301526143ad8184613d2c565b905092915050565b600060208201905081810360008301526143ce81613d96565b9050919050565b600060208201905081810360008301526143ee81613ddc565b9050919050565b6000602082019050818103600083015261440e81613dff565b9050919050565b6000602082019050818103600083015261442e81613e22565b9050919050565b6000602082019050818103600083015261444e81613e45565b9050919050565b6000602082019050818103600083015261446e81613e68565b9050919050565b6000602082019050818103600083015261448e81613e8b565b9050919050565b600060208201905081810360008301526144ae81613eae565b9050919050565b600060208201905081810360008301526144ce81613ed1565b9050919050565b600060208201905081810360008301526144ee81613ef4565b9050919050565b6000602082019050818103600083015261450e81613f17565b9050919050565b6000602082019050818103600083015261452e81613f3a565b9050919050565b6000602082019050818103600083015261454e81613f5d565b9050919050565b6000602082019050818103600083015261456e81613f80565b9050919050565b6000602082019050818103600083015261458e81613fa3565b9050919050565b600060208201905081810360008301526145ae81613fc6565b9050919050565b600060208201905081810360008301526145ce81613fe9565b9050919050565b600060208201905081810360008301526145ee8161400c565b9050919050565b6000602082019050818103600083015261460e81614052565b9050919050565b6000602082019050818103600083015261462e81614075565b9050919050565b6000602082019050818103600083015261464e81614098565b9050919050565b6000602082019050818103600083015261466e816140bb565b9050919050565b6000602082019050818103600083015261468e816140de565b9050919050565b600060208201905081810360008301526146ae81614101565b9050919050565b600060208201905081810360008301526146ce81614124565b9050919050565b600060208201905081810360008301526146ee81614147565b9050919050565b6000602082019050818103600083015261470e8161416a565b9050919050565b6000602082019050818103600083015261472e8161418d565b9050919050565b6000602082019050818103600083015261474e816141b0565b9050919050565b6000602082019050818103600083015261476e816141d3565b9050919050565b600060408201905061478a60008301846141f6565b92915050565b60006020820190506147a56000830184614225565b92915050565b60006147b56147c6565b90506147c18282614b6d565b919050565b6000604051905090565b600067ffffffffffffffff8211156147eb576147ea614d02565b5b6147f482614d4f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061485a82614a32565b915061486583614a32565b9250826fffffffffffffffffffffffffffffffff0382111561488a57614889614c46565b5b828201905092915050565b60006148a082614a6e565b91506148ab83614a6e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148e0576148df614c46565b5b828201905092915050565b60006148f682614a6e565b915061490183614a6e565b92508261491157614910614c75565b5b828204905092915050565b600061492782614a6e565b915061493283614a6e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561496b5761496a614c46565b5b828202905092915050565b600061498182614a32565b915061498c83614a32565b92508282101561499f5761499e614c46565b5b828203905092915050565b60006149b582614a6e565b91506149c083614a6e565b9250828210156149d3576149d2614c46565b5b828203905092915050565b60006149e982614a4e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b6000614aa482614aab565b9050919050565b6000614ab682614abd565b9050919050565b6000614ac882614a4e565b9050919050565b82818337600083830152505050565b60005b83811015614afc578082015181840152602081019050614ae1565b83811115614b0b576000848401525b50505050565b6000614b1c82614a6e565b91506000821415614b3057614b2f614c46565b5b600182039050919050565b60006002820490506001821680614b5357607f821691505b60208210811415614b6757614b66614ca4565b5b50919050565b614b7682614d4f565b810181811067ffffffffffffffff82111715614b9557614b94614d02565b5b80604052505050565b6000614ba982614a6e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bdc57614bdb614c46565b5b600182019050919050565b6000614bf282614c03565b9050919050565b6000819050919050565b6000614c0e82614d60565b9050919050565b6000614c2082614a6e565b9150614c2b83614a6e565b925082614c3b57614c3a614c75565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f43616e74206d696e74206d6f7265207468616e20330000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e74206d6f7265207468616e20313000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f73616c65206e6f74206c69766500000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b615542816149de565b811461554d57600080fd5b50565b615559816149f0565b811461556457600080fd5b50565b615570816149fc565b811461557b57600080fd5b50565b61558781614a06565b811461559257600080fd5b50565b61559e81614a6e565b81146155a957600080fd5b50565b6155b581614a8c565b81146155c057600080fd5b5056fea2646970667358221220ae6fb218b84b9b1766c1e8176fd5d9fa4af34d5595aac14b93f5615a13cf2c7964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 3333
Arg [2] : amountForAuctionAndDev_ (uint256): 0
Arg [3] : amountForDevs_ (uint256): 0

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42922:4883:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28015:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29741:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31266:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43303:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30829:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43548:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44893:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44985:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26576:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45080:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32116:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47418:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27207:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32321:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26739:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47125:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29564:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26304:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28441:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42030:103;;;;;;;;;;;;;:::i;:::-;;45776:275;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45172:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43397:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43348:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41379:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44368:519;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47655:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29896:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26398:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45446:324;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31534:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47231:181;;;;;;;;;;;;;:::i;:::-;;43434:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32541:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30057:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46450:498;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36956:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47542:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31871:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42288:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28015:370;28142:4;28187:25;28172:40;;;:11;:40;;;;:99;;;;28238:33;28223:48;;;:11;:48;;;;28172:99;:160;;;;28297:35;28282:50;;;:11;:50;;;;28172:160;:207;;;;28343:36;28367:11;28343:23;:36::i;:::-;28172:207;28158:221;;28015:370;;;:::o;29741:94::-;29795:13;29824:5;29817:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29741:94;:::o;31266:204::-;31334:7;31358:16;31366:7;31358;:16::i;:::-;31350:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31440:15;:24;31456:7;31440:24;;;;;;;;;;;;;;;;;;;;;31433:31;;31266:204;;;:::o;43303:38::-;;;;:::o;30829:379::-;30898:13;30914:24;30930:7;30914:15;:24::i;:::-;30898:40;;30959:5;30953:11;;:2;:11;;;;30945:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31044:5;31028:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;31053:37;31070:5;31077:12;:10;:12::i;:::-;31053:16;:37::i;:::-;31028:62;31012:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;31174:28;31183:2;31187:7;31196:5;31174:8;:28::i;:::-;30891:317;30829:379;;:::o;43548:43::-;;;;;;;;;;;;;;;;;:::o;44893:82::-;41610:12;:10;:12::i;:::-;41599:23;;:7;:5;:7::i;:::-;:23;;;41591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44963:6:::1;44949:11;;:20;;;;;;;;;;;;;;;;;;44893:82:::0;:::o;44985:89::-;41610:12;:10;:12::i;:::-;41599:23;;:7;:5;:7::i;:::-;:23;;;41591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45062:6:::1;45049:10;;:19;;;;;;;;;;;;;;;;;;44985:89:::0;:::o;26576:94::-;26629:7;26652:12;;26645:19;;26576:94;:::o;45080:82::-;41610:12;:10;:12::i;:::-;41599:23;;:7;:5;:7::i;:::-;:23;;;41591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45151:5:::1;45138:10;:18;;;;45080:82:::0;:::o;32116:142::-;32224:28;32234:4;32240:2;32244:7;32224:9;:28::i;:::-;32116:142;;;:::o;47418:118::-;41610:12;:10;:12::i;:::-;41599:23;;:7;:5;:7::i;:::-;:23;;;41591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1:::1;22769:7;;:19;;22761:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1;22902:7;:18;;;;47502:28:::2;47521:8;47502:18;:28::i;:::-;22127:1:::1;23081:7;:22;;;;47418:118:::0;:::o;27207:744::-;27316:7;27351:16;27361:5;27351:9;:16::i;:::-;27343:5;:24;27335:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27413:22;27438:13;:11;:13::i;:::-;27413:38;;27458:19;27488:25;27538:9;27533:350;27557:14;27553:1;:18;27533:350;;;27587:31;27621:11;:14;27633:1;27621:14;;;;;;;;;;;27587:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27674:1;27648:28;;:9;:14;;;:28;;;27644:89;;27709:9;:14;;;27689:34;;27644:89;27766:5;27745:26;;:17;:26;;;27741:135;;;27803:5;27788:11;:20;27784:59;;;27830:1;27823:8;;;;;;;;;27784:59;27853:13;;;;;:::i;:::-;;;;27741:135;27578:305;27573:3;;;;;:::i;:::-;;;;27533:350;;;;27889:56;;;;;;;;;;:::i;:::-;;;;;;;;27207:744;;;;;:::o;32321:157::-;32433:39;32450:4;32456:2;32460:7;32433:39;;;;;;;;;;;;:16;:39::i;:::-;32321:157;;;:::o;26739:177::-;26806:7;26838:13;:11;:13::i;:::-;26830:5;:21;26822:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26905:5;26898:12;;26739:177;;;:::o;47125:100::-;41610:12;:10;:12::i;:::-;41599:23;;:7;:5;:7::i;:::-;:23;;;41591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47212:7:::1;;47196:13;:23;;;;;;;:::i;:::-;;47125:100:::0;;:::o;29564:118::-;29628:7;29651:20;29663:7;29651:11;:20::i;:::-;:25;;;29644:32;;29564:118;;;:::o;26304:88::-;26378:8;26363:12;:23;;;;26304:88;:::o;28441:211::-;28505:7;28546:1;28529:19;;:5;:19;;;;28521:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28618:12;:19;28631:5;28618:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28610:36;;28603:43;;28441:211;;;:::o;42030:103::-;41610:12;:10;:12::i;:::-;41599:23;;:7;:5;:7::i;:::-;:23;;;41591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42095:30:::1;42122:1;42095:18;:30::i;:::-;42030:103::o:0;45776:275::-;41610:12;:10;:12::i;:::-;41599:23;;:7;:5;:7::i;:::-;:23;;;41591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45883:2:::1;45871:8;:14;;45863:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;45955:4;45943:8;45927:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;;45919:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;45987:10;;;;;;;;;;;45979:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;46022:23;46032:2;46036:8;46022:9;:23::i;:::-;45776:275:::0;;:::o;45172:94::-;41610:12;:10;:12::i;:::-;41599:23;;:7;:5;:7::i;:::-;:23;;;41591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45255:5:::1;45238:14;:22;;;;45172:94:::0;:::o;43397:30::-;;;;;;;;;;;;;:::o;43348:42::-;;;;:::o;41379:87::-;41425:7;41452:6;;;;;;;;;;;41445:13;;41379:87;:::o;44368:519::-;44495:4;44517:12;44559:4;44542:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;44532:33;;;;;;44517:48;;44576:19;44598:155;44685:4;44632:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;44622:69;;;;;;44706:2;44723;44740;44598:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44576:177;;44781:11;44768:24;;:9;;;;;;;;;;;:24;;;44764:116;;;44813:4;44806:11;;;;;;44764:116;44863:5;44856:12;;;;44368:519;;;;;;:::o;47655:147::-;47736:21;;:::i;:::-;47776:20;47788:7;47776:11;:20::i;:::-;47769:27;;47655:147;;;:::o;29896:98::-;29952:13;29981:7;29974:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29896:98;:::o;26398:110::-;26485:17;26468:14;:34;;;;26398:110;:::o;45446:324::-;45522:2;45510:8;:14;;45502:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;45594:4;45582:8;45566:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;;45558:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;45656:8;45639:14;;:25;;;;:::i;:::-;45626:9;:38;;45618:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;45698:10;;;;;;;;;;;45690:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45733:31;45743:10;45755:8;45733:9;:31::i;:::-;45446:324;:::o;31534:274::-;31637:12;:10;:12::i;:::-;31625:24;;:8;:24;;;;31617:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31734:8;31689:18;:32;31708:12;:10;:12::i;:::-;31689:32;;;;;;;;;;;;;;;:42;31722:8;31689:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31783:8;31754:48;;31769:12;:10;:12::i;:::-;31754:48;;;31793:8;31754:48;;;;;;:::i;:::-;;;;;;;;31534:274;;:::o;47231:181::-;41610:12;:10;:12::i;:::-;41599:23;;:7;:5;:7::i;:::-;:23;;;41591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1:::1;22769:7;;:19;;22761:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1;22902:7;:18;;;;47296:12:::2;47314:10;:15;;47337:21;47314:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47295:68;;;47378:7;47370:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;47288:124;22127:1:::1;23081:7;:22;;;;47231:181::o:0;43434:30::-;;;;;;;;;;;;;:::o;32541:311::-;32678:28;32688:4;32694:2;32698:7;32678:9;:28::i;:::-;32729:48;32752:4;32758:2;32762:7;32771:5;32729:22;:48::i;:::-;32713:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32541:311;;;;:::o;30057:394::-;30155:13;30196:16;30204:7;30196;:16::i;:::-;30180:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;30286:21;30310:10;:8;:10::i;:::-;30286:34;;30365:1;30347:7;30341:21;:25;:104;;;;;;;;;;;;;;;;;30402:7;30411:18;:7;:16;:18::i;:::-;30385:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30341:104;30327:118;;;30057:394;;;:::o;46450:498::-;46551:2;46555;46559;43900:32;43923:2;43926;43929;43900:22;:32::i;:::-;43899:33;43891:43;;;;;;46589:1:::1;46577:8;:13;;46569:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;46659:4;46647:8;46631:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;;46623:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;46717:8;46704:10;;:21;;;;:::i;:::-;46691:9;:34;;46683:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46759:11;;;;;;;;;;;46751:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;46838:1;46826:8;46803;:20;46812:10;46803:20;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:36;;46795:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;46896:8;46872;:20;46881:10;46872:20;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;46911:31;46921:10;46933:8;46911:9;:31::i;:::-;46450:498:::0;;;;;;;:::o;36956:43::-;;;;:::o;47542:107::-;47600:7;47623:20;47637:5;47623:13;:20::i;:::-;47616:27;;47542:107;;;:::o;31871:186::-;31993:4;32016:18;:25;32035:5;32016:25;;;;;;;;;;;;;;;:35;32042:8;32016:35;;;;;;;;;;;;;;;;;;;;;;;;;32009:42;;31871:186;;;;:::o;42288:201::-;41610:12;:10;:12::i;:::-;41599:23;;:7;:5;:7::i;:::-;:23;;;41591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42397:1:::1;42377:22;;:8;:22;;;;42369:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42453:28;42472:8;42453:18;:28::i;:::-;42288:201:::0;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;33091:105::-;33148:4;33178:12;;33168:7;:22;33161:29;;33091:105;;;:::o;23797:98::-;23850:7;23877:10;23870:17;;23797:98;:::o;36778:172::-;36902:2;36875:15;:24;36891:7;36875:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36936:7;36932:2;36916:28;;36925:5;36916:28;;;;;;;;;;;;36778:172;;;:::o;35143:1529::-;35240:35;35278:20;35290:7;35278:11;:20::i;:::-;35240:58;;35307:22;35349:13;:18;;;35333:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35402:12;:10;:12::i;:::-;35378:36;;:20;35390:7;35378:11;:20::i;:::-;:36;;;35333:81;:142;;;;35425:50;35442:13;:18;;;35462:12;:10;:12::i;:::-;35425:16;:50::i;:::-;35333:142;35307:169;;35501:17;35485:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35633:4;35611:26;;:13;:18;;;:26;;;35595:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35722:1;35708:16;;:2;:16;;;;35700:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35775:43;35797:4;35803:2;35807:7;35816:1;35775:21;:43::i;:::-;35875:49;35892:1;35896:7;35905:13;:18;;;35875:8;:49::i;:::-;35963:1;35933:12;:18;35946:4;35933:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35999:1;35971:12;:16;35984:2;35971:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36030:43;;;;;;;;36045:2;36030:43;;;;;;36056:15;36030:43;;;;;36007:11;:20;36019:7;36007:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36301:19;36333:1;36323:7;:11;;;;:::i;:::-;36301:33;;36386:1;36345:43;;:11;:24;36357:11;36345:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36341:236;;;36403:20;36411:11;36403:7;:20::i;:::-;36399:171;;;36463:97;;;;;;;;36490:13;:18;;;36463:97;;;;;;36521:13;:28;;;36463:97;;;;;36436:11;:24;36448:11;36436:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36399:171;36341:236;36609:7;36605:2;36590:27;;36599:4;36590:27;;;;;;;;;;;;36624:42;36645:4;36651:2;36655:7;36664:1;36624:20;:42::i;:::-;35233:1439;;;35143:1529;;;:::o;37104:846::-;37166:25;37194:24;;37166:52;;37244:1;37233:8;:12;37225:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;37281:16;37331:1;37320:8;37300:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;37281:51;;37371:1;37354:14;;:18;;;;:::i;:::-;37343:8;:29;37339:81;;;37411:1;37394:14;;:18;;;;:::i;:::-;37383:29;;37339:81;37535:17;37543:8;37535:7;:17::i;:::-;37527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37607:9;37619:17;37607:29;;37602:297;37643:8;37638:1;:13;37602:297;;37702:1;37671:33;;:11;:14;37683:1;37671:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;37667:225;;;37717:31;37751:14;37763:1;37751:11;:14::i;:::-;37717:48;;37793:89;;;;;;;;37820:9;:14;;;37793:89;;;;;;37847:9;:24;;;37793:89;;;;;37776:11;:14;37788:1;37776:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37706:186;37667:225;37653:3;;;;;:::i;:::-;;;;37602:297;;;;37943:1;37932:8;:12;;;;:::i;:::-;37905:24;:39;;;;37159:791;;37104:846;:::o;28904:606::-;28980:21;;:::i;:::-;29021:16;29029:7;29021;:16::i;:::-;29013:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29093:26;29141:12;;29130:7;:23;29126:93;;29210:1;29195:12;;29185:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;29164:47;;29126:93;29232:12;29247:7;29232:22;;29227:212;29264:18;29256:4;:26;29227:212;;29301:31;29335:11;:17;29347:4;29335:17;;;;;;;;;;;29301:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29391:1;29365:28;;:9;:14;;;:28;;;29361:71;;29413:9;29406:16;;;;;;;29361:71;29292:147;29284:6;;;;;:::i;:::-;;;;29227:212;;;;29447:57;;;;;;;;;;:::i;:::-;;;;;;;;28904:606;;;;:::o;42649:191::-;42723:16;42742:6;;;;;;;;;;;42723:25;;42768:8;42759:6;;:17;;;;;;;;;;;;;;;;;;42823:8;42792:40;;42813:8;42792:40;;;;;;;;;;;;42712:128;42649:191;:::o;33202:98::-;33267:27;33277:2;33281:8;33267:27;;;;;;;;;;;;:9;:27::i;:::-;33202:98;;:::o;38493:690::-;38630:4;38647:15;:2;:13;;;:15::i;:::-;38643:535;;;38702:2;38686:36;;;38723:12;:10;:12::i;:::-;38737:4;38743:7;38752:5;38686:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38673:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38934:1;38917:6;:13;:18;38913:215;;;38950:61;;;;;;;;;;:::i;:::-;;;;;;;;38913:215;39096:6;39090:13;39081:6;39077:2;39073:15;39066:38;38673:464;38818:45;;;38808:55;;;:6;:55;;;;38801:62;;;;;38643:535;39166:4;39159:11;;38493:690;;;;;;;:::o;47011:108::-;47071:13;47100;47093:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47011:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;28658:240::-;28719:7;28768:1;28751:19;;:5;:19;;;;28735:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;28859:12;:19;28872:5;28859:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;28851:41;;28844:48;;28658:240;;;:::o;39645:141::-;;;;;:::o;40172:140::-;;;;;:::o;33639:1272::-;33744:20;33767:12;;33744:35;;33808:1;33794:16;;:2;:16;;;;33786:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33985:21;33993:12;33985:7;:21::i;:::-;33984:22;33976:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34067:12;;34055:8;:24;;34047:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34127:61;34157:1;34161:2;34165:12;34179:8;34127:21;:61::i;:::-;34197:30;34230:12;:16;34243:2;34230:16;;;;;;;;;;;;;;;34197:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34272:119;;;;;;;;34322:8;34292:11;:19;;;:39;;;;:::i;:::-;34272:119;;;;;;34375:8;34340:11;:24;;;:44;;;;:::i;:::-;34272:119;;;;;34253:12;:16;34266:2;34253:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34426:43;;;;;;;;34441:2;34426:43;;;;;;34452:15;34426:43;;;;;34398:11;:25;34410:12;34398:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34478:20;34501:12;34478:35;;34527:9;34522:281;34546:8;34542:1;:12;34522:281;;;34600:12;34596:2;34575:38;;34592:1;34575:38;;;;;;;;;;;;34640:59;34671:1;34675:2;34679:12;34693:5;34640:22;:59::i;:::-;34622:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34781:14;;;;;:::i;:::-;;;;34556:3;;;;;:::i;:::-;;;;34522:281;;;;34826:12;34811;:27;;;;34845:60;34874:1;34878:2;34882:12;34896:8;34845:20;:60::i;:::-;33737:1174;;;33639:1272;;;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357: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:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;707:139;;;;:::o;852:137::-;897:5;935:6;922:20;913:29;;951:32;977:5;951:32;:::i;:::-;852:137;;;;:::o;995:141::-;1051:5;1082:6;1076:13;1067:22;;1098:32;1124:5;1098:32;:::i;:::-;995:141;;;;:::o;1155:338::-;1210:5;1259:3;1252:4;1244:6;1240:17;1236:27;1226:122;;1267:79;;:::i;:::-;1226:122;1384:6;1371:20;1409:78;1483:3;1475:6;1468:4;1460:6;1456:17;1409:78;:::i;:::-;1400:87;;1216:277;1155:338;;;;:::o;1513:553::-;1571:8;1581:6;1631:3;1624:4;1616:6;1612:17;1608:27;1598:122;;1639:79;;:::i;:::-;1598:122;1752:6;1739:20;1729:30;;1782:18;1774:6;1771:30;1768:117;;;1804:79;;:::i;:::-;1768:117;1918:4;1910:6;1906:17;1894:29;;1972:3;1964:4;1956:6;1952:17;1942:8;1938:32;1935:41;1932:128;;;1979:79;;:::i;:::-;1932:128;1513:553;;;;;:::o;2072:139::-;2118:5;2156:6;2143:20;2134:29;;2172:33;2199:5;2172:33;:::i;:::-;2072:139;;;;:::o;2217:135::-;2261:5;2299:6;2286:20;2277:29;;2315:31;2340:5;2315:31;:::i;:::-;2217:135;;;;:::o;2358:329::-;2417:6;2466:2;2454:9;2445:7;2441:23;2437:32;2434:119;;;2472:79;;:::i;:::-;2434:119;2592:1;2617:53;2662:7;2653:6;2642:9;2638:22;2617:53;:::i;:::-;2607:63;;2563:117;2358:329;;;;:::o;2693:474::-;2761:6;2769;2818:2;2806:9;2797:7;2793:23;2789:32;2786:119;;;2824:79;;:::i;:::-;2786:119;2944:1;2969:53;3014:7;3005:6;2994:9;2990:22;2969:53;:::i;:::-;2959:63;;2915:117;3071:2;3097:53;3142:7;3133:6;3122:9;3118:22;3097:53;:::i;:::-;3087:63;;3042:118;2693:474;;;;;:::o;3173:619::-;3250:6;3258;3266;3315:2;3303:9;3294:7;3290:23;3286:32;3283:119;;;3321:79;;:::i;:::-;3283:119;3441:1;3466:53;3511:7;3502:6;3491:9;3487:22;3466:53;:::i;:::-;3456:63;;3412:117;3568:2;3594:53;3639:7;3630:6;3619:9;3615:22;3594:53;:::i;:::-;3584:63;;3539:118;3696:2;3722:53;3767:7;3758:6;3747:9;3743:22;3722:53;:::i;:::-;3712:63;;3667:118;3173:619;;;;;:::o;3798:943::-;3893:6;3901;3909;3917;3966:3;3954:9;3945:7;3941:23;3937:33;3934:120;;;3973:79;;:::i;:::-;3934:120;4093:1;4118:53;4163:7;4154:6;4143:9;4139:22;4118:53;:::i;:::-;4108:63;;4064:117;4220:2;4246:53;4291:7;4282:6;4271:9;4267:22;4246:53;:::i;:::-;4236:63;;4191:118;4348:2;4374:53;4419:7;4410:6;4399:9;4395:22;4374:53;:::i;:::-;4364:63;;4319:118;4504:2;4493:9;4489:18;4476:32;4535:18;4527:6;4524:30;4521:117;;;4557:79;;:::i;:::-;4521:117;4662:62;4716:7;4707:6;4696:9;4692:22;4662:62;:::i;:::-;4652:72;;4447:287;3798:943;;;;;;;:::o;4747:468::-;4812:6;4820;4869:2;4857:9;4848:7;4844:23;4840:32;4837:119;;;4875:79;;:::i;:::-;4837:119;4995:1;5020:53;5065:7;5056:6;5045:9;5041:22;5020:53;:::i;:::-;5010:63;;4966:117;5122:2;5148:50;5190:7;5181:6;5170:9;5166:22;5148:50;:::i;:::-;5138:60;;5093:115;4747:468;;;;;:::o;5221:474::-;5289:6;5297;5346:2;5334:9;5325:7;5321:23;5317:32;5314:119;;;5352:79;;:::i;:::-;5314:119;5472:1;5497:53;5542:7;5533:6;5522:9;5518:22;5497:53;:::i;:::-;5487:63;;5443:117;5599:2;5625:53;5670:7;5661:6;5650:9;5646:22;5625:53;:::i;:::-;5615:63;;5570:118;5221:474;;;;;:::o;5701:323::-;5757:6;5806:2;5794:9;5785:7;5781:23;5777:32;5774:119;;;5812:79;;:::i;:::-;5774:119;5932:1;5957:50;5999:7;5990:6;5979:9;5975:22;5957:50;:::i;:::-;5947:60;;5903:114;5701:323;;;;:::o;6030:327::-;6088:6;6137:2;6125:9;6116:7;6112:23;6108:32;6105:119;;;6143:79;;:::i;:::-;6105:119;6263:1;6288:52;6332:7;6323:6;6312:9;6308:22;6288:52;:::i;:::-;6278:62;;6234:116;6030:327;;;;:::o;6363:349::-;6432:6;6481:2;6469:9;6460:7;6456:23;6452:32;6449:119;;;6487:79;;:::i;:::-;6449:119;6607:1;6632:63;6687:7;6678:6;6667:9;6663:22;6632:63;:::i;:::-;6622:73;;6578:127;6363:349;;;;:::o;6718:529::-;6789:6;6797;6846:2;6834:9;6825:7;6821:23;6817:32;6814:119;;;6852:79;;:::i;:::-;6814:119;7000:1;6989:9;6985:17;6972:31;7030:18;7022:6;7019:30;7016:117;;;7052:79;;:::i;:::-;7016:117;7165:65;7222:7;7213:6;7202:9;7198:22;7165:65;:::i;:::-;7147:83;;;;6943:297;6718:529;;;;;:::o;7253:329::-;7312:6;7361:2;7349:9;7340:7;7336:23;7332:32;7329:119;;;7367:79;;:::i;:::-;7329:119;7487:1;7512:53;7557:7;7548:6;7537:9;7533:22;7512:53;:::i;:::-;7502:63;;7458:117;7253:329;;;;:::o;7588:761::-;7672:6;7680;7688;7696;7745:3;7733:9;7724:7;7720:23;7716:33;7713:120;;;7752:79;;:::i;:::-;7713:120;7872:1;7897:53;7942:7;7933:6;7922:9;7918:22;7897:53;:::i;:::-;7887:63;;7843:117;7999:2;8025:51;8068:7;8059:6;8048:9;8044:22;8025:51;:::i;:::-;8015:61;;7970:116;8125:2;8151:53;8196:7;8187:6;8176:9;8172:22;8151:53;:::i;:::-;8141:63;;8096:118;8253:2;8279:53;8324:7;8315:6;8304:9;8300:22;8279:53;:::i;:::-;8269:63;;8224:118;7588:761;;;;;;;:::o;8355:615::-;8430:6;8438;8446;8495:2;8483:9;8474:7;8470:23;8466:32;8463:119;;;8501:79;;:::i;:::-;8463:119;8621:1;8646:51;8689:7;8680:6;8669:9;8665:22;8646:51;:::i;:::-;8636:61;;8592:115;8746:2;8772:53;8817:7;8808:6;8797:9;8793:22;8772:53;:::i;:::-;8762:63;;8717:118;8874:2;8900:53;8945:7;8936:6;8925:9;8921:22;8900:53;:::i;:::-;8890:63;;8845:118;8355:615;;;;;:::o;8976:108::-;9053:24;9071:5;9053:24;:::i;:::-;9048:3;9041:37;8976:108;;:::o;9090:118::-;9177:24;9195:5;9177:24;:::i;:::-;9172:3;9165:37;9090:118;;:::o;9214:109::-;9295:21;9310:5;9295:21;:::i;:::-;9290:3;9283:34;9214:109;;:::o;9329:118::-;9416:24;9434:5;9416:24;:::i;:::-;9411:3;9404:37;9329:118;;:::o;9453:157::-;9558:45;9578:24;9596:5;9578:24;:::i;:::-;9558:45;:::i;:::-;9553:3;9546:58;9453:157;;:::o;9616:360::-;9702:3;9730:38;9762:5;9730:38;:::i;:::-;9784:70;9847:6;9842:3;9784:70;:::i;:::-;9777:77;;9863:52;9908:6;9903:3;9896:4;9889:5;9885:16;9863:52;:::i;:::-;9940:29;9962:6;9940:29;:::i;:::-;9935:3;9931:39;9924:46;;9706:270;9616:360;;;;:::o;9982:206::-;10105:76;10125:55;10174:5;10125:55;:::i;:::-;10105:76;:::i;:::-;10100:3;10093:89;9982:206;;:::o;10194:364::-;10282:3;10310:39;10343:5;10310:39;:::i;:::-;10365:71;10429:6;10424:3;10365:71;:::i;:::-;10358:78;;10445:52;10490:6;10485:3;10478:4;10471:5;10467:16;10445:52;:::i;:::-;10522:29;10544:6;10522:29;:::i;:::-;10517:3;10513:39;10506:46;;10286:272;10194:364;;;;:::o;10564:377::-;10670:3;10698:39;10731:5;10698:39;:::i;:::-;10753:89;10835:6;10830:3;10753:89;:::i;:::-;10746:96;;10851:52;10896:6;10891:3;10884:4;10877:5;10873:16;10851:52;:::i;:::-;10928:6;10923:3;10919:16;10912:23;;10674:267;10564:377;;;;:::o;10947:366::-;11089:3;11110:67;11174:2;11169:3;11110:67;:::i;:::-;11103:74;;11186:93;11275:3;11186:93;:::i;:::-;11304:2;11299:3;11295:12;11288:19;;10947:366;;;:::o;11319:402::-;11479:3;11500:85;11582:2;11577:3;11500:85;:::i;:::-;11493:92;;11594:93;11683:3;11594:93;:::i;:::-;11712:2;11707:3;11703:12;11696:19;;11319:402;;;:::o;11727:366::-;11869:3;11890:67;11954:2;11949:3;11890:67;:::i;:::-;11883:74;;11966:93;12055:3;11966:93;:::i;:::-;12084:2;12079:3;12075:12;12068:19;;11727:366;;;:::o;12099:::-;12241:3;12262:67;12326:2;12321:3;12262:67;:::i;:::-;12255:74;;12338:93;12427:3;12338:93;:::i;:::-;12456:2;12451:3;12447:12;12440:19;;12099:366;;;:::o;12471:::-;12613:3;12634:67;12698:2;12693:3;12634:67;:::i;:::-;12627:74;;12710:93;12799:3;12710:93;:::i;:::-;12828:2;12823:3;12819:12;12812:19;;12471:366;;;:::o;12843:::-;12985:3;13006:67;13070:2;13065:3;13006:67;:::i;:::-;12999:74;;13082:93;13171:3;13082:93;:::i;:::-;13200:2;13195:3;13191:12;13184:19;;12843:366;;;:::o;13215:::-;13357:3;13378:67;13442:2;13437:3;13378:67;:::i;:::-;13371:74;;13454:93;13543:3;13454:93;:::i;:::-;13572:2;13567:3;13563:12;13556:19;;13215:366;;;:::o;13587:::-;13729:3;13750:67;13814:2;13809:3;13750:67;:::i;:::-;13743:74;;13826:93;13915:3;13826:93;:::i;:::-;13944:2;13939:3;13935:12;13928:19;;13587:366;;;:::o;13959:::-;14101:3;14122:67;14186:2;14181:3;14122:67;:::i;:::-;14115:74;;14198:93;14287:3;14198:93;:::i;:::-;14316:2;14311:3;14307:12;14300:19;;13959:366;;;:::o;14331:::-;14473:3;14494:67;14558:2;14553:3;14494:67;:::i;:::-;14487:74;;14570:93;14659:3;14570:93;:::i;:::-;14688:2;14683:3;14679:12;14672:19;;14331:366;;;:::o;14703:::-;14845:3;14866:67;14930:2;14925:3;14866:67;:::i;:::-;14859:74;;14942:93;15031:3;14942:93;:::i;:::-;15060:2;15055:3;15051:12;15044:19;;14703:366;;;:::o;15075:::-;15217:3;15238:67;15302:2;15297:3;15238:67;:::i;:::-;15231:74;;15314:93;15403:3;15314:93;:::i;:::-;15432:2;15427:3;15423:12;15416:19;;15075:366;;;:::o;15447:::-;15589:3;15610:67;15674:2;15669:3;15610:67;:::i;:::-;15603:74;;15686:93;15775:3;15686:93;:::i;:::-;15804:2;15799:3;15795:12;15788:19;;15447:366;;;:::o;15819:::-;15961:3;15982:67;16046:2;16041:3;15982:67;:::i;:::-;15975:74;;16058:93;16147:3;16058:93;:::i;:::-;16176:2;16171:3;16167:12;16160:19;;15819:366;;;:::o;16191:::-;16333:3;16354:67;16418:2;16413:3;16354:67;:::i;:::-;16347:74;;16430:93;16519:3;16430:93;:::i;:::-;16548:2;16543:3;16539:12;16532:19;;16191:366;;;:::o;16563:::-;16705:3;16726:67;16790:2;16785:3;16726:67;:::i;:::-;16719:74;;16802:93;16891:3;16802:93;:::i;:::-;16920:2;16915:3;16911:12;16904:19;;16563:366;;;:::o;16935:::-;17077:3;17098:67;17162:2;17157:3;17098:67;:::i;:::-;17091:74;;17174:93;17263:3;17174:93;:::i;:::-;17292:2;17287:3;17283:12;17276:19;;16935:366;;;:::o;17307:::-;17449:3;17470:67;17534:2;17529:3;17470:67;:::i;:::-;17463:74;;17546:93;17635:3;17546:93;:::i;:::-;17664:2;17659:3;17655:12;17648:19;;17307:366;;;:::o;17679:::-;17821:3;17842:67;17906:2;17901:3;17842:67;:::i;:::-;17835:74;;17918:93;18007:3;17918:93;:::i;:::-;18036:2;18031:3;18027:12;18020:19;;17679:366;;;:::o;18051:398::-;18210:3;18231:83;18312:1;18307:3;18231:83;:::i;:::-;18224:90;;18323:93;18412:3;18323:93;:::i;:::-;18441:1;18436:3;18432:11;18425:18;;18051:398;;;:::o;18455:366::-;18597:3;18618:67;18682:2;18677:3;18618:67;:::i;:::-;18611:74;;18694:93;18783:3;18694:93;:::i;:::-;18812:2;18807:3;18803:12;18796:19;;18455:366;;;:::o;18827:365::-;18969:3;18990:66;19054:1;19049:3;18990:66;:::i;:::-;18983:73;;19065:93;19154:3;19065:93;:::i;:::-;19183:2;19178:3;19174:12;19167:19;;18827:365;;;:::o;19198:366::-;19340:3;19361:67;19425:2;19420:3;19361:67;:::i;:::-;19354:74;;19437:93;19526:3;19437:93;:::i;:::-;19555:2;19550:3;19546:12;19539:19;;19198:366;;;:::o;19570:::-;19712:3;19733:67;19797:2;19792:3;19733:67;:::i;:::-;19726:74;;19809:93;19898:3;19809:93;:::i;:::-;19927:2;19922:3;19918:12;19911:19;;19570:366;;;:::o;19942:::-;20084:3;20105:67;20169:2;20164:3;20105:67;:::i;:::-;20098:74;;20181:93;20270:3;20181:93;:::i;:::-;20299:2;20294:3;20290:12;20283:19;;19942:366;;;:::o;20314:::-;20456:3;20477:67;20541:2;20536:3;20477:67;:::i;:::-;20470:74;;20553:93;20642:3;20553:93;:::i;:::-;20671:2;20666:3;20662:12;20655:19;;20314:366;;;:::o;20686:::-;20828:3;20849:67;20913:2;20908:3;20849:67;:::i;:::-;20842:74;;20925:93;21014:3;20925:93;:::i;:::-;21043:2;21038:3;21034:12;21027:19;;20686:366;;;:::o;21058:::-;21200:3;21221:67;21285:2;21280:3;21221:67;:::i;:::-;21214:74;;21297:93;21386:3;21297:93;:::i;:::-;21415:2;21410:3;21406:12;21399:19;;21058:366;;;:::o;21430:::-;21572:3;21593:67;21657:2;21652:3;21593:67;:::i;:::-;21586:74;;21669:93;21758:3;21669:93;:::i;:::-;21787:2;21782:3;21778:12;21771:19;;21430:366;;;:::o;21802:::-;21944:3;21965:67;22029:2;22024:3;21965:67;:::i;:::-;21958:74;;22041:93;22130:3;22041:93;:::i;:::-;22159:2;22154:3;22150:12;22143:19;;21802:366;;;:::o;22174:::-;22316:3;22337:67;22401:2;22396:3;22337:67;:::i;:::-;22330:74;;22413:93;22502:3;22413:93;:::i;:::-;22531:2;22526:3;22522:12;22515:19;;22174:366;;;:::o;22546:::-;22688:3;22709:67;22773:2;22768:3;22709:67;:::i;:::-;22702:74;;22785:93;22874:3;22785:93;:::i;:::-;22903:2;22898:3;22894:12;22887:19;;22546:366;;;:::o;22988:527::-;23147:4;23142:3;23138:14;23234:4;23227:5;23223:16;23217:23;23253:63;23310:4;23305:3;23301:14;23287:12;23253:63;:::i;:::-;23162:164;23418:4;23411:5;23407:16;23401:23;23437:61;23492:4;23487:3;23483:14;23469:12;23437:61;:::i;:::-;23336:172;23116:399;22988:527;;:::o;23521:118::-;23608:24;23626:5;23608:24;:::i;:::-;23603:3;23596:37;23521:118;;:::o;23645:105::-;23720:23;23737:5;23720:23;:::i;:::-;23715:3;23708:36;23645:105;;:::o;23756:112::-;23839:22;23855:5;23839:22;:::i;:::-;23834:3;23827:35;23756:112;;:::o;23874:292::-;24004:3;24019:93;24108:3;24099:6;24019:93;:::i;:::-;24137:2;24132:3;24128:12;24121:19;;24157:3;24150:10;;23874:292;;;;:::o;24172:435::-;24352:3;24374:95;24465:3;24456:6;24374:95;:::i;:::-;24367:102;;24486:95;24577:3;24568:6;24486:95;:::i;:::-;24479:102;;24598:3;24591:10;;24172:435;;;;;:::o;24613:522::-;24826:3;24848:148;24992:3;24848:148;:::i;:::-;24841:155;;25006:75;25077:3;25068:6;25006:75;:::i;:::-;25106:2;25101:3;25097:12;25090:19;;25126:3;25119:10;;24613:522;;;;:::o;25141:379::-;25325:3;25347:147;25490:3;25347:147;:::i;:::-;25340:154;;25511:3;25504:10;;25141:379;;;:::o;25526:222::-;25619:4;25657:2;25646:9;25642:18;25634:26;;25670:71;25738:1;25727:9;25723:17;25714:6;25670:71;:::i;:::-;25526:222;;;;:::o;25754:640::-;25949:4;25987:3;25976:9;25972:19;25964:27;;26001:71;26069:1;26058:9;26054:17;26045:6;26001:71;:::i;:::-;26082:72;26150:2;26139:9;26135:18;26126:6;26082:72;:::i;:::-;26164;26232:2;26221:9;26217:18;26208:6;26164:72;:::i;:::-;26283:9;26277:4;26273:20;26268:2;26257:9;26253:18;26246:48;26311:76;26382:4;26373:6;26311:76;:::i;:::-;26303:84;;25754:640;;;;;;;:::o;26400:210::-;26487:4;26525:2;26514:9;26510:18;26502:26;;26538:65;26600:1;26589:9;26585:17;26576:6;26538:65;:::i;:::-;26400:210;;;;:::o;26616:545::-;26789:4;26827:3;26816:9;26812:19;26804:27;;26841:71;26909:1;26898:9;26894:17;26885:6;26841:71;:::i;:::-;26922:68;26986:2;26975:9;26971:18;26962:6;26922:68;:::i;:::-;27000:72;27068:2;27057:9;27053:18;27044:6;27000:72;:::i;:::-;27082;27150:2;27139:9;27135:18;27126:6;27082:72;:::i;:::-;26616:545;;;;;;;:::o;27167:313::-;27280:4;27318:2;27307:9;27303:18;27295:26;;27367:9;27361:4;27357:20;27353:1;27342:9;27338:17;27331:47;27395:78;27468:4;27459:6;27395:78;:::i;:::-;27387:86;;27167:313;;;;:::o;27486:419::-;27652:4;27690:2;27679:9;27675:18;27667:26;;27739:9;27733:4;27729:20;27725:1;27714:9;27710:17;27703:47;27767:131;27893:4;27767:131;:::i;:::-;27759:139;;27486:419;;;:::o;27911:::-;28077:4;28115:2;28104:9;28100:18;28092:26;;28164:9;28158:4;28154:20;28150:1;28139:9;28135:17;28128:47;28192:131;28318:4;28192:131;:::i;:::-;28184:139;;27911:419;;;:::o;28336:::-;28502:4;28540:2;28529:9;28525:18;28517:26;;28589:9;28583:4;28579:20;28575:1;28564:9;28560:17;28553:47;28617:131;28743:4;28617:131;:::i;:::-;28609:139;;28336:419;;;:::o;28761:::-;28927:4;28965:2;28954:9;28950:18;28942:26;;29014:9;29008:4;29004:20;29000:1;28989:9;28985:17;28978:47;29042:131;29168:4;29042:131;:::i;:::-;29034:139;;28761:419;;;:::o;29186:::-;29352:4;29390:2;29379:9;29375:18;29367:26;;29439:9;29433:4;29429:20;29425:1;29414:9;29410:17;29403:47;29467:131;29593:4;29467:131;:::i;:::-;29459:139;;29186:419;;;:::o;29611:::-;29777:4;29815:2;29804:9;29800:18;29792:26;;29864:9;29858:4;29854:20;29850:1;29839:9;29835:17;29828:47;29892:131;30018:4;29892:131;:::i;:::-;29884:139;;29611:419;;;:::o;30036:::-;30202:4;30240:2;30229:9;30225:18;30217:26;;30289:9;30283:4;30279:20;30275:1;30264:9;30260:17;30253:47;30317:131;30443:4;30317:131;:::i;:::-;30309:139;;30036:419;;;:::o;30461:::-;30627:4;30665:2;30654:9;30650:18;30642:26;;30714:9;30708:4;30704:20;30700:1;30689:9;30685:17;30678:47;30742:131;30868:4;30742:131;:::i;:::-;30734:139;;30461:419;;;:::o;30886:::-;31052:4;31090:2;31079:9;31075:18;31067:26;;31139:9;31133:4;31129:20;31125:1;31114:9;31110:17;31103:47;31167:131;31293:4;31167:131;:::i;:::-;31159:139;;30886:419;;;:::o;31311:::-;31477:4;31515:2;31504:9;31500:18;31492:26;;31564:9;31558:4;31554:20;31550:1;31539:9;31535:17;31528:47;31592:131;31718:4;31592:131;:::i;:::-;31584:139;;31311:419;;;:::o;31736:::-;31902:4;31940:2;31929:9;31925:18;31917:26;;31989:9;31983:4;31979:20;31975:1;31964:9;31960:17;31953:47;32017:131;32143:4;32017:131;:::i;:::-;32009:139;;31736:419;;;:::o;32161:::-;32327:4;32365:2;32354:9;32350:18;32342:26;;32414:9;32408:4;32404:20;32400:1;32389:9;32385:17;32378:47;32442:131;32568:4;32442:131;:::i;:::-;32434:139;;32161:419;;;:::o;32586:::-;32752:4;32790:2;32779:9;32775:18;32767:26;;32839:9;32833:4;32829:20;32825:1;32814:9;32810:17;32803:47;32867:131;32993:4;32867:131;:::i;:::-;32859:139;;32586:419;;;:::o;33011:::-;33177:4;33215:2;33204:9;33200:18;33192:26;;33264:9;33258:4;33254:20;33250:1;33239:9;33235:17;33228:47;33292:131;33418:4;33292:131;:::i;:::-;33284:139;;33011:419;;;:::o;33436:::-;33602:4;33640:2;33629:9;33625:18;33617:26;;33689:9;33683:4;33679:20;33675:1;33664:9;33660:17;33653:47;33717:131;33843:4;33717:131;:::i;:::-;33709:139;;33436:419;;;:::o;33861:::-;34027:4;34065:2;34054:9;34050:18;34042:26;;34114:9;34108:4;34104:20;34100:1;34089:9;34085:17;34078:47;34142:131;34268:4;34142:131;:::i;:::-;34134:139;;33861:419;;;:::o;34286:::-;34452:4;34490:2;34479:9;34475:18;34467:26;;34539:9;34533:4;34529:20;34525:1;34514:9;34510:17;34503:47;34567:131;34693:4;34567:131;:::i;:::-;34559:139;;34286:419;;;:::o;34711:::-;34877:4;34915:2;34904:9;34900:18;34892:26;;34964:9;34958:4;34954:20;34950:1;34939:9;34935:17;34928:47;34992:131;35118:4;34992:131;:::i;:::-;34984:139;;34711:419;;;:::o;35136:::-;35302:4;35340:2;35329:9;35325:18;35317:26;;35389:9;35383:4;35379:20;35375:1;35364:9;35360:17;35353:47;35417:131;35543:4;35417:131;:::i;:::-;35409:139;;35136:419;;;:::o;35561:::-;35727:4;35765:2;35754:9;35750:18;35742:26;;35814:9;35808:4;35804:20;35800:1;35789:9;35785:17;35778:47;35842:131;35968:4;35842:131;:::i;:::-;35834:139;;35561:419;;;:::o;35986:::-;36152:4;36190:2;36179:9;36175:18;36167:26;;36239:9;36233:4;36229:20;36225:1;36214:9;36210:17;36203:47;36267:131;36393:4;36267:131;:::i;:::-;36259:139;;35986:419;;;:::o;36411:::-;36577:4;36615:2;36604:9;36600:18;36592:26;;36664:9;36658:4;36654:20;36650:1;36639:9;36635:17;36628:47;36692:131;36818:4;36692:131;:::i;:::-;36684:139;;36411:419;;;:::o;36836:::-;37002:4;37040:2;37029:9;37025:18;37017:26;;37089:9;37083:4;37079:20;37075:1;37064:9;37060:17;37053:47;37117:131;37243:4;37117:131;:::i;:::-;37109:139;;36836:419;;;:::o;37261:::-;37427:4;37465:2;37454:9;37450:18;37442:26;;37514:9;37508:4;37504:20;37500:1;37489:9;37485:17;37478:47;37542:131;37668:4;37542:131;:::i;:::-;37534:139;;37261:419;;;:::o;37686:::-;37852:4;37890:2;37879:9;37875:18;37867:26;;37939:9;37933:4;37929:20;37925:1;37914:9;37910:17;37903:47;37967:131;38093:4;37967:131;:::i;:::-;37959:139;;37686:419;;;:::o;38111:::-;38277:4;38315:2;38304:9;38300:18;38292:26;;38364:9;38358:4;38354:20;38350:1;38339:9;38335:17;38328:47;38392:131;38518:4;38392:131;:::i;:::-;38384:139;;38111:419;;;:::o;38536:::-;38702:4;38740:2;38729:9;38725:18;38717:26;;38789:9;38783:4;38779:20;38775:1;38764:9;38760:17;38753:47;38817:131;38943:4;38817:131;:::i;:::-;38809:139;;38536:419;;;:::o;38961:::-;39127:4;39165:2;39154:9;39150:18;39142:26;;39214:9;39208:4;39204:20;39200:1;39189:9;39185:17;39178:47;39242:131;39368:4;39242:131;:::i;:::-;39234:139;;38961:419;;;:::o;39386:::-;39552:4;39590:2;39579:9;39575:18;39567:26;;39639:9;39633:4;39629:20;39625:1;39614:9;39610:17;39603:47;39667:131;39793:4;39667:131;:::i;:::-;39659:139;;39386:419;;;:::o;39811:::-;39977:4;40015:2;40004:9;40000:18;39992:26;;40064:9;40058:4;40054:20;40050:1;40039:9;40035:17;40028:47;40092:131;40218:4;40092:131;:::i;:::-;40084:139;;39811:419;;;:::o;40236:346::-;40391:4;40429:2;40418:9;40414:18;40406:26;;40442:133;40572:1;40561:9;40557:17;40548:6;40442:133;:::i;:::-;40236:346;;;;:::o;40588:222::-;40681:4;40719:2;40708:9;40704:18;40696:26;;40732:71;40800:1;40789:9;40785:17;40776:6;40732:71;:::i;:::-;40588:222;;;;:::o;40816:129::-;40850:6;40877:20;;:::i;:::-;40867:30;;40906:33;40934:4;40926:6;40906:33;:::i;:::-;40816:129;;;:::o;40951:75::-;40984:6;41017:2;41011:9;41001:19;;40951:75;:::o;41032:307::-;41093:4;41183:18;41175:6;41172:30;41169:56;;;41205:18;;:::i;:::-;41169:56;41243:29;41265:6;41243:29;:::i;:::-;41235:37;;41327:4;41321;41317:15;41309:23;;41032:307;;;:::o;41345:98::-;41396:6;41430:5;41424:12;41414:22;;41345:98;;;:::o;41449:99::-;41501:6;41535:5;41529:12;41519:22;;41449:99;;;:::o;41554:168::-;41637:11;41671:6;41666:3;41659:19;41711:4;41706:3;41702:14;41687:29;;41554:168;;;;:::o;41728:147::-;41829:11;41866:3;41851:18;;41728:147;;;;:::o;41881:169::-;41965:11;41999:6;41994:3;41987:19;42039:4;42034:3;42030:14;42015:29;;41881:169;;;;:::o;42056:148::-;42158:11;42195:3;42180:18;;42056:148;;;;:::o;42210:273::-;42250:3;42269:20;42287:1;42269:20;:::i;:::-;42264:25;;42303:20;42321:1;42303:20;:::i;:::-;42298:25;;42425:1;42389:34;42385:42;42382:1;42379:49;42376:75;;;42431:18;;:::i;:::-;42376:75;42475:1;42472;42468:9;42461:16;;42210:273;;;;:::o;42489:305::-;42529:3;42548:20;42566:1;42548:20;:::i;:::-;42543:25;;42582:20;42600:1;42582:20;:::i;:::-;42577:25;;42736:1;42668:66;42664:74;42661:1;42658:81;42655:107;;;42742:18;;:::i;:::-;42655:107;42786:1;42783;42779:9;42772:16;;42489:305;;;;:::o;42800:185::-;42840:1;42857:20;42875:1;42857:20;:::i;:::-;42852:25;;42891:20;42909:1;42891:20;:::i;:::-;42886:25;;42930:1;42920:35;;42935:18;;:::i;:::-;42920:35;42977:1;42974;42970:9;42965:14;;42800:185;;;;:::o;42991:348::-;43031:7;43054:20;43072:1;43054:20;:::i;:::-;43049:25;;43088:20;43106:1;43088:20;:::i;:::-;43083:25;;43276:1;43208:66;43204:74;43201:1;43198:81;43193:1;43186:9;43179:17;43175:105;43172:131;;;43283:18;;:::i;:::-;43172:131;43331:1;43328;43324:9;43313:20;;42991:348;;;;:::o;43345:191::-;43385:4;43405:20;43423:1;43405:20;:::i;:::-;43400:25;;43439:20;43457:1;43439:20;:::i;:::-;43434:25;;43478:1;43475;43472:8;43469:34;;;43483:18;;:::i;:::-;43469:34;43528:1;43525;43521:9;43513:17;;43345:191;;;;:::o;43542:::-;43582:4;43602:20;43620:1;43602:20;:::i;:::-;43597:25;;43636:20;43654:1;43636:20;:::i;:::-;43631:25;;43675:1;43672;43669:8;43666:34;;;43680:18;;:::i;:::-;43666:34;43725:1;43722;43718:9;43710:17;;43542:191;;;;:::o;43739:96::-;43776:7;43805:24;43823:5;43805:24;:::i;:::-;43794:35;;43739:96;;;:::o;43841:90::-;43875:7;43918:5;43911:13;43904:21;43893:32;;43841:90;;;:::o;43937:77::-;43974:7;44003:5;43992:16;;43937:77;;;:::o;44020:149::-;44056:7;44096:66;44089:5;44085:78;44074:89;;44020:149;;;:::o;44175:118::-;44212:7;44252:34;44245:5;44241:46;44230:57;;44175:118;;;:::o;44299:126::-;44336:7;44376:42;44369:5;44365:54;44354:65;;44299:126;;;:::o;44431:77::-;44468:7;44497:5;44486:16;;44431:77;;;:::o;44514:101::-;44550:7;44590:18;44583:5;44579:30;44568:41;;44514:101;;;:::o;44621:86::-;44656:7;44696:4;44689:5;44685:16;44674:27;;44621:86;;;:::o;44713:144::-;44781:9;44814:37;44845:5;44814:37;:::i;:::-;44801:50;;44713:144;;;:::o;44863:126::-;44913:9;44946:37;44977:5;44946:37;:::i;:::-;44933:50;;44863:126;;;:::o;44995:113::-;45045:9;45078:24;45096:5;45078:24;:::i;:::-;45065:37;;44995:113;;;:::o;45114:154::-;45198:6;45193:3;45188;45175:30;45260:1;45251:6;45246:3;45242:16;45235:27;45114:154;;;:::o;45274:307::-;45342:1;45352:113;45366:6;45363:1;45360:13;45352:113;;;45451:1;45446:3;45442:11;45436:18;45432:1;45427:3;45423:11;45416:39;45388:2;45385:1;45381:10;45376:15;;45352:113;;;45483:6;45480:1;45477:13;45474:101;;;45563:1;45554:6;45549:3;45545:16;45538:27;45474:101;45323:258;45274:307;;;:::o;45587:171::-;45626:3;45649:24;45667:5;45649:24;:::i;:::-;45640:33;;45695:4;45688:5;45685:15;45682:41;;;45703:18;;:::i;:::-;45682:41;45750:1;45743:5;45739:13;45732:20;;45587:171;;;:::o;45764:320::-;45808:6;45845:1;45839:4;45835:12;45825:22;;45892:1;45886:4;45882:12;45913:18;45903:81;;45969:4;45961:6;45957:17;45947:27;;45903:81;46031:2;46023:6;46020:14;46000:18;45997:38;45994:84;;;46050:18;;:::i;:::-;45994:84;45815:269;45764:320;;;:::o;46090:281::-;46173:27;46195:4;46173:27;:::i;:::-;46165:6;46161:40;46303:6;46291:10;46288:22;46267:18;46255:10;46252:34;46249:62;46246:88;;;46314:18;;:::i;:::-;46246:88;46354:10;46350:2;46343:22;46133:238;46090:281;;:::o;46377:233::-;46416:3;46439:24;46457:5;46439:24;:::i;:::-;46430:33;;46485:66;46478:5;46475:77;46472:103;;;46555:18;;:::i;:::-;46472:103;46602:1;46595:5;46591:13;46584:20;;46377:233;;;:::o;46616:100::-;46655:7;46684:26;46704:5;46684:26;:::i;:::-;46673:37;;46616:100;;;:::o;46722:79::-;46761:7;46790:5;46779:16;;46722:79;;;:::o;46807:94::-;46846:7;46875:20;46889:5;46875:20;:::i;:::-;46864:31;;46807:94;;;:::o;46907:176::-;46939:1;46956:20;46974:1;46956:20;:::i;:::-;46951:25;;46990:20;47008:1;46990:20;:::i;:::-;46985:25;;47029:1;47019:35;;47034:18;;:::i;:::-;47019:35;47075:1;47072;47068:9;47063:14;;46907:176;;;;:::o;47089:180::-;47137:77;47134:1;47127:88;47234:4;47231:1;47224:15;47258:4;47255:1;47248:15;47275:180;47323:77;47320:1;47313:88;47420:4;47417:1;47410:15;47444:4;47441:1;47434:15;47461:180;47509:77;47506:1;47499:88;47606:4;47603:1;47596:15;47630:4;47627:1;47620:15;47647:180;47695:77;47692:1;47685:88;47792:4;47789:1;47782:15;47816:4;47813:1;47806:15;47833:180;47881:77;47878:1;47871:88;47978:4;47975:1;47968:15;48002:4;47999:1;47992:15;48019:117;48128:1;48125;48118:12;48142:117;48251:1;48248;48241:12;48265:117;48374:1;48371;48364:12;48388:117;48497:1;48494;48487:12;48511:117;48620:1;48617;48610:12;48634:117;48743:1;48740;48733:12;48757:102;48798:6;48849:2;48845:7;48840:2;48833:5;48829:14;48825:28;48815:38;;48757:102;;;:::o;48865:94::-;48898:8;48946:5;48942:2;48938:14;48917:35;;48865:94;;;:::o;48965:221::-;49105:34;49101:1;49093:6;49089:14;49082:58;49174:4;49169:2;49161:6;49157:15;49150:29;48965:221;:::o;49192:214::-;49332:66;49328:1;49320:6;49316:14;49309:90;49192:214;:::o;49412:171::-;49552:23;49548:1;49540:6;49536:14;49529:47;49412:171;:::o;49589:225::-;49729:34;49725:1;49717:6;49713:14;49706:58;49798:8;49793:2;49785:6;49781:15;49774:33;49589:225;:::o;49820:172::-;49960:24;49956:1;49948:6;49944:14;49937:48;49820:172;:::o;49998:229::-;50138:34;50134:1;50126:6;50122:14;50115:58;50207:12;50202:2;50194:6;50190:15;50183:37;49998:229;:::o;50233:222::-;50373:34;50369:1;50361:6;50357:14;50350:58;50442:5;50437:2;50429:6;50425:15;50418:30;50233:222;:::o;50461:224::-;50601:34;50597:1;50589:6;50585:14;50578:58;50670:7;50665:2;50657:6;50653:15;50646:32;50461:224;:::o;50691:236::-;50831:34;50827:1;50819:6;50815:14;50808:58;50900:19;50895:2;50887:6;50883:15;50876:44;50691:236;:::o;50933:244::-;51073:34;51069:1;51061:6;51057:14;51050:58;51142:27;51137:2;51129:6;51125:15;51118:52;50933:244;:::o;51183:174::-;51323:26;51319:1;51311:6;51307:14;51300:50;51183:174;:::o;51363:230::-;51503:34;51499:1;51491:6;51487:14;51480:58;51572:13;51567:2;51559:6;51555:15;51548:38;51363:230;:::o;51599:225::-;51739:34;51735:1;51727:6;51723:14;51716:58;51808:8;51803:2;51795:6;51791:15;51784:33;51599:225;:::o;51830:182::-;51970:34;51966:1;51958:6;51954:14;51947:58;51830:182;:::o;52018:234::-;52158:34;52154:1;52146:6;52142:14;52135:58;52227:17;52222:2;52214:6;52210:15;52203:42;52018:234;:::o;52258:176::-;52398:28;52394:1;52386:6;52382:14;52375:52;52258:176;:::o;52440:237::-;52580:34;52576:1;52568:6;52564:14;52557:58;52649:20;52644:2;52636:6;52632:15;52625:45;52440:237;:::o;52683:163::-;52823:15;52819:1;52811:6;52807:14;52800:39;52683:163;:::o;52852:221::-;52992:34;52988:1;52980:6;52976:14;52969:58;53061:4;53056:2;53048:6;53044:15;53037:29;52852:221;:::o;53079:114::-;;:::o;53199:166::-;53339:18;53335:1;53327:6;53323:14;53316:42;53199:166;:::o;53371:158::-;53511:10;53507:1;53499:6;53495:14;53488:34;53371:158;:::o;53535:238::-;53675:34;53671:1;53663:6;53659:14;53652:58;53744:21;53739:2;53731:6;53727:15;53720:46;53535:238;:::o;53779:179::-;53919:31;53915:1;53907:6;53903:14;53896:55;53779:179;:::o;53964:220::-;54104:34;54100:1;54092:6;54088:14;54081:58;54173:3;54168:2;54160:6;54156:15;54149:28;53964:220;:::o;54190:164::-;54330:16;54326:1;54318:6;54314:14;54307:40;54190:164;:::o;54360:233::-;54500:34;54496:1;54488:6;54484:14;54477:58;54569:16;54564:2;54556:6;54552:15;54545:41;54360:233;:::o;54599:225::-;54739:34;54735:1;54727:6;54723:14;54716:58;54808:8;54803:2;54795:6;54791:15;54784:33;54599:225;:::o;54830:181::-;54970:33;54966:1;54958:6;54954:14;54947:57;54830:181;:::o;55017:234::-;55157:34;55153:1;55145:6;55141:14;55134:58;55226:17;55221:2;55213:6;55209:15;55202:42;55017:234;:::o;55257:232::-;55397:34;55393:1;55385:6;55381:14;55374:58;55466:15;55461:2;55453:6;55449:15;55442:40;55257:232;:::o;55495:221::-;55635:34;55631:1;55623:6;55619:14;55612:58;55704:4;55699:2;55691:6;55687:15;55680:29;55495:221;:::o;55722:122::-;55795:24;55813:5;55795:24;:::i;:::-;55788:5;55785:35;55775:63;;55834:1;55831;55824:12;55775:63;55722:122;:::o;55850:116::-;55920:21;55935:5;55920:21;:::i;:::-;55913:5;55910:32;55900:60;;55956:1;55953;55946:12;55900:60;55850:116;:::o;55972:122::-;56045:24;56063:5;56045:24;:::i;:::-;56038:5;56035:35;56025:63;;56084:1;56081;56074:12;56025:63;55972:122;:::o;56100:120::-;56172:23;56189:5;56172:23;:::i;:::-;56165:5;56162:34;56152:62;;56210:1;56207;56200:12;56152:62;56100:120;:::o;56226:122::-;56299:24;56317:5;56299:24;:::i;:::-;56292:5;56289:35;56279:63;;56338:1;56335;56328:12;56279:63;56226:122;:::o;56354:118::-;56425:22;56441:5;56425:22;:::i;:::-;56418:5;56415:33;56405:61;;56462:1;56459;56452:12;56405:61;56354:118;:::o

Swarm Source

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