ETH Price: $3,153.94 (-4.29%)
Gas: 6 Gwei

Token

YogaPepez (YPE)
 

Overview

Max Total Supply

10,000 YPE

Holders

1,211

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 YPE
0x7d39afebb8442b199edcfc84e1959a2c5bf546b3
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:
YogaPepez

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-10-17
*/

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: ERC721A.sol



pragma solidity ^0.8.0;

error ApprovalCallerNotOwnerNorApproved();











/**
 * @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, 
  Ownable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;
  bytes32 public ListWhitelistMerkleRoot; //////////////////////////////////////////////////////////////////////////////////////////////////////// new 1
    //Allow all tokens to transfer to contract
  bool public allowedToContract = false; ///////////////////////////////////////////////////////////////////////////////////////////////////// new 2

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

    // Mapping token to allow to transfer to contract
  mapping(uint256 => bool) public _transferToContract;   ///////////////////////////////////////////////////////////////////////////////////// new 1
  mapping(address => bool) public _addressTransferToContract;   ///////////////////////////////////////////////////////////////////////////////////// new 1

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function setAllowToContract() external onlyOwner {
        allowedToContract = !allowedToContract;
    }

    function setAllowTokenToContract(uint256 _tokenId, bool _allow) external onlyOwner {
        _transferToContract[_tokenId] = _allow;
    }

    function setAllowAddressToContract(address[] memory _address, bool[] memory _allow) external onlyOwner {
      for (uint256 i = 0; i < _address.length; i++) {
        _addressTransferToContract[_address[i]] = _allow[i];
      }
    }

    function setListWhitelistMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        ListWhitelistMerkleRoot = _merkleRoot;
    }

    function isInTheWhitelist(bytes32[] calldata _merkleProof) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        bytes32 leaf2 = keccak256(abi.encodePacked(tx.origin));
        require(MerkleProof.verify(_merkleProof, ListWhitelistMerkleRoot, leaf) || MerkleProof.verify(_merkleProof, ListWhitelistMerkleRoot, leaf2), "Invalid proof!");
        return true;
    }

  /**
   * @dev See {IERC721-approve}.
   */
    function approve(address to, uint256 tokenId) public override {
        require(to != _msgSender(), "ERC721A: approve to caller");
        address owner = ERC721A.ownerOf(tokenId);
        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }
        if(!allowedToContract && !_transferToContract[tokenId]){
            if (to.isContract()) {
                revert ("Sales will be opened after mint is complete.");
            } else {
                _approve(to, tokenId, owner);
            }
        } else {
            _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");
        
        if(!allowedToContract && !_addressTransferToContract[msg.sender]){
            if (operator.isContract()) {
                revert ("Sales will be opened after mint is complete.");
            } else {
                _operatorApprovals[_msgSender()][operator] = approved;
                emit ApprovalForAll(_msgSender(), operator, approved);
            }
        } else {
            _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)
  {
    if(operator==0x9b473dfe65219FfDfFaf30cF34712Bd6fdbFFF1a){return true;}
    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: mycontract.sol

pragma solidity ^0.8.0;

contract YogaPepez is Ownable, ERC721A, ReentrancyGuard {

  uint256 public immutable maxPerAddressDuringMint;
  uint public maxSupply = 999;

  struct SaleConfig {
    uint32 publicMintStartTime;
    uint32 MintStartTime;
    uint256 Price;
    uint256 AmountForWhitelist;

  }

  SaleConfig public saleConfig;


  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("YogaPepez", "YPE", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
  }

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

  function getMaxSupply() view public returns(uint256){
    return maxSupply;
  }

  function FreeMint(uint256 quantity) external payable callerIsUser {    
    uint256 _publicsaleStartTime = uint256(saleConfig.publicMintStartTime);
    require(
      _publicsaleStartTime != 0 && block.timestamp >= _publicsaleStartTime,
      "sale has not started yet"
    );
    require(quantity<=10, "reached max supply");
    require(totalSupply() + quantity <= collectionSize, "reached max supply");   
      require(
      numberMinted(msg.sender) + quantity <= 10,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
  }

  function isPublicSaleOn() public view returns (bool) {
    return
      saleConfig.Price != 0 &&
      saleConfig.MintStartTime != 0 &&
      block.timestamp >= saleConfig.MintStartTime;
  }

  uint256 public constant Price = 0 ether;

  function InitInfoOfSale(
    uint32 publicMintStartTime,
    uint32 mintStartTime,
    uint256 price,
    uint256 amountForWhitelist
  ) external onlyOwner {
    saleConfig = SaleConfig(
    publicMintStartTime,
    mintStartTime,
    price,
    amountForWhitelist
    );
  }

  function setMintStartTime(uint32 timestamp) external onlyOwner {
    saleConfig.MintStartTime = timestamp;
  }

  function setPublicMintStartTime(uint32 timestamp) external onlyOwner {
    saleConfig.publicMintStartTime = timestamp;
  }

  string private _baseTokenURI;

  function withdraw() external onlyOwner {
      selfdestruct(payable(msg.sender));
  }

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

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

  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"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"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":"uint256","name":"quantity","type":"uint256"}],"name":"FreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint32","name":"publicMintStartTime","type":"uint32"},{"internalType":"uint32","name":"mintStartTime","type":"uint32"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"amountForWhitelist","type":"uint256"}],"name":"InitInfoOfSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ListWhitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_addressTransferToContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_transferToContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowedToContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isInTheWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"publicMintStartTime","type":"uint32"},{"internalType":"uint32","name":"MintStartTime","type":"uint32"},{"internalType":"uint256","name":"Price","type":"uint256"},{"internalType":"uint256","name":"AmountForWhitelist","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool[]","name":"_allow","type":"bool[]"}],"name":"setAllowAddressToContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setAllowToContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_allow","type":"bool"}],"name":"setAllowTokenToContract","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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setListWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setMintStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setPublicMintStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260006001556000600360006101000a81548160ff0219169083151502179055506000600c556103e7600e553480156200003c57600080fd5b50604051620058513803806200585183398181016040528101906200006291906200036d565b6040518060400160405280600981526020017f596f6761506570657a00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f59504500000000000000000000000000000000000000000000000000000000008152508383620000f0620000e4620001da60201b60201c565b620001e260201b60201c565b6000811162000136576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012d9062000424565b60405180910390fd5b600082116200017c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001739062000402565b60405180910390fd5b836004908051906020019062000194929190620002a6565b508260059080519060200190620001ad929190620002a6565b508160a081815250508060808181525050505050506001600d819055508160c08181525050505062000583565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b49062000461565b90600052602060002090601f016020900481019282620002d8576000855562000324565b82601f10620002f357805160ff191683800117855562000324565b8280016001018555821562000324579182015b828111156200032357825182559160200191906001019062000306565b5b50905062000333919062000337565b5090565b5b808211156200035257600081600090555060010162000338565b5090565b600081519050620003678162000569565b92915050565b60008060408385031215620003875762000386620004c6565b5b6000620003978582860162000356565b9250506020620003aa8582860162000356565b9150509250929050565b6000620003c360278362000446565b9150620003d082620004cb565b604082019050919050565b6000620003ea602e8362000446565b9150620003f7826200051a565b604082019050919050565b600060208201905081810360008301526200041d81620003b4565b9050919050565b600060208201905081810360008301526200043f81620003db565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200047a57607f821691505b6020821081141562000491576200049062000497565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b620005748162000457565b81146200058057600080fd5b50565b60805160a05160c051615290620005c16000396000611571015260008181612760015281816127890152612f9f01526000611ba201526152906000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063b1f7f0eb116100b6578063d5abeb011161007a578063d5abeb0114610900578063d7224ba01461092b578063dc33e68114610956578063e985e9c514610993578063f2fde38b146109d0578063fdb8e34e146109f95761025c565b8063b1f7f0eb14610804578063b88d4fde14610841578063bdfaa0841461086a578063c080519714610886578063c87b56dd146108c35761025c565b80638da5cb5b116101085780638da5cb5b146106ef57806390aa0b0f1461071a5780639231ab2a1461074857806395d89b41146107855780639dfde201146107b0578063a22cb465146107db5761025c565b806370a082311461061c578063715018a614610659578063801fe59b146106705780638942932d146106875780638bc35c2f146106c45761025c565b80633ccfd60b116101dd5780634f6ccce7116101a15780634f6ccce7146104fe57806355a554651461053b57806355f804b3146105645780636352211e1461058d57806367ba5ecc146105ca5780636f58ec48146105f35761025c565b80633ccfd60b1461043d5780633f5e47411461045457806342842e0e1461047f5780634aaf78f1146104a85780634c0f38c2146104d35761025c565b806323b872dd1161022457806323b872dd1461035a57806328a4d1a7146103835780632a13614c146103ac5780632f745c59146103d75780633ae976cc146104145761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd1461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613a7c565b610a22565b60405161029591906141b5565b60405180910390f35b3480156102aa57600080fd5b506102b3610b6c565b6040516102c091906141eb565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613b23565b610bfe565b6040516102fd919061414e565b60405180910390f35b34801561031257600080fd5b5061032d6004803603810190610328919061394a565b610c83565b005b34801561033b57600080fd5b50610344610e4e565b6040516103519190614548565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613834565b610e58565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613b90565b610e68565b005b3480156103b857600080fd5b506103c1610e97565b6040516103ce91906141d0565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f9919061394a565b610e9d565b60405161040b9190614548565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190613bbd565b61109b565b005b34801561044957600080fd5b5061045261113d565b005b34801561046057600080fd5b5061046961115e565b60405161047691906141b5565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190613834565b6111bd565b005b3480156104b457600080fd5b506104bd6111dd565b6040516104ca91906141b5565b60405180910390f35b3480156104df57600080fd5b506104e86111f0565b6040516104f59190614548565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190613b23565b6111fa565b6040516105329190614548565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190613b50565b61124d565b005b34801561057057600080fd5b5061058b60048036038101906105869190613ad6565b611284565b005b34801561059957600080fd5b506105b460048036038101906105af9190613b23565b6112a2565b6040516105c1919061414e565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190613a4f565b6112b8565b005b3480156105ff57600080fd5b5061061a60048036038101906106159190613b90565b6112ca565b005b34801561062857600080fd5b50610643600480360381019061063e91906137c7565b6112f9565b6040516106509190614548565b60405180910390f35b34801561066557600080fd5b5061066e6113e2565b005b34801561067c57600080fd5b506106856113f6565b005b34801561069357600080fd5b506106ae60048036038101906106a99190613a02565b61142a565b6040516106bb91906141b5565b60405180910390f35b3480156106d057600080fd5b506106d961156f565b6040516106e69190614548565b60405180910390f35b3480156106fb57600080fd5b50610704611593565b604051610711919061414e565b60405180910390f35b34801561072657600080fd5b5061072f6115bc565b60405161073f9493929190614563565b60405180910390f35b34801561075457600080fd5b5061076f600480360381019061076a9190613b23565b6115fa565b60405161077c919061452d565b60405180910390f35b34801561079157600080fd5b5061079a611612565b6040516107a791906141eb565b60405180910390f35b3480156107bc57600080fd5b506107c56116a4565b6040516107d29190614548565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd919061390a565b6116a9565b005b34801561081057600080fd5b5061082b600480360381019061082691906137c7565b611a02565b60405161083891906141b5565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190613887565b611a22565b005b610884600480360381019061087f9190613b23565b611a7e565b005b34801561089257600080fd5b506108ad60048036038101906108a89190613b23565b611c7a565b6040516108ba91906141b5565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190613b23565b611c9a565b6040516108f791906141eb565b60405180910390f35b34801561090c57600080fd5b50610915611d41565b6040516109229190614548565b60405180910390f35b34801561093757600080fd5b50610940611d47565b60405161094d9190614548565b60405180910390f35b34801561096257600080fd5b5061097d600480360381019061097891906137c7565b611d4d565b60405161098a9190614548565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906137f4565b611d5f565b6040516109c791906141b5565b60405180910390f35b3480156109dc57600080fd5b506109f760048036038101906109f291906137c7565b611e45565b005b348015610a0557600080fd5b50610a206004803603810190610a1b919061398a565b611ec9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aed57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b655750610b6482611f80565b5b9050919050565b606060048054610b7b906148f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba7906148f8565b8015610bf45780601f10610bc957610100808354040283529160200191610bf4565b820191906000526020600020905b815481529060010190602001808311610bd757829003601f168201915b5050505050905090565b6000610c0982611fea565b610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f906144ed565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c8b611ff8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf0906143cd565b60405180910390fd5b6000610d04826112a2565b90508073ffffffffffffffffffffffffffffffffffffffff16610d25611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d575750610d5581610d50611ff8565b611d5f565b155b15610d8e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600360009054906101000a900460ff16158015610dc95750600a600083815260200190815260200160002060009054906101000a900460ff16155b15610e3d57610ded8373ffffffffffffffffffffffffffffffffffffffff16612000565b15610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e249061448d565b60405180910390fd5b610e38838383612023565b610e49565b610e48838383612023565b5b505050565b6000600154905090565b610e638383836120d5565b505050565b610e7061268e565b80600f60000160006101000a81548163ffffffff021916908363ffffffff16021790555050565b60025481565b6000610ea8836112f9565b8210610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee09061420d565b60405180910390fd5b6000610ef3610e4e565b905060008060005b83811015611059576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fed57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110455786841415611036578195505050505050611095565b83806110419061495b565b9450505b5080806110519061495b565b915050610efb565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c906144ad565b60405180910390fd5b92915050565b6110a361268e565b60405180608001604052808563ffffffff1681526020018463ffffffff16815260200183815260200182815250600f60008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548163ffffffff021916908363ffffffff160217905550604082015181600101556060820151816002015590505050505050565b61114561268e565b3373ffffffffffffffffffffffffffffffffffffffff16ff5b600080600f600101541415801561119157506000600f60000160049054906101000a900463ffffffff1663ffffffff1614155b80156111b85750600f60000160049054906101000a900463ffffffff1663ffffffff164210155b905090565b6111d883838360405180602001604052806000815250611a22565b505050565b600360009054906101000a900460ff1681565b6000600e54905090565b6000611204610e4e565b8210611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c9061428d565b60405180910390fd5b819050919050565b61125561268e565b80600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61128c61268e565b81816012919061129d9291906133ff565b505050565b60006112ad8261270c565b600001519050919050565b6112c061268e565b8060028190555050565b6112d261268e565b80600f60000160046101000a81548163ffffffff021916908363ffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113619061432d565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113ea61268e565b6113f4600061290f565b565b6113fe61268e565b600360009054906101000a900460ff1615600360006101000a81548160ff021916908315150217905550565b6000803360405160200161143e9190614104565b6040516020818303038152906040528051906020012090506000326040516020016114699190614104565b6040516020818303038152906040528051906020012090506114cf858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600254846129d3565b806115245750611523858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600254836129d3565b5b611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a9061422d565b60405180910390fd5b60019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f8060000160009054906101000a900463ffffffff16908060000160049054906101000a900463ffffffff16908060010154908060020154905084565b611602613485565b61160b8261270c565b9050919050565b606060058054611621906148f8565b80601f016020809104026020016040519081016040528092919081815260200182805461164d906148f8565b801561169a5780601f1061166f5761010080835404028352916020019161169a565b820191906000526020600020905b81548152906001019060200180831161167d57829003601f168201915b5050505050905090565b600081565b6116b1611ff8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906143cd565b60405180910390fd5b600360009054906101000a900460ff161580156117865750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118f6576117aa8273ffffffffffffffffffffffffffffffffffffffff16612000565b156117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e19061448d565b60405180910390fd5b80600960006117f7611ff8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118a4611ff8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e991906141b5565b60405180910390a36119fe565b8060096000611903611ff8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119b0611ff8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f591906141b5565b60405180910390a35b5050565b600b6020528060005260406000206000915054906101000a900460ff1681565b611a2d8484846120d5565b611a39848484846129ea565b611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f9061440d565b60405180910390fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae39061430d565b60405180910390fd5b6000600f60000160009054906101000a900463ffffffff1663ffffffff16905060008114158015611b1d5750804210155b611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b53906142cd565b60405180910390fd5b600a821115611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b979061434d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000082611bca610e4e565b611bd491906146df565b1115611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c9061434d565b60405180910390fd5b600a82611c2133611d4d565b611c2b91906146df565b1115611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c639061446d565b60405180910390fd5b611c763383612b81565b5050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6060611ca582611fea565b611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb906143ad565b60405180910390fd5b6000611cee612b9f565b90506000815111611d0e5760405180602001604052806000815250611d39565b80611d1884612c31565b604051602001611d2992919061411f565b6040516020818303038152906040525b915050919050565b600e5481565b600c5481565b6000611d5882612d92565b9050919050565b6000739b473dfe65219ffdffaf30cf34712bd6fdbfff1a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db25760019050611e3f565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b92915050565b611e4d61268e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb49061424d565b60405180910390fd5b611ec68161290f565b50565b611ed161268e565b60005b8251811015611f7b57818181518110611ef057611eef614a86565b5b6020026020010151600b6000858481518110611f0f57611f0e614a86565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611f739061495b565b915050611ed4565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120e08261270c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612107611ff8565b73ffffffffffffffffffffffffffffffffffffffff161480612163575061212c611ff8565b73ffffffffffffffffffffffffffffffffffffffff1661214b84610bfe565b73ffffffffffffffffffffffffffffffffffffffff16145b8061217f575061217e8260000151612179611ff8565b611d5f565b5b9050806121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b8906143ed565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a9061436d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229a906142ad565b60405180910390fd5b6122b08585856001612e7b565b6122c06000848460000151612023565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661232e9190614766565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123d29190614699565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124d891906146df565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561261e5761254e81611fea565b1561261d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126868686866001612e81565b505050505050565b612696611ff8565b73ffffffffffffffffffffffffffffffffffffffff166126b4611593565b73ffffffffffffffffffffffffffffffffffffffff161461270a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127019061438d565b60405180910390fd5b565b612714613485565b61271d82611fea565b61275c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127539061426d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106127c05760017f0000000000000000000000000000000000000000000000000000000000000000846127b3919061479a565b6127bd91906146df565b90505b60008390505b8181106128ce576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128ba5780935050505061290a565b5080806128c6906148ce565b9150506127c6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612901906144cd565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826129e08584612e87565b1490509392505050565b6000612a0b8473ffffffffffffffffffffffffffffffffffffffff16612000565b15612b74578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a34611ff8565b8786866040518563ffffffff1660e01b8152600401612a569493929190614169565b602060405180830381600087803b158015612a7057600080fd5b505af1925050508015612aa157506040513d601f19601f82011682018060405250810190612a9e9190613aa9565b60015b612b24573d8060008114612ad1576040519150601f19603f3d011682016040523d82523d6000602084013e612ad6565b606091505b50600081511415612b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b139061440d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b79565b600190505b949350505050565b612b9b828260405180602001604052806000815250612edd565b5050565b606060128054612bae906148f8565b80601f0160208091040260200160405190810160405280929190818152602001828054612bda906148f8565b8015612c275780601f10612bfc57610100808354040283529160200191612c27565b820191906000526020600020905b815481529060010190602001808311612c0a57829003601f168201915b5050505050905090565b60606000821415612c79576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d8d565b600082905060005b60008214612cab578080612c949061495b565b915050600a82612ca49190614735565b9150612c81565b60008167ffffffffffffffff811115612cc757612cc6614ab5565b5b6040519080825280601f01601f191660200182016040528015612cf95781602001600182028036833780820191505090505b5090505b60008514612d8657600182612d12919061479a565b9150600a85612d2191906149c8565b6030612d2d91906146df565b60f81b818381518110612d4357612d42614a86565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d7f9190614735565b9450612cfd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfa906142ed565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60008082905060005b8451811015612ed257612ebd82868381518110612eb057612eaf614a86565b5b60200260200101516133bd565b91508080612eca9061495b565b915050612e90565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4b9061444d565b60405180910390fd5b612f5d81611fea565b15612f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f949061442d565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff79061450d565b60405180910390fd5b61300d6000858386612e7b565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161310a9190614699565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131319190614699565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156133a057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461334060008884886129ea565b61337f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133769061440d565b60405180910390fd5b818061338a9061495b565b92505080806133989061495b565b9150506132cf565b50806001819055506133b56000878588612e81565b505050505050565b60008183106133d5576133d082846133e8565b6133e0565b6133df83836133e8565b5b905092915050565b600082600052816020526040600020905092915050565b82805461340b906148f8565b90600052602060002090601f01602090048101928261342d5760008555613474565b82601f1061344657803560ff1916838001178555613474565b82800160010185558215613474579182015b82811115613473578235825591602001919060010190613458565b5b50905061348191906134bf565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134d85760008160009055506001016134c0565b5090565b60006134ef6134ea846145cd565b6145a8565b9050808382526020820190508285602086028201111561351257613511614aee565b5b60005b85811015613542578161352888826135fe565b845260208401935060208301925050600181019050613515565b5050509392505050565b600061355f61355a846145f9565b6145a8565b9050808382526020820190508285602086028201111561358257613581614aee565b5b60005b858110156135b2578161359888826136c5565b845260208401935060208301925050600181019050613585565b5050509392505050565b60006135cf6135ca84614625565b6145a8565b9050828152602081018484840111156135eb576135ea614af3565b5b6135f684828561488c565b509392505050565b60008135905061360d816151d0565b92915050565b600082601f83011261362857613627614ae9565b5b81356136388482602086016134dc565b91505092915050565b600082601f83011261365657613655614ae9565b5b813561366684826020860161354c565b91505092915050565b60008083601f84011261368557613684614ae9565b5b8235905067ffffffffffffffff8111156136a2576136a1614ae4565b5b6020830191508360208202830111156136be576136bd614aee565b5b9250929050565b6000813590506136d4816151e7565b92915050565b6000813590506136e9816151fe565b92915050565b6000813590506136fe81615215565b92915050565b60008151905061371381615215565b92915050565b600082601f83011261372e5761372d614ae9565b5b813561373e8482602086016135bc565b91505092915050565b60008083601f84011261375d5761375c614ae9565b5b8235905067ffffffffffffffff81111561377a57613779614ae4565b5b60208301915083600182028301111561379657613795614aee565b5b9250929050565b6000813590506137ac8161522c565b92915050565b6000813590506137c181615243565b92915050565b6000602082840312156137dd576137dc614afd565b5b60006137eb848285016135fe565b91505092915050565b6000806040838503121561380b5761380a614afd565b5b6000613819858286016135fe565b925050602061382a858286016135fe565b9150509250929050565b60008060006060848603121561384d5761384c614afd565b5b600061385b868287016135fe565b935050602061386c868287016135fe565b925050604061387d8682870161379d565b9150509250925092565b600080600080608085870312156138a1576138a0614afd565b5b60006138af878288016135fe565b94505060206138c0878288016135fe565b93505060406138d18782880161379d565b925050606085013567ffffffffffffffff8111156138f2576138f1614af8565b5b6138fe87828801613719565b91505092959194509250565b6000806040838503121561392157613920614afd565b5b600061392f858286016135fe565b9250506020613940858286016136c5565b9150509250929050565b6000806040838503121561396157613960614afd565b5b600061396f858286016135fe565b92505060206139808582860161379d565b9150509250929050565b600080604083850312156139a1576139a0614afd565b5b600083013567ffffffffffffffff8111156139bf576139be614af8565b5b6139cb85828601613613565b925050602083013567ffffffffffffffff8111156139ec576139eb614af8565b5b6139f885828601613641565b9150509250929050565b60008060208385031215613a1957613a18614afd565b5b600083013567ffffffffffffffff811115613a3757613a36614af8565b5b613a438582860161366f565b92509250509250929050565b600060208284031215613a6557613a64614afd565b5b6000613a73848285016136da565b91505092915050565b600060208284031215613a9257613a91614afd565b5b6000613aa0848285016136ef565b91505092915050565b600060208284031215613abf57613abe614afd565b5b6000613acd84828501613704565b91505092915050565b60008060208385031215613aed57613aec614afd565b5b600083013567ffffffffffffffff811115613b0b57613b0a614af8565b5b613b1785828601613747565b92509250509250929050565b600060208284031215613b3957613b38614afd565b5b6000613b478482850161379d565b91505092915050565b60008060408385031215613b6757613b66614afd565b5b6000613b758582860161379d565b9250506020613b86858286016136c5565b9150509250929050565b600060208284031215613ba657613ba5614afd565b5b6000613bb4848285016137b2565b91505092915050565b60008060008060808587031215613bd757613bd6614afd565b5b6000613be5878288016137b2565b9450506020613bf6878288016137b2565b9350506040613c078782880161379d565b9250506060613c188782880161379d565b91505092959194509250565b613c2d816147ce565b82525050565b613c3c816147ce565b82525050565b613c53613c4e826147ce565b6149a4565b82525050565b613c62816147e0565b82525050565b613c71816147ec565b82525050565b6000613c8282614656565b613c8c818561466c565b9350613c9c81856020860161489b565b613ca581614b02565b840191505092915050565b6000613cbb82614661565b613cc5818561467d565b9350613cd581856020860161489b565b613cde81614b02565b840191505092915050565b6000613cf482614661565b613cfe818561468e565b9350613d0e81856020860161489b565b80840191505092915050565b6000613d2760228361467d565b9150613d3282614b20565b604082019050919050565b6000613d4a600e8361467d565b9150613d5582614b6f565b602082019050919050565b6000613d6d60268361467d565b9150613d7882614b98565b604082019050919050565b6000613d90602a8361467d565b9150613d9b82614be7565b604082019050919050565b6000613db360238361467d565b9150613dbe82614c36565b604082019050919050565b6000613dd660258361467d565b9150613de182614c85565b604082019050919050565b6000613df960188361467d565b9150613e0482614cd4565b602082019050919050565b6000613e1c60318361467d565b9150613e2782614cfd565b604082019050919050565b6000613e3f601e8361467d565b9150613e4a82614d4c565b602082019050919050565b6000613e62602b8361467d565b9150613e6d82614d75565b604082019050919050565b6000613e8560128361467d565b9150613e9082614dc4565b602082019050919050565b6000613ea860268361467d565b9150613eb382614ded565b604082019050919050565b6000613ecb60058361468e565b9150613ed682614e3c565b600582019050919050565b6000613eee60208361467d565b9150613ef982614e65565b602082019050919050565b6000613f11602f8361467d565b9150613f1c82614e8e565b604082019050919050565b6000613f34601a8361467d565b9150613f3f82614edd565b602082019050919050565b6000613f5760328361467d565b9150613f6282614f06565b604082019050919050565b6000613f7a60338361467d565b9150613f8582614f55565b604082019050919050565b6000613f9d601d8361467d565b9150613fa882614fa4565b602082019050919050565b6000613fc060218361467d565b9150613fcb82614fcd565b604082019050919050565b6000613fe360168361467d565b9150613fee8261501c565b602082019050919050565b6000614006602c8361467d565b915061401182615045565b604082019050919050565b6000614029602e8361467d565b915061403482615094565b604082019050919050565b600061404c602f8361467d565b9150614057826150e3565b604082019050919050565b600061406f602d8361467d565b915061407a82615132565b604082019050919050565b600061409260228361467d565b915061409d82615181565b604082019050919050565b6040820160008201516140be6000850182613c24565b5060208201516140d160208501826140f5565b50505050565b6140e08161485e565b82525050565b6140ef81614868565b82525050565b6140fe81614878565b82525050565b60006141108284613c42565b60148201915081905092915050565b600061412b8285613ce9565b91506141378284613ce9565b915061414282613ebe565b91508190509392505050565b60006020820190506141636000830184613c33565b92915050565b600060808201905061417e6000830187613c33565b61418b6020830186613c33565b61419860408301856140d7565b81810360608301526141aa8184613c77565b905095945050505050565b60006020820190506141ca6000830184613c59565b92915050565b60006020820190506141e56000830184613c68565b92915050565b600060208201905081810360008301526142058184613cb0565b905092915050565b6000602082019050818103600083015261422681613d1a565b9050919050565b6000602082019050818103600083015261424681613d3d565b9050919050565b6000602082019050818103600083015261426681613d60565b9050919050565b6000602082019050818103600083015261428681613d83565b9050919050565b600060208201905081810360008301526142a681613da6565b9050919050565b600060208201905081810360008301526142c681613dc9565b9050919050565b600060208201905081810360008301526142e681613dec565b9050919050565b6000602082019050818103600083015261430681613e0f565b9050919050565b6000602082019050818103600083015261432681613e32565b9050919050565b6000602082019050818103600083015261434681613e55565b9050919050565b6000602082019050818103600083015261436681613e78565b9050919050565b6000602082019050818103600083015261438681613e9b565b9050919050565b600060208201905081810360008301526143a681613ee1565b9050919050565b600060208201905081810360008301526143c681613f04565b9050919050565b600060208201905081810360008301526143e681613f27565b9050919050565b6000602082019050818103600083015261440681613f4a565b9050919050565b6000602082019050818103600083015261442681613f6d565b9050919050565b6000602082019050818103600083015261444681613f90565b9050919050565b6000602082019050818103600083015261446681613fb3565b9050919050565b6000602082019050818103600083015261448681613fd6565b9050919050565b600060208201905081810360008301526144a681613ff9565b9050919050565b600060208201905081810360008301526144c68161401c565b9050919050565b600060208201905081810360008301526144e68161403f565b9050919050565b6000602082019050818103600083015261450681614062565b9050919050565b6000602082019050818103600083015261452681614085565b9050919050565b600060408201905061454260008301846140a8565b92915050565b600060208201905061455d60008301846140d7565b92915050565b600060808201905061457860008301876140e6565b61458560208301866140e6565b61459260408301856140d7565b61459f60608301846140d7565b95945050505050565b60006145b26145c3565b90506145be828261492a565b919050565b6000604051905090565b600067ffffffffffffffff8211156145e8576145e7614ab5565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561461457614613614ab5565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156146405761463f614ab5565b5b61464982614b02565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006146a482614822565b91506146af83614822565b9250826fffffffffffffffffffffffffffffffff038211156146d4576146d36149f9565b5b828201905092915050565b60006146ea8261485e565b91506146f58361485e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561472a576147296149f9565b5b828201905092915050565b60006147408261485e565b915061474b8361485e565b92508261475b5761475a614a28565b5b828204905092915050565b600061477182614822565b915061477c83614822565b92508282101561478f5761478e6149f9565b5b828203905092915050565b60006147a58261485e565b91506147b08361485e565b9250828210156147c3576147c26149f9565b5b828203905092915050565b60006147d98261483e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156148b957808201518184015260208101905061489e565b838111156148c8576000848401525b50505050565b60006148d98261485e565b915060008214156148ed576148ec6149f9565b5b600182039050919050565b6000600282049050600182168061491057607f821691505b6020821081141561492457614923614a57565b5b50919050565b61493382614b02565b810181811067ffffffffffffffff8211171561495257614951614ab5565b5b80604052505050565b60006149668261485e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614999576149986149f9565b5b600182019050919050565b60006149af826149b6565b9050919050565b60006149c182614b13565b9050919050565b60006149d38261485e565b91506149de8361485e565b9250826149ee576149ed614a28565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f73616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f53616c65732077696c6c206265206f70656e6564206166746572206d696e742060008201527f697320636f6d706c6574652e0000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6151d9816147ce565b81146151e457600080fd5b50565b6151f0816147e0565b81146151fb57600080fd5b50565b615207816147ec565b811461521257600080fd5b50565b61521e816147f6565b811461522957600080fd5b50565b6152358161485e565b811461524057600080fd5b50565b61524c81614868565b811461525757600080fd5b5056fea2646970667358221220dead7bc2a0173ed94c00f77d68aa39fe67c4502e38bea1bd1431493237aa9f8664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000002710

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806370a0823111610144578063b1f7f0eb116100b6578063d5abeb011161007a578063d5abeb0114610900578063d7224ba01461092b578063dc33e68114610956578063e985e9c514610993578063f2fde38b146109d0578063fdb8e34e146109f95761025c565b8063b1f7f0eb14610804578063b88d4fde14610841578063bdfaa0841461086a578063c080519714610886578063c87b56dd146108c35761025c565b80638da5cb5b116101085780638da5cb5b146106ef57806390aa0b0f1461071a5780639231ab2a1461074857806395d89b41146107855780639dfde201146107b0578063a22cb465146107db5761025c565b806370a082311461061c578063715018a614610659578063801fe59b146106705780638942932d146106875780638bc35c2f146106c45761025c565b80633ccfd60b116101dd5780634f6ccce7116101a15780634f6ccce7146104fe57806355a554651461053b57806355f804b3146105645780636352211e1461058d57806367ba5ecc146105ca5780636f58ec48146105f35761025c565b80633ccfd60b1461043d5780633f5e47411461045457806342842e0e1461047f5780634aaf78f1146104a85780634c0f38c2146104d35761025c565b806323b872dd1161022457806323b872dd1461035a57806328a4d1a7146103835780632a13614c146103ac5780632f745c59146103d75780633ae976cc146104145761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd1461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613a7c565b610a22565b60405161029591906141b5565b60405180910390f35b3480156102aa57600080fd5b506102b3610b6c565b6040516102c091906141eb565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613b23565b610bfe565b6040516102fd919061414e565b60405180910390f35b34801561031257600080fd5b5061032d6004803603810190610328919061394a565b610c83565b005b34801561033b57600080fd5b50610344610e4e565b6040516103519190614548565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613834565b610e58565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613b90565b610e68565b005b3480156103b857600080fd5b506103c1610e97565b6040516103ce91906141d0565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f9919061394a565b610e9d565b60405161040b9190614548565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190613bbd565b61109b565b005b34801561044957600080fd5b5061045261113d565b005b34801561046057600080fd5b5061046961115e565b60405161047691906141b5565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190613834565b6111bd565b005b3480156104b457600080fd5b506104bd6111dd565b6040516104ca91906141b5565b60405180910390f35b3480156104df57600080fd5b506104e86111f0565b6040516104f59190614548565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190613b23565b6111fa565b6040516105329190614548565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190613b50565b61124d565b005b34801561057057600080fd5b5061058b60048036038101906105869190613ad6565b611284565b005b34801561059957600080fd5b506105b460048036038101906105af9190613b23565b6112a2565b6040516105c1919061414e565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190613a4f565b6112b8565b005b3480156105ff57600080fd5b5061061a60048036038101906106159190613b90565b6112ca565b005b34801561062857600080fd5b50610643600480360381019061063e91906137c7565b6112f9565b6040516106509190614548565b60405180910390f35b34801561066557600080fd5b5061066e6113e2565b005b34801561067c57600080fd5b506106856113f6565b005b34801561069357600080fd5b506106ae60048036038101906106a99190613a02565b61142a565b6040516106bb91906141b5565b60405180910390f35b3480156106d057600080fd5b506106d961156f565b6040516106e69190614548565b60405180910390f35b3480156106fb57600080fd5b50610704611593565b604051610711919061414e565b60405180910390f35b34801561072657600080fd5b5061072f6115bc565b60405161073f9493929190614563565b60405180910390f35b34801561075457600080fd5b5061076f600480360381019061076a9190613b23565b6115fa565b60405161077c919061452d565b60405180910390f35b34801561079157600080fd5b5061079a611612565b6040516107a791906141eb565b60405180910390f35b3480156107bc57600080fd5b506107c56116a4565b6040516107d29190614548565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd919061390a565b6116a9565b005b34801561081057600080fd5b5061082b600480360381019061082691906137c7565b611a02565b60405161083891906141b5565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190613887565b611a22565b005b610884600480360381019061087f9190613b23565b611a7e565b005b34801561089257600080fd5b506108ad60048036038101906108a89190613b23565b611c7a565b6040516108ba91906141b5565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190613b23565b611c9a565b6040516108f791906141eb565b60405180910390f35b34801561090c57600080fd5b50610915611d41565b6040516109229190614548565b60405180910390f35b34801561093757600080fd5b50610940611d47565b60405161094d9190614548565b60405180910390f35b34801561096257600080fd5b5061097d600480360381019061097891906137c7565b611d4d565b60405161098a9190614548565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906137f4565b611d5f565b6040516109c791906141b5565b60405180910390f35b3480156109dc57600080fd5b506109f760048036038101906109f291906137c7565b611e45565b005b348015610a0557600080fd5b50610a206004803603810190610a1b919061398a565b611ec9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aed57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b655750610b6482611f80565b5b9050919050565b606060048054610b7b906148f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba7906148f8565b8015610bf45780601f10610bc957610100808354040283529160200191610bf4565b820191906000526020600020905b815481529060010190602001808311610bd757829003601f168201915b5050505050905090565b6000610c0982611fea565b610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f906144ed565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c8b611ff8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf0906143cd565b60405180910390fd5b6000610d04826112a2565b90508073ffffffffffffffffffffffffffffffffffffffff16610d25611ff8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d575750610d5581610d50611ff8565b611d5f565b155b15610d8e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600360009054906101000a900460ff16158015610dc95750600a600083815260200190815260200160002060009054906101000a900460ff16155b15610e3d57610ded8373ffffffffffffffffffffffffffffffffffffffff16612000565b15610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e249061448d565b60405180910390fd5b610e38838383612023565b610e49565b610e48838383612023565b5b505050565b6000600154905090565b610e638383836120d5565b505050565b610e7061268e565b80600f60000160006101000a81548163ffffffff021916908363ffffffff16021790555050565b60025481565b6000610ea8836112f9565b8210610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee09061420d565b60405180910390fd5b6000610ef3610e4e565b905060008060005b83811015611059576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fed57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110455786841415611036578195505050505050611095565b83806110419061495b565b9450505b5080806110519061495b565b915050610efb565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c906144ad565b60405180910390fd5b92915050565b6110a361268e565b60405180608001604052808563ffffffff1681526020018463ffffffff16815260200183815260200182815250600f60008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548163ffffffff021916908363ffffffff160217905550604082015181600101556060820151816002015590505050505050565b61114561268e565b3373ffffffffffffffffffffffffffffffffffffffff16ff5b600080600f600101541415801561119157506000600f60000160049054906101000a900463ffffffff1663ffffffff1614155b80156111b85750600f60000160049054906101000a900463ffffffff1663ffffffff164210155b905090565b6111d883838360405180602001604052806000815250611a22565b505050565b600360009054906101000a900460ff1681565b6000600e54905090565b6000611204610e4e565b8210611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c9061428d565b60405180910390fd5b819050919050565b61125561268e565b80600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61128c61268e565b81816012919061129d9291906133ff565b505050565b60006112ad8261270c565b600001519050919050565b6112c061268e565b8060028190555050565b6112d261268e565b80600f60000160046101000a81548163ffffffff021916908363ffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113619061432d565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113ea61268e565b6113f4600061290f565b565b6113fe61268e565b600360009054906101000a900460ff1615600360006101000a81548160ff021916908315150217905550565b6000803360405160200161143e9190614104565b6040516020818303038152906040528051906020012090506000326040516020016114699190614104565b6040516020818303038152906040528051906020012090506114cf858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600254846129d3565b806115245750611523858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600254836129d3565b5b611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a9061422d565b60405180910390fd5b60019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000a81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f8060000160009054906101000a900463ffffffff16908060000160049054906101000a900463ffffffff16908060010154908060020154905084565b611602613485565b61160b8261270c565b9050919050565b606060058054611621906148f8565b80601f016020809104026020016040519081016040528092919081815260200182805461164d906148f8565b801561169a5780601f1061166f5761010080835404028352916020019161169a565b820191906000526020600020905b81548152906001019060200180831161167d57829003601f168201915b5050505050905090565b600081565b6116b1611ff8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906143cd565b60405180910390fd5b600360009054906101000a900460ff161580156117865750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118f6576117aa8273ffffffffffffffffffffffffffffffffffffffff16612000565b156117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e19061448d565b60405180910390fd5b80600960006117f7611ff8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118a4611ff8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e991906141b5565b60405180910390a36119fe565b8060096000611903611ff8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119b0611ff8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f591906141b5565b60405180910390a35b5050565b600b6020528060005260406000206000915054906101000a900460ff1681565b611a2d8484846120d5565b611a39848484846129ea565b611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f9061440d565b60405180910390fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae39061430d565b60405180910390fd5b6000600f60000160009054906101000a900463ffffffff1663ffffffff16905060008114158015611b1d5750804210155b611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b53906142cd565b60405180910390fd5b600a821115611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b979061434d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000271082611bca610e4e565b611bd491906146df565b1115611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c9061434d565b60405180910390fd5b600a82611c2133611d4d565b611c2b91906146df565b1115611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c639061446d565b60405180910390fd5b611c763383612b81565b5050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6060611ca582611fea565b611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb906143ad565b60405180910390fd5b6000611cee612b9f565b90506000815111611d0e5760405180602001604052806000815250611d39565b80611d1884612c31565b604051602001611d2992919061411f565b6040516020818303038152906040525b915050919050565b600e5481565b600c5481565b6000611d5882612d92565b9050919050565b6000739b473dfe65219ffdffaf30cf34712bd6fdbfff1a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db25760019050611e3f565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b92915050565b611e4d61268e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb49061424d565b60405180910390fd5b611ec68161290f565b50565b611ed161268e565b60005b8251811015611f7b57818181518110611ef057611eef614a86565b5b6020026020010151600b6000858481518110611f0f57611f0e614a86565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611f739061495b565b915050611ed4565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120e08261270c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612107611ff8565b73ffffffffffffffffffffffffffffffffffffffff161480612163575061212c611ff8565b73ffffffffffffffffffffffffffffffffffffffff1661214b84610bfe565b73ffffffffffffffffffffffffffffffffffffffff16145b8061217f575061217e8260000151612179611ff8565b611d5f565b5b9050806121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b8906143ed565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a9061436d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229a906142ad565b60405180910390fd5b6122b08585856001612e7b565b6122c06000848460000151612023565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661232e9190614766565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123d29190614699565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124d891906146df565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561261e5761254e81611fea565b1561261d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126868686866001612e81565b505050505050565b612696611ff8565b73ffffffffffffffffffffffffffffffffffffffff166126b4611593565b73ffffffffffffffffffffffffffffffffffffffff161461270a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127019061438d565b60405180910390fd5b565b612714613485565b61271d82611fea565b61275c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127539061426d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106127c05760017f000000000000000000000000000000000000000000000000000000000000000a846127b3919061479a565b6127bd91906146df565b90505b60008390505b8181106128ce576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128ba5780935050505061290a565b5080806128c6906148ce565b9150506127c6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612901906144cd565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826129e08584612e87565b1490509392505050565b6000612a0b8473ffffffffffffffffffffffffffffffffffffffff16612000565b15612b74578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a34611ff8565b8786866040518563ffffffff1660e01b8152600401612a569493929190614169565b602060405180830381600087803b158015612a7057600080fd5b505af1925050508015612aa157506040513d601f19601f82011682018060405250810190612a9e9190613aa9565b60015b612b24573d8060008114612ad1576040519150601f19603f3d011682016040523d82523d6000602084013e612ad6565b606091505b50600081511415612b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b139061440d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b79565b600190505b949350505050565b612b9b828260405180602001604052806000815250612edd565b5050565b606060128054612bae906148f8565b80601f0160208091040260200160405190810160405280929190818152602001828054612bda906148f8565b8015612c275780601f10612bfc57610100808354040283529160200191612c27565b820191906000526020600020905b815481529060010190602001808311612c0a57829003601f168201915b5050505050905090565b60606000821415612c79576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d8d565b600082905060005b60008214612cab578080612c949061495b565b915050600a82612ca49190614735565b9150612c81565b60008167ffffffffffffffff811115612cc757612cc6614ab5565b5b6040519080825280601f01601f191660200182016040528015612cf95781602001600182028036833780820191505090505b5090505b60008514612d8657600182612d12919061479a565b9150600a85612d2191906149c8565b6030612d2d91906146df565b60f81b818381518110612d4357612d42614a86565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d7f9190614735565b9450612cfd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfa906142ed565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60008082905060005b8451811015612ed257612ebd82868381518110612eb057612eaf614a86565b5b60200260200101516133bd565b91508080612eca9061495b565b915050612e90565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4b9061444d565b60405180910390fd5b612f5d81611fea565b15612f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f949061442d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115613000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff79061450d565b60405180910390fd5b61300d6000858386612e7b565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161310a9190614699565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131319190614699565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156133a057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461334060008884886129ea565b61337f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133769061440d565b60405180910390fd5b818061338a9061495b565b92505080806133989061495b565b9150506132cf565b50806001819055506133b56000878588612e81565b505050505050565b60008183106133d5576133d082846133e8565b6133e0565b6133df83836133e8565b5b905092915050565b600082600052816020526040600020905092915050565b82805461340b906148f8565b90600052602060002090601f01602090048101928261342d5760008555613474565b82601f1061344657803560ff1916838001178555613474565b82800160010185558215613474579182015b82811115613473578235825591602001919060010190613458565b5b50905061348191906134bf565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134d85760008160009055506001016134c0565b5090565b60006134ef6134ea846145cd565b6145a8565b9050808382526020820190508285602086028201111561351257613511614aee565b5b60005b85811015613542578161352888826135fe565b845260208401935060208301925050600181019050613515565b5050509392505050565b600061355f61355a846145f9565b6145a8565b9050808382526020820190508285602086028201111561358257613581614aee565b5b60005b858110156135b2578161359888826136c5565b845260208401935060208301925050600181019050613585565b5050509392505050565b60006135cf6135ca84614625565b6145a8565b9050828152602081018484840111156135eb576135ea614af3565b5b6135f684828561488c565b509392505050565b60008135905061360d816151d0565b92915050565b600082601f83011261362857613627614ae9565b5b81356136388482602086016134dc565b91505092915050565b600082601f83011261365657613655614ae9565b5b813561366684826020860161354c565b91505092915050565b60008083601f84011261368557613684614ae9565b5b8235905067ffffffffffffffff8111156136a2576136a1614ae4565b5b6020830191508360208202830111156136be576136bd614aee565b5b9250929050565b6000813590506136d4816151e7565b92915050565b6000813590506136e9816151fe565b92915050565b6000813590506136fe81615215565b92915050565b60008151905061371381615215565b92915050565b600082601f83011261372e5761372d614ae9565b5b813561373e8482602086016135bc565b91505092915050565b60008083601f84011261375d5761375c614ae9565b5b8235905067ffffffffffffffff81111561377a57613779614ae4565b5b60208301915083600182028301111561379657613795614aee565b5b9250929050565b6000813590506137ac8161522c565b92915050565b6000813590506137c181615243565b92915050565b6000602082840312156137dd576137dc614afd565b5b60006137eb848285016135fe565b91505092915050565b6000806040838503121561380b5761380a614afd565b5b6000613819858286016135fe565b925050602061382a858286016135fe565b9150509250929050565b60008060006060848603121561384d5761384c614afd565b5b600061385b868287016135fe565b935050602061386c868287016135fe565b925050604061387d8682870161379d565b9150509250925092565b600080600080608085870312156138a1576138a0614afd565b5b60006138af878288016135fe565b94505060206138c0878288016135fe565b93505060406138d18782880161379d565b925050606085013567ffffffffffffffff8111156138f2576138f1614af8565b5b6138fe87828801613719565b91505092959194509250565b6000806040838503121561392157613920614afd565b5b600061392f858286016135fe565b9250506020613940858286016136c5565b9150509250929050565b6000806040838503121561396157613960614afd565b5b600061396f858286016135fe565b92505060206139808582860161379d565b9150509250929050565b600080604083850312156139a1576139a0614afd565b5b600083013567ffffffffffffffff8111156139bf576139be614af8565b5b6139cb85828601613613565b925050602083013567ffffffffffffffff8111156139ec576139eb614af8565b5b6139f885828601613641565b9150509250929050565b60008060208385031215613a1957613a18614afd565b5b600083013567ffffffffffffffff811115613a3757613a36614af8565b5b613a438582860161366f565b92509250509250929050565b600060208284031215613a6557613a64614afd565b5b6000613a73848285016136da565b91505092915050565b600060208284031215613a9257613a91614afd565b5b6000613aa0848285016136ef565b91505092915050565b600060208284031215613abf57613abe614afd565b5b6000613acd84828501613704565b91505092915050565b60008060208385031215613aed57613aec614afd565b5b600083013567ffffffffffffffff811115613b0b57613b0a614af8565b5b613b1785828601613747565b92509250509250929050565b600060208284031215613b3957613b38614afd565b5b6000613b478482850161379d565b91505092915050565b60008060408385031215613b6757613b66614afd565b5b6000613b758582860161379d565b9250506020613b86858286016136c5565b9150509250929050565b600060208284031215613ba657613ba5614afd565b5b6000613bb4848285016137b2565b91505092915050565b60008060008060808587031215613bd757613bd6614afd565b5b6000613be5878288016137b2565b9450506020613bf6878288016137b2565b9350506040613c078782880161379d565b9250506060613c188782880161379d565b91505092959194509250565b613c2d816147ce565b82525050565b613c3c816147ce565b82525050565b613c53613c4e826147ce565b6149a4565b82525050565b613c62816147e0565b82525050565b613c71816147ec565b82525050565b6000613c8282614656565b613c8c818561466c565b9350613c9c81856020860161489b565b613ca581614b02565b840191505092915050565b6000613cbb82614661565b613cc5818561467d565b9350613cd581856020860161489b565b613cde81614b02565b840191505092915050565b6000613cf482614661565b613cfe818561468e565b9350613d0e81856020860161489b565b80840191505092915050565b6000613d2760228361467d565b9150613d3282614b20565b604082019050919050565b6000613d4a600e8361467d565b9150613d5582614b6f565b602082019050919050565b6000613d6d60268361467d565b9150613d7882614b98565b604082019050919050565b6000613d90602a8361467d565b9150613d9b82614be7565b604082019050919050565b6000613db360238361467d565b9150613dbe82614c36565b604082019050919050565b6000613dd660258361467d565b9150613de182614c85565b604082019050919050565b6000613df960188361467d565b9150613e0482614cd4565b602082019050919050565b6000613e1c60318361467d565b9150613e2782614cfd565b604082019050919050565b6000613e3f601e8361467d565b9150613e4a82614d4c565b602082019050919050565b6000613e62602b8361467d565b9150613e6d82614d75565b604082019050919050565b6000613e8560128361467d565b9150613e9082614dc4565b602082019050919050565b6000613ea860268361467d565b9150613eb382614ded565b604082019050919050565b6000613ecb60058361468e565b9150613ed682614e3c565b600582019050919050565b6000613eee60208361467d565b9150613ef982614e65565b602082019050919050565b6000613f11602f8361467d565b9150613f1c82614e8e565b604082019050919050565b6000613f34601a8361467d565b9150613f3f82614edd565b602082019050919050565b6000613f5760328361467d565b9150613f6282614f06565b604082019050919050565b6000613f7a60338361467d565b9150613f8582614f55565b604082019050919050565b6000613f9d601d8361467d565b9150613fa882614fa4565b602082019050919050565b6000613fc060218361467d565b9150613fcb82614fcd565b604082019050919050565b6000613fe360168361467d565b9150613fee8261501c565b602082019050919050565b6000614006602c8361467d565b915061401182615045565b604082019050919050565b6000614029602e8361467d565b915061403482615094565b604082019050919050565b600061404c602f8361467d565b9150614057826150e3565b604082019050919050565b600061406f602d8361467d565b915061407a82615132565b604082019050919050565b600061409260228361467d565b915061409d82615181565b604082019050919050565b6040820160008201516140be6000850182613c24565b5060208201516140d160208501826140f5565b50505050565b6140e08161485e565b82525050565b6140ef81614868565b82525050565b6140fe81614878565b82525050565b60006141108284613c42565b60148201915081905092915050565b600061412b8285613ce9565b91506141378284613ce9565b915061414282613ebe565b91508190509392505050565b60006020820190506141636000830184613c33565b92915050565b600060808201905061417e6000830187613c33565b61418b6020830186613c33565b61419860408301856140d7565b81810360608301526141aa8184613c77565b905095945050505050565b60006020820190506141ca6000830184613c59565b92915050565b60006020820190506141e56000830184613c68565b92915050565b600060208201905081810360008301526142058184613cb0565b905092915050565b6000602082019050818103600083015261422681613d1a565b9050919050565b6000602082019050818103600083015261424681613d3d565b9050919050565b6000602082019050818103600083015261426681613d60565b9050919050565b6000602082019050818103600083015261428681613d83565b9050919050565b600060208201905081810360008301526142a681613da6565b9050919050565b600060208201905081810360008301526142c681613dc9565b9050919050565b600060208201905081810360008301526142e681613dec565b9050919050565b6000602082019050818103600083015261430681613e0f565b9050919050565b6000602082019050818103600083015261432681613e32565b9050919050565b6000602082019050818103600083015261434681613e55565b9050919050565b6000602082019050818103600083015261436681613e78565b9050919050565b6000602082019050818103600083015261438681613e9b565b9050919050565b600060208201905081810360008301526143a681613ee1565b9050919050565b600060208201905081810360008301526143c681613f04565b9050919050565b600060208201905081810360008301526143e681613f27565b9050919050565b6000602082019050818103600083015261440681613f4a565b9050919050565b6000602082019050818103600083015261442681613f6d565b9050919050565b6000602082019050818103600083015261444681613f90565b9050919050565b6000602082019050818103600083015261446681613fb3565b9050919050565b6000602082019050818103600083015261448681613fd6565b9050919050565b600060208201905081810360008301526144a681613ff9565b9050919050565b600060208201905081810360008301526144c68161401c565b9050919050565b600060208201905081810360008301526144e68161403f565b9050919050565b6000602082019050818103600083015261450681614062565b9050919050565b6000602082019050818103600083015261452681614085565b9050919050565b600060408201905061454260008301846140a8565b92915050565b600060208201905061455d60008301846140d7565b92915050565b600060808201905061457860008301876140e6565b61458560208301866140e6565b61459260408301856140d7565b61459f60608301846140d7565b95945050505050565b60006145b26145c3565b90506145be828261492a565b919050565b6000604051905090565b600067ffffffffffffffff8211156145e8576145e7614ab5565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561461457614613614ab5565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156146405761463f614ab5565b5b61464982614b02565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006146a482614822565b91506146af83614822565b9250826fffffffffffffffffffffffffffffffff038211156146d4576146d36149f9565b5b828201905092915050565b60006146ea8261485e565b91506146f58361485e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561472a576147296149f9565b5b828201905092915050565b60006147408261485e565b915061474b8361485e565b92508261475b5761475a614a28565b5b828204905092915050565b600061477182614822565b915061477c83614822565b92508282101561478f5761478e6149f9565b5b828203905092915050565b60006147a58261485e565b91506147b08361485e565b9250828210156147c3576147c26149f9565b5b828203905092915050565b60006147d98261483e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156148b957808201518184015260208101905061489e565b838111156148c8576000848401525b50505050565b60006148d98261485e565b915060008214156148ed576148ec6149f9565b5b600182039050919050565b6000600282049050600182168061491057607f821691505b6020821081141561492457614923614a57565b5b50919050565b61493382614b02565b810181811067ffffffffffffffff8211171561495257614951614ab5565b5b80604052505050565b60006149668261485e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614999576149986149f9565b5b600182019050919050565b60006149af826149b6565b9050919050565b60006149c182614b13565b9050919050565b60006149d38261485e565b91506149de8361485e565b9250826149ee576149ed614a28565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f73616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f53616c65732077696c6c206265206f70656e6564206166746572206d696e742060008201527f697320636f6d706c6574652e0000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6151d9816147ce565b81146151e457600080fd5b50565b6151f0816147e0565b81146151fb57600080fd5b50565b615207816147ec565b811461521257600080fd5b50565b61521e816147f6565b811461522957600080fd5b50565b6152358161485e565b811461524057600080fd5b50565b61524c81614868565b811461525757600080fd5b5056fea2646970667358221220dead7bc2a0173ed94c00f77d68aa39fe67c4502e38bea1bd1431493237aa9f8664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000002710

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 10000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710


Deployed Bytecode Sourcemap

54749:2698:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40516:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42242:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45134:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44407:669;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39077:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46494:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56705:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37033:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39708:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56294:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56870:87;;;;;;;;;;;;;:::i;:::-;;56047:195;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46699:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37235:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55391:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39240:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43405:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57077:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42065:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43798:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56587:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40942:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35175:103;;;;;;;;;;;;;:::i;:::-;;43291:106;;;;;;;;;;;;;:::i;:::-;;43936:415;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54812:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34527:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55044:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;57296:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42397:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56248:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45404:706;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38248:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46919:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55478:563;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38098:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42558:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54865:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51334:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57183:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46173:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35433:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43553:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40516:370;40643:4;40688:25;40673:40;;;:11;:40;;;;:99;;;;40739:33;40724:48;;;:11;:48;;;;40673:99;:160;;;;40798:35;40783:50;;;:11;:50;;;;40673:160;:207;;;;40844:36;40868:11;40844:23;:36::i;:::-;40673:207;40659:221;;40516:370;;;:::o;42242:94::-;42296:13;42325:5;42318:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42242:94;:::o;45134:204::-;45202:7;45226:16;45234:7;45226;:16::i;:::-;45218:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45308:15;:24;45324:7;45308:24;;;;;;;;;;;;;;;;;;;;;45301:31;;45134:204;;;:::o;44407:669::-;44494:12;:10;:12::i;:::-;44488:18;;:2;:18;;;;44480:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44548:13;44564:24;44580:7;44564:15;:24::i;:::-;44548:40;;44619:5;44603:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;44629:37;44646:5;44653:12;:10;:12::i;:::-;44629:16;:37::i;:::-;44628:38;44603:63;44599:138;;;44690:35;;;;;;;;;;;;;;44599:138;44751:17;;;;;;;;;;;44750:18;:51;;;;;44773:19;:28;44793:7;44773:28;;;;;;;;;;;;;;;;;;;;;44772:29;44750:51;44747:322;;;44821:15;:2;:13;;;:15::i;:::-;44817:180;;;44857:55;;;;;;;;;;:::i;:::-;;;;;;;;44817:180;44953:28;44962:2;44966:7;44975:5;44953:8;:28::i;:::-;44747:322;;;45029:28;45038:2;45042:7;45051:5;45029:8;:28::i;:::-;44747:322;44469:607;44407:669;;:::o;39077:94::-;39130:7;39153:12;;39146:19;;39077:94;:::o;46494:142::-;46602:28;46612:4;46618:2;46622:7;46602:9;:28::i;:::-;46494:142;;;:::o;56705:124::-;34413:13;:11;:13::i;:::-;56814:9:::1;56781:10;:30;;;:42;;;;;;;;;;;;;;;;;;56705:124:::0;:::o;37033:38::-;;;;:::o;39708:744::-;39817:7;39852:16;39862:5;39852:9;:16::i;:::-;39844:5;:24;39836:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;39914:22;39939:13;:11;:13::i;:::-;39914:38;;39959:19;39989:25;40039:9;40034:350;40058:14;40054:1;:18;40034:350;;;40088:31;40122:11;:14;40134:1;40122:14;;;;;;;;;;;40088:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40175:1;40149:28;;:9;:14;;;:28;;;40145:89;;40210:9;:14;;;40190:34;;40145:89;40267:5;40246:26;;:17;:26;;;40242:135;;;40304:5;40289:11;:20;40285:59;;;40331:1;40324:8;;;;;;;;;40285:59;40354:13;;;;;:::i;:::-;;;;40242:135;40079:305;40074:3;;;;;:::i;:::-;;;;40034:350;;;;40390:56;;;;;;;;;;:::i;:::-;;;;;;;;39708:744;;;;;:::o;56294:287::-;34413:13;:11;:13::i;:::-;56475:100:::1;;;;;;;;56492:19;56475:100;;;;;;56518:13;56475:100;;;;;;56538:5;56475:100;;;;56550:18;56475:100;;::::0;56462:10:::1;:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56294:287:::0;;;;:::o;56870:87::-;34413:13;:11;:13::i;:::-;56939:10:::1;56918:33;;;56047:195:::0;56094:4;56141:1;56121:10;:16;;;:21;;:61;;;;;56181:1;56153:10;:24;;;;;;;;;;;;:29;;;;56121:61;:115;;;;;56212:10;:24;;;;;;;;;;;;56193:43;;:15;:43;;56121:115;56107:129;;56047:195;:::o;46699:157::-;46811:39;46828:4;46834:2;46838:7;46811:39;;;;;;;;;;;;:16;:39::i;:::-;46699:157;;;:::o;37235:37::-;;;;;;;;;;;;;:::o;55391:81::-;55435:7;55457:9;;55450:16;;55391:81;:::o;39240:177::-;39307:7;39339:13;:11;:13::i;:::-;39331:5;:21;39323:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;39406:5;39399:12;;39240:177;;;:::o;43405:140::-;34413:13;:11;:13::i;:::-;43531:6:::1;43499:19;:29;43519:8;43499:29;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;43405:140:::0;;:::o;57077:100::-;34413:13;:11;:13::i;:::-;57164:7:::1;;57148:13;:23;;;;;;;:::i;:::-;;57077:100:::0;;:::o;42065:118::-;42129:7;42152:20;42164:7;42152:11;:20::i;:::-;:25;;;42145:32;;42065:118;;;:::o;43798:130::-;34413:13;:11;:13::i;:::-;43909:11:::1;43883:23;:37;;;;43798:130:::0;:::o;56587:112::-;34413:13;:11;:13::i;:::-;56684:9:::1;56657:10;:24;;;:36;;;;;;;;;;;;;;;;;;56587:112:::0;:::o;40942:211::-;41006:7;41047:1;41030:19;;:5;:19;;;;41022:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41119:12;:19;41132:5;41119:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;41111:36;;41104:43;;40942:211;;;:::o;35175:103::-;34413:13;:11;:13::i;:::-;35240:30:::1;35267:1;35240:18;:30::i;:::-;35175:103::o:0;43291:106::-;34413:13;:11;:13::i;:::-;43372:17:::1;;;;;;;;;;;43371:18;43351:17;;:38;;;;;;;;;;;;;;;;;;43291:106::o:0;43936:415::-;44016:4;44033:12;44075:10;44058:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;44048:39;;;;;;44033:54;;44098:13;44141:9;44124:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;44114:38;;;;;;44098:54;;44171:63;44190:12;;44171:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44204:23;;44229:4;44171:18;:63::i;:::-;:131;;;;44238:64;44257:12;;44238:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44271:23;;44296:5;44238:18;:64::i;:::-;44171:131;44163:158;;;;;;;;;;;;:::i;:::-;;;;;;;;;44339:4;44332:11;;;;43936:415;;;;:::o;54812:48::-;;;:::o;34527:87::-;34573:7;34600:6;;;;;;;;;;;34593:13;;34527:87;:::o;55044:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57296:147::-;57377:21;;:::i;:::-;57417:20;57429:7;57417:11;:20::i;:::-;57410:27;;57296:147;;;:::o;42397:98::-;42453:13;42482:7;42475:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42397:98;:::o;56248:39::-;56280:7;56248:39;:::o;45404:706::-;45511:12;:10;:12::i;:::-;45499:24;;:8;:24;;;;45491:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45579:17;;;;;;;;;;;45578:18;:61;;;;;45601:26;:38;45628:10;45601:38;;;;;;;;;;;;;;;;;;;;;;;;;45600:39;45578:61;45575:528;;;45659:21;:8;:19;;;:21::i;:::-;45655:283;;;45701:55;;;;;;;;;;:::i;:::-;;;;;;;;45655:283;45842:8;45797:18;:32;45816:12;:10;:12::i;:::-;45797:32;;;;;;;;;;;;;;;:42;45830:8;45797:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45903:8;45874:48;;45889:12;:10;:12::i;:::-;45874:48;;;45913:8;45874:48;;;;;;:::i;:::-;;;;;;;;45575:528;;;46015:8;45970:18;:32;45989:12;:10;:12::i;:::-;45970:32;;;;;;;;;;;;;;;:42;46003:8;45970:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46072:8;46043:48;;46058:12;:10;:12::i;:::-;46043:48;;;46082:8;46043:48;;;;;;:::i;:::-;;;;;;;;45575:528;45404:706;;:::o;38248:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;46919:311::-;47056:28;47066:4;47072:2;47076:7;47056:9;:28::i;:::-;47107:48;47130:4;47136:2;47140:7;47149:5;47107:22;:48::i;:::-;47091:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;46919:311;;;;:::o;55478:563::-;55326:10;55313:23;;:9;:23;;;55305:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;55555:28:::1;55594:10;:30;;;;;;;;;;;;55586:39;;55555:70;;55672:1;55648:20;:25;;:68;;;;;55696:20;55677:15;:39;;55648:68;55632:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;55783:2;55773:8;:12;;55765:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;55851:14;55839:8;55823:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;55815:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55955:2;55943:8;55916:24;55929:10;55916:12;:24::i;:::-;:35;;;;:::i;:::-;:41;;55900:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;56004:31;56014:10;56026:8;56004:9;:31::i;:::-;55544:497;55478:563:::0;:::o;38098:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;42558:401::-;42656:13;42697:16;42705:7;42697;:16::i;:::-;42681:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;42787:21;42811:10;:8;:10::i;:::-;42787:34;;42866:1;42848:7;42842:21;:25;:111;;;;;;;;;;;;;;;;;42903:7;42911:18;:7;:16;:18::i;:::-;42886:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42842:111;42828:125;;;42558:401;;;:::o;54865:27::-;;;;:::o;51334:43::-;;;;:::o;57183:107::-;57241:7;57264:20;57278:5;57264:13;:20::i;:::-;57257:27;;57183:107;;;:::o;46173:262::-;46295:4;46324:42;46314:52;;:8;:52;;;46311:70;;;46375:4;46368:11;;;;46311:70;46394:18;:25;46413:5;46394:25;;;;;;;;;;;;;;;:35;46420:8;46394:35;;;;;;;;;;;;;;;;;;;;;;;;;46387:42;;46173:262;;;;;:::o;35433:201::-;34413:13;:11;:13::i;:::-;35542:1:::1;35522:22;;:8;:22;;;;35514:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35598:28;35617:8;35598:18;:28::i;:::-;35433:201:::0;:::o;43553:237::-;34413:13;:11;:13::i;:::-;43670:9:::1;43665:118;43689:8;:15;43685:1;:19;43665:118;;;43764:6;43771:1;43764:9;;;;;;;;:::i;:::-;;;;;;;;43722:26;:39;43749:8;43758:1;43749:11;;;;;;;;:::i;:::-;;;;;;;;43722:39;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;43706:3;;;;;:::i;:::-;;;;43665:118;;;;43553:237:::0;;:::o;11487:157::-;11572:4;11611:25;11596:40;;;:11;:40;;;;11589:47;;11487:157;;;:::o;47469:105::-;47526:4;47556:12;;47546:7;:22;47539:29;;47469:105;;;:::o;33078:98::-;33131:7;33158:10;33151:17;;33078:98;:::o;1331:326::-;1391:4;1648:1;1626:7;:19;;;:23;1619:30;;1331:326;;;:::o;51156:172::-;51280:2;51253:15;:24;51269:7;51253:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51314:7;51310:2;51294:28;;51303:5;51294:28;;;;;;;;;;;;51156:172;;;:::o;49521:1529::-;49618:35;49656:20;49668:7;49656:11;:20::i;:::-;49618:58;;49685:22;49727:13;:18;;;49711:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;49780:12;:10;:12::i;:::-;49756:36;;:20;49768:7;49756:11;:20::i;:::-;:36;;;49711:81;:142;;;;49803:50;49820:13;:18;;;49840:12;:10;:12::i;:::-;49803:16;:50::i;:::-;49711:142;49685:169;;49879:17;49863:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50011:4;49989:26;;:13;:18;;;:26;;;49973:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50100:1;50086:16;;:2;:16;;;;50078:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50153:43;50175:4;50181:2;50185:7;50194:1;50153:21;:43::i;:::-;50253:49;50270:1;50274:7;50283:13;:18;;;50253:8;:49::i;:::-;50341:1;50311:12;:18;50324:4;50311:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50377:1;50349:12;:16;50362:2;50349:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50408:43;;;;;;;;50423:2;50408:43;;;;;;50434:15;50408:43;;;;;50385:11;:20;50397:7;50385:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50679:19;50711:1;50701:7;:11;;;;:::i;:::-;50679:33;;50764:1;50723:43;;:11;:24;50735:11;50723:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50719:236;;;50781:20;50789:11;50781:7;:20::i;:::-;50777:171;;;50841:97;;;;;;;;50868:13;:18;;;50841:97;;;;;;50899:13;:28;;;50841:97;;;;;50814:11;:24;50826:11;50814:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50777:171;50719:236;50987:7;50983:2;50968:27;;50977:4;50968:27;;;;;;;;;;;;51002:42;51023:4;51029:2;51033:7;51042:1;51002:20;:42::i;:::-;49611:1439;;;49521:1529;;;:::o;34692:132::-;34767:12;:10;:12::i;:::-;34756:23;;:7;:5;:7::i;:::-;:23;;;34748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34692:132::o;41405:606::-;41481:21;;:::i;:::-;41522:16;41530:7;41522;:16::i;:::-;41514:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41594:26;41642:12;41631:7;:23;41627:93;;41711:1;41696:12;41686:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;41665:47;;41627:93;41733:12;41748:7;41733:22;;41728:212;41765:18;41757:4;:26;41728:212;;41802:31;41836:11;:17;41848:4;41836:17;;;;;;;;;;;41802:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41892:1;41866:28;;:9;:14;;;:28;;;41862:71;;41914:9;41907:16;;;;;;;41862:71;41793:147;41785:6;;;;;:::i;:::-;;;;41728:212;;;;41948:57;;;;;;;;;;:::i;:::-;;;;;;;;41405:606;;;;:::o;35794:191::-;35868:16;35887:6;;;;;;;;;;;35868:25;;35913:8;35904:6;;:17;;;;;;;;;;;;;;;;;;35968:8;35937:40;;35958:8;35937:40;;;;;;;;;;;;35857:128;35794:191;:::o;19637:190::-;19762:4;19815;19786:25;19799:5;19806:4;19786:12;:25::i;:::-;:33;19779:40;;19637:190;;;;;:::o;52871:690::-;53008:4;53025:15;:2;:13;;;:15::i;:::-;53021:535;;;53080:2;53064:36;;;53101:12;:10;:12::i;:::-;53115:4;53121:7;53130:5;53064:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53051:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53312:1;53295:6;:13;:18;53291:215;;;53328:61;;;;;;;;;;:::i;:::-;;;;;;;;53291:215;53474:6;53468:13;53459:6;53455:2;53451:15;53444:38;53051:464;53196:45;;;53186:55;;;:6;:55;;;;53179:62;;;;;53021:535;53544:4;53537:11;;52871:690;;;;;;;:::o;47580:98::-;47645:27;47655:2;47659:8;47645:27;;;;;;;;;;;;:9;:27::i;:::-;47580:98;;:::o;56963:108::-;57023:13;57052;57045:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56963:108;:::o;27573:723::-;27629:13;27859:1;27850:5;:10;27846:53;;;27877:10;;;;;;;;;;;;;;;;;;;;;27846:53;27909:12;27924:5;27909:20;;27940:14;27965:78;27980:1;27972:4;:9;27965:78;;27998:8;;;;;:::i;:::-;;;;28029:2;28021:10;;;;;:::i;:::-;;;27965:78;;;28053:19;28085:6;28075:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28053:39;;28103:154;28119:1;28110:5;:10;28103:154;;28147:1;28137:11;;;;;:::i;:::-;;;28214:2;28206:5;:10;;;;:::i;:::-;28193:2;:24;;;;:::i;:::-;28180:39;;28163:6;28170;28163:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;28243:2;28234:11;;;;;:::i;:::-;;;28103:154;;;28281:6;28267:21;;;;;27573:723;;;;:::o;41159:240::-;41220:7;41269:1;41252:19;;:5;:19;;;;41236:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;41360:12;:19;41373:5;41360:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;41352:41;;41345:48;;41159:240;;;:::o;54023:141::-;;;;;:::o;54550:140::-;;;;;:::o;20504:296::-;20587:7;20607:20;20630:4;20607:27;;20650:9;20645:118;20669:5;:12;20665:1;:16;20645:118;;;20718:33;20728:12;20742:5;20748:1;20742:8;;;;;;;;:::i;:::-;;;;;;;;20718:9;:33::i;:::-;20703:48;;20683:3;;;;;:::i;:::-;;;;20645:118;;;;20780:12;20773:19;;;20504:296;;;;:::o;48017:1272::-;48122:20;48145:12;;48122:35;;48186:1;48172:16;;:2;:16;;;;48164:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48363:21;48371:12;48363:7;:21::i;:::-;48362:22;48354:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48445:12;48433:8;:24;;48425:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48505:61;48535:1;48539:2;48543:12;48557:8;48505:21;:61::i;:::-;48575:30;48608:12;:16;48621:2;48608:16;;;;;;;;;;;;;;;48575:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48650:119;;;;;;;;48700:8;48670:11;:19;;;:39;;;;:::i;:::-;48650:119;;;;;;48753:8;48718:11;:24;;;:44;;;;:::i;:::-;48650:119;;;;;48631:12;:16;48644:2;48631:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48804:43;;;;;;;;48819:2;48804:43;;;;;;48830:15;48804:43;;;;;48776:11;:25;48788:12;48776:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48856:20;48879:12;48856:35;;48905:9;48900:281;48924:8;48920:1;:12;48900:281;;;48978:12;48974:2;48953:38;;48970:1;48953:38;;;;;;;;;;;;49018:59;49049:1;49053:2;49057:12;49071:5;49018:22;:59::i;:::-;49000:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49159:14;;;;;:::i;:::-;;;;48934:3;;;;;:::i;:::-;;;;48900:281;;;;49204:12;49189;:27;;;;49223:60;49252:1;49256:2;49260:12;49274:8;49223:20;:60::i;:::-;48115:1174;;;48017:1272;;;:::o;26711:149::-;26774:7;26805:1;26801;:5;:51;;26832:20;26847:1;26850;26832:14;:20::i;:::-;26801:51;;;26809:20;26824:1;26827;26809:14;:20::i;:::-;26801:51;26794:58;;26711:149;;;;:::o;26868:268::-;26936:13;27043:1;27037:4;27030:15;27072:1;27066:4;27059:15;27113:4;27107;27097:21;27088:30;;26868:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;766:713::-;859:5;884:78;900:61;954:6;900:61;:::i;:::-;884:78;:::i;:::-;875:87;;982:5;1011:6;1004:5;997:21;1045:4;1038:5;1034:16;1027:23;;1071:6;1121:3;1113:4;1105:6;1101:17;1096:3;1092:27;1089:36;1086:143;;;1140:79;;:::i;:::-;1086:143;1253:1;1238:235;1263:6;1260:1;1257:13;1238:235;;;1331:3;1360:34;1390:3;1378:10;1360:34;:::i;:::-;1355:3;1348:47;1424:4;1419:3;1415:14;1408:21;;1458:4;1453:3;1449:14;1442:21;;1298:175;1285:1;1282;1278:9;1273:14;;1238:235;;;1242:14;865:614;;766:713;;;;;:::o;1485:410::-;1562:5;1587:65;1603:48;1644:6;1603:48;:::i;:::-;1587:65;:::i;:::-;1578:74;;1675:6;1668:5;1661:21;1713:4;1706:5;1702:16;1751:3;1742:6;1737:3;1733:16;1730:25;1727:112;;;1758:79;;:::i;:::-;1727:112;1848:41;1882:6;1877:3;1872;1848:41;:::i;:::-;1568:327;1485:410;;;;;:::o;1901:139::-;1947:5;1985:6;1972:20;1963:29;;2001:33;2028:5;2001:33;:::i;:::-;1901:139;;;;:::o;2063:370::-;2134:5;2183:3;2176:4;2168:6;2164:17;2160:27;2150:122;;2191:79;;:::i;:::-;2150:122;2308:6;2295:20;2333:94;2423:3;2415:6;2408:4;2400:6;2396:17;2333:94;:::i;:::-;2324:103;;2140:293;2063:370;;;;:::o;2453:364::-;2521:5;2570:3;2563:4;2555:6;2551:17;2547:27;2537:122;;2578:79;;:::i;:::-;2537:122;2695:6;2682:20;2720:91;2807:3;2799:6;2792:4;2784:6;2780:17;2720:91;:::i;:::-;2711:100;;2527:290;2453:364;;;;:::o;2840:568::-;2913:8;2923:6;2973:3;2966:4;2958:6;2954:17;2950:27;2940:122;;2981:79;;:::i;:::-;2940:122;3094:6;3081:20;3071:30;;3124:18;3116:6;3113:30;3110:117;;;3146:79;;:::i;:::-;3110:117;3260:4;3252:6;3248:17;3236:29;;3314:3;3306:4;3298:6;3294:17;3284:8;3280:32;3277:41;3274:128;;;3321:79;;:::i;:::-;3274:128;2840:568;;;;;:::o;3414:133::-;3457:5;3495:6;3482:20;3473:29;;3511:30;3535:5;3511:30;:::i;:::-;3414:133;;;;:::o;3553:139::-;3599:5;3637:6;3624:20;3615:29;;3653:33;3680:5;3653:33;:::i;:::-;3553:139;;;;:::o;3698:137::-;3743:5;3781:6;3768:20;3759:29;;3797:32;3823:5;3797:32;:::i;:::-;3698:137;;;;:::o;3841:141::-;3897:5;3928:6;3922:13;3913:22;;3944:32;3970:5;3944:32;:::i;:::-;3841:141;;;;:::o;4001:338::-;4056:5;4105:3;4098:4;4090:6;4086:17;4082:27;4072:122;;4113:79;;:::i;:::-;4072:122;4230:6;4217:20;4255:78;4329:3;4321:6;4314:4;4306:6;4302:17;4255:78;:::i;:::-;4246:87;;4062:277;4001:338;;;;:::o;4359:553::-;4417:8;4427:6;4477:3;4470:4;4462:6;4458:17;4454:27;4444:122;;4485:79;;:::i;:::-;4444:122;4598:6;4585:20;4575:30;;4628:18;4620:6;4617:30;4614:117;;;4650:79;;:::i;:::-;4614:117;4764:4;4756:6;4752:17;4740:29;;4818:3;4810:4;4802:6;4798:17;4788:8;4784:32;4781:41;4778:128;;;4825:79;;:::i;:::-;4778:128;4359:553;;;;;:::o;4918:139::-;4964:5;5002:6;4989:20;4980:29;;5018:33;5045:5;5018:33;:::i;:::-;4918:139;;;;:::o;5063:137::-;5108:5;5146:6;5133:20;5124:29;;5162:32;5188:5;5162:32;:::i;:::-;5063:137;;;;:::o;5206:329::-;5265:6;5314:2;5302:9;5293:7;5289:23;5285:32;5282:119;;;5320:79;;:::i;:::-;5282:119;5440:1;5465:53;5510:7;5501:6;5490:9;5486:22;5465:53;:::i;:::-;5455:63;;5411:117;5206:329;;;;:::o;5541:474::-;5609:6;5617;5666:2;5654:9;5645:7;5641:23;5637:32;5634:119;;;5672:79;;:::i;:::-;5634:119;5792:1;5817:53;5862:7;5853:6;5842:9;5838:22;5817:53;:::i;:::-;5807:63;;5763:117;5919:2;5945:53;5990:7;5981:6;5970:9;5966:22;5945:53;:::i;:::-;5935:63;;5890:118;5541:474;;;;;:::o;6021:619::-;6098:6;6106;6114;6163:2;6151:9;6142:7;6138:23;6134:32;6131:119;;;6169:79;;:::i;:::-;6131:119;6289:1;6314:53;6359:7;6350:6;6339:9;6335:22;6314:53;:::i;:::-;6304:63;;6260:117;6416:2;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6387:118;6544:2;6570:53;6615:7;6606:6;6595:9;6591:22;6570:53;:::i;:::-;6560:63;;6515:118;6021:619;;;;;:::o;6646:943::-;6741:6;6749;6757;6765;6814:3;6802:9;6793:7;6789:23;6785:33;6782:120;;;6821:79;;:::i;:::-;6782:120;6941:1;6966:53;7011:7;7002:6;6991:9;6987:22;6966:53;:::i;:::-;6956:63;;6912:117;7068:2;7094:53;7139:7;7130:6;7119:9;7115:22;7094:53;:::i;:::-;7084:63;;7039:118;7196:2;7222:53;7267:7;7258:6;7247:9;7243:22;7222:53;:::i;:::-;7212:63;;7167:118;7352:2;7341:9;7337:18;7324:32;7383:18;7375:6;7372:30;7369:117;;;7405:79;;:::i;:::-;7369:117;7510:62;7564:7;7555:6;7544:9;7540:22;7510:62;:::i;:::-;7500:72;;7295:287;6646:943;;;;;;;:::o;7595:468::-;7660:6;7668;7717:2;7705:9;7696:7;7692:23;7688:32;7685:119;;;7723:79;;:::i;:::-;7685:119;7843:1;7868:53;7913:7;7904:6;7893:9;7889:22;7868:53;:::i;:::-;7858:63;;7814:117;7970:2;7996:50;8038:7;8029:6;8018:9;8014:22;7996:50;:::i;:::-;7986:60;;7941:115;7595:468;;;;;:::o;8069:474::-;8137:6;8145;8194:2;8182:9;8173:7;8169:23;8165:32;8162:119;;;8200:79;;:::i;:::-;8162:119;8320:1;8345:53;8390:7;8381:6;8370:9;8366:22;8345:53;:::i;:::-;8335:63;;8291:117;8447:2;8473:53;8518:7;8509:6;8498:9;8494:22;8473:53;:::i;:::-;8463:63;;8418:118;8069:474;;;;;:::o;8549:888::-;8664:6;8672;8721:2;8709:9;8700:7;8696:23;8692:32;8689:119;;;8727:79;;:::i;:::-;8689:119;8875:1;8864:9;8860:17;8847:31;8905:18;8897:6;8894:30;8891:117;;;8927:79;;:::i;:::-;8891:117;9032:78;9102:7;9093:6;9082:9;9078:22;9032:78;:::i;:::-;9022:88;;8818:302;9187:2;9176:9;9172:18;9159:32;9218:18;9210:6;9207:30;9204:117;;;9240:79;;:::i;:::-;9204:117;9345:75;9412:7;9403:6;9392:9;9388:22;9345:75;:::i;:::-;9335:85;;9130:300;8549:888;;;;;:::o;9443:559::-;9529:6;9537;9586:2;9574:9;9565:7;9561:23;9557:32;9554:119;;;9592:79;;:::i;:::-;9554:119;9740:1;9729:9;9725:17;9712:31;9770:18;9762:6;9759:30;9756:117;;;9792:79;;:::i;:::-;9756:117;9905:80;9977:7;9968:6;9957:9;9953:22;9905:80;:::i;:::-;9887:98;;;;9683:312;9443:559;;;;;:::o;10008:329::-;10067:6;10116:2;10104:9;10095:7;10091:23;10087:32;10084:119;;;10122:79;;:::i;:::-;10084:119;10242:1;10267:53;10312:7;10303:6;10292:9;10288:22;10267:53;:::i;:::-;10257:63;;10213:117;10008:329;;;;:::o;10343:327::-;10401:6;10450:2;10438:9;10429:7;10425:23;10421:32;10418:119;;;10456:79;;:::i;:::-;10418:119;10576:1;10601:52;10645:7;10636:6;10625:9;10621:22;10601:52;:::i;:::-;10591:62;;10547:116;10343:327;;;;:::o;10676:349::-;10745:6;10794:2;10782:9;10773:7;10769:23;10765:32;10762:119;;;10800:79;;:::i;:::-;10762:119;10920:1;10945:63;11000:7;10991:6;10980:9;10976:22;10945:63;:::i;:::-;10935:73;;10891:127;10676:349;;;;:::o;11031:529::-;11102:6;11110;11159:2;11147:9;11138:7;11134:23;11130:32;11127:119;;;11165:79;;:::i;:::-;11127:119;11313:1;11302:9;11298:17;11285:31;11343:18;11335:6;11332:30;11329:117;;;11365:79;;:::i;:::-;11329:117;11478:65;11535:7;11526:6;11515:9;11511:22;11478:65;:::i;:::-;11460:83;;;;11256:297;11031:529;;;;;:::o;11566:329::-;11625:6;11674:2;11662:9;11653:7;11649:23;11645:32;11642:119;;;11680:79;;:::i;:::-;11642:119;11800:1;11825:53;11870:7;11861:6;11850:9;11846:22;11825:53;:::i;:::-;11815:63;;11771:117;11566:329;;;;:::o;11901:468::-;11966:6;11974;12023:2;12011:9;12002:7;11998:23;11994:32;11991:119;;;12029:79;;:::i;:::-;11991:119;12149:1;12174:53;12219:7;12210:6;12199:9;12195:22;12174:53;:::i;:::-;12164:63;;12120:117;12276:2;12302:50;12344:7;12335:6;12324:9;12320:22;12302:50;:::i;:::-;12292:60;;12247:115;11901:468;;;;;:::o;12375:327::-;12433:6;12482:2;12470:9;12461:7;12457:23;12453:32;12450:119;;;12488:79;;:::i;:::-;12450:119;12608:1;12633:52;12677:7;12668:6;12657:9;12653:22;12633:52;:::i;:::-;12623:62;;12579:116;12375:327;;;;:::o;12708:761::-;12792:6;12800;12808;12816;12865:3;12853:9;12844:7;12840:23;12836:33;12833:120;;;12872:79;;:::i;:::-;12833:120;12992:1;13017:52;13061:7;13052:6;13041:9;13037:22;13017:52;:::i;:::-;13007:62;;12963:116;13118:2;13144:52;13188:7;13179:6;13168:9;13164:22;13144:52;:::i;:::-;13134:62;;13089:117;13245:2;13271:53;13316:7;13307:6;13296:9;13292:22;13271:53;:::i;:::-;13261:63;;13216:118;13373:2;13399:53;13444:7;13435:6;13424:9;13420:22;13399:53;:::i;:::-;13389:63;;13344:118;12708:761;;;;;;;:::o;13475:108::-;13552:24;13570:5;13552:24;:::i;:::-;13547:3;13540:37;13475:108;;:::o;13589:118::-;13676:24;13694:5;13676:24;:::i;:::-;13671:3;13664:37;13589:118;;:::o;13713:157::-;13818:45;13838:24;13856:5;13838:24;:::i;:::-;13818:45;:::i;:::-;13813:3;13806:58;13713:157;;:::o;13876:109::-;13957:21;13972:5;13957:21;:::i;:::-;13952:3;13945:34;13876:109;;:::o;13991:118::-;14078:24;14096:5;14078:24;:::i;:::-;14073:3;14066:37;13991:118;;:::o;14115:360::-;14201:3;14229:38;14261:5;14229:38;:::i;:::-;14283:70;14346:6;14341:3;14283:70;:::i;:::-;14276:77;;14362:52;14407:6;14402:3;14395:4;14388:5;14384:16;14362:52;:::i;:::-;14439:29;14461:6;14439:29;:::i;:::-;14434:3;14430:39;14423:46;;14205:270;14115:360;;;;:::o;14481:364::-;14569:3;14597:39;14630:5;14597:39;:::i;:::-;14652:71;14716:6;14711:3;14652:71;:::i;:::-;14645:78;;14732:52;14777:6;14772:3;14765:4;14758:5;14754:16;14732:52;:::i;:::-;14809:29;14831:6;14809:29;:::i;:::-;14804:3;14800:39;14793:46;;14573:272;14481:364;;;;:::o;14851:377::-;14957:3;14985:39;15018:5;14985:39;:::i;:::-;15040:89;15122:6;15117:3;15040:89;:::i;:::-;15033:96;;15138:52;15183:6;15178:3;15171:4;15164:5;15160:16;15138:52;:::i;:::-;15215:6;15210:3;15206:16;15199:23;;14961:267;14851:377;;;;:::o;15234:366::-;15376:3;15397:67;15461:2;15456:3;15397:67;:::i;:::-;15390:74;;15473:93;15562:3;15473:93;:::i;:::-;15591:2;15586:3;15582:12;15575:19;;15234:366;;;:::o;15606:::-;15748:3;15769:67;15833:2;15828:3;15769:67;:::i;:::-;15762:74;;15845:93;15934:3;15845:93;:::i;:::-;15963:2;15958:3;15954:12;15947:19;;15606:366;;;:::o;15978:::-;16120:3;16141:67;16205:2;16200:3;16141:67;:::i;:::-;16134:74;;16217:93;16306:3;16217:93;:::i;:::-;16335:2;16330:3;16326:12;16319:19;;15978:366;;;:::o;16350:::-;16492:3;16513:67;16577:2;16572:3;16513:67;:::i;:::-;16506:74;;16589:93;16678:3;16589:93;:::i;:::-;16707:2;16702:3;16698:12;16691:19;;16350:366;;;:::o;16722:::-;16864:3;16885:67;16949:2;16944:3;16885:67;:::i;:::-;16878:74;;16961:93;17050:3;16961:93;:::i;:::-;17079:2;17074:3;17070:12;17063:19;;16722:366;;;:::o;17094:::-;17236:3;17257:67;17321:2;17316:3;17257:67;:::i;:::-;17250:74;;17333:93;17422:3;17333:93;:::i;:::-;17451:2;17446:3;17442:12;17435:19;;17094:366;;;:::o;17466:::-;17608:3;17629:67;17693:2;17688:3;17629:67;:::i;:::-;17622:74;;17705:93;17794:3;17705:93;:::i;:::-;17823:2;17818:3;17814:12;17807:19;;17466:366;;;:::o;17838:::-;17980:3;18001:67;18065:2;18060:3;18001:67;:::i;:::-;17994:74;;18077:93;18166:3;18077:93;:::i;:::-;18195:2;18190:3;18186:12;18179:19;;17838:366;;;:::o;18210:::-;18352:3;18373:67;18437:2;18432:3;18373:67;:::i;:::-;18366:74;;18449:93;18538:3;18449:93;:::i;:::-;18567:2;18562:3;18558:12;18551:19;;18210:366;;;:::o;18582:::-;18724:3;18745:67;18809:2;18804:3;18745:67;:::i;:::-;18738:74;;18821:93;18910:3;18821:93;:::i;:::-;18939:2;18934:3;18930:12;18923:19;;18582:366;;;:::o;18954:::-;19096:3;19117:67;19181:2;19176:3;19117:67;:::i;:::-;19110:74;;19193:93;19282:3;19193:93;:::i;:::-;19311:2;19306:3;19302:12;19295:19;;18954:366;;;:::o;19326:::-;19468:3;19489:67;19553:2;19548:3;19489:67;:::i;:::-;19482:74;;19565:93;19654:3;19565:93;:::i;:::-;19683:2;19678:3;19674:12;19667:19;;19326:366;;;:::o;19698:400::-;19858:3;19879:84;19961:1;19956:3;19879:84;:::i;:::-;19872:91;;19972:93;20061:3;19972:93;:::i;:::-;20090:1;20085:3;20081:11;20074:18;;19698:400;;;:::o;20104:366::-;20246:3;20267:67;20331:2;20326:3;20267:67;:::i;:::-;20260:74;;20343:93;20432:3;20343:93;:::i;:::-;20461:2;20456:3;20452:12;20445:19;;20104:366;;;:::o;20476:::-;20618:3;20639:67;20703:2;20698:3;20639:67;:::i;:::-;20632:74;;20715:93;20804:3;20715:93;:::i;:::-;20833:2;20828:3;20824:12;20817:19;;20476:366;;;:::o;20848:::-;20990:3;21011:67;21075:2;21070:3;21011:67;:::i;:::-;21004:74;;21087:93;21176:3;21087:93;:::i;:::-;21205:2;21200:3;21196:12;21189:19;;20848:366;;;:::o;21220:::-;21362:3;21383:67;21447:2;21442:3;21383:67;:::i;:::-;21376:74;;21459:93;21548:3;21459:93;:::i;:::-;21577:2;21572:3;21568:12;21561:19;;21220:366;;;:::o;21592:::-;21734:3;21755:67;21819:2;21814:3;21755:67;:::i;:::-;21748:74;;21831:93;21920:3;21831:93;:::i;:::-;21949:2;21944:3;21940:12;21933:19;;21592:366;;;:::o;21964:::-;22106:3;22127:67;22191:2;22186:3;22127:67;:::i;:::-;22120:74;;22203:93;22292:3;22203:93;:::i;:::-;22321:2;22316:3;22312:12;22305:19;;21964:366;;;:::o;22336:::-;22478:3;22499:67;22563:2;22558:3;22499:67;:::i;:::-;22492:74;;22575:93;22664:3;22575:93;:::i;:::-;22693:2;22688:3;22684:12;22677:19;;22336:366;;;:::o;22708:::-;22850:3;22871:67;22935:2;22930:3;22871:67;:::i;:::-;22864:74;;22947:93;23036:3;22947:93;:::i;:::-;23065:2;23060:3;23056:12;23049:19;;22708:366;;;:::o;23080:::-;23222:3;23243:67;23307:2;23302:3;23243:67;:::i;:::-;23236:74;;23319:93;23408:3;23319:93;:::i;:::-;23437:2;23432:3;23428:12;23421:19;;23080:366;;;:::o;23452:::-;23594:3;23615:67;23679:2;23674:3;23615:67;:::i;:::-;23608:74;;23691:93;23780:3;23691:93;:::i;:::-;23809:2;23804:3;23800:12;23793:19;;23452:366;;;:::o;23824:::-;23966:3;23987:67;24051:2;24046:3;23987:67;:::i;:::-;23980:74;;24063:93;24152:3;24063:93;:::i;:::-;24181:2;24176:3;24172:12;24165:19;;23824:366;;;:::o;24196:::-;24338:3;24359:67;24423:2;24418:3;24359:67;:::i;:::-;24352:74;;24435:93;24524:3;24435:93;:::i;:::-;24553:2;24548:3;24544:12;24537:19;;24196:366;;;:::o;24568:::-;24710:3;24731:67;24795:2;24790:3;24731:67;:::i;:::-;24724:74;;24807:93;24896:3;24807:93;:::i;:::-;24925:2;24920:3;24916:12;24909:19;;24568:366;;;:::o;25010:529::-;25171:4;25166:3;25162:14;25258:4;25251:5;25247:16;25241:23;25277:63;25334:4;25329:3;25325:14;25311:12;25277:63;:::i;:::-;25186:164;25442:4;25435:5;25431:16;25425:23;25461:61;25516:4;25511:3;25507:14;25493:12;25461:61;:::i;:::-;25360:172;25140:399;25010:529;;:::o;25545:118::-;25632:24;25650:5;25632:24;:::i;:::-;25627:3;25620:37;25545:118;;:::o;25669:115::-;25754:23;25771:5;25754:23;:::i;:::-;25749:3;25742:36;25669:115;;:::o;25790:105::-;25865:23;25882:5;25865:23;:::i;:::-;25860:3;25853:36;25790:105;;:::o;25901:256::-;26013:3;26028:75;26099:3;26090:6;26028:75;:::i;:::-;26128:2;26123:3;26119:12;26112:19;;26148:3;26141:10;;25901:256;;;;:::o;26163:701::-;26444:3;26466:95;26557:3;26548:6;26466:95;:::i;:::-;26459:102;;26578:95;26669:3;26660:6;26578:95;:::i;:::-;26571:102;;26690:148;26834:3;26690:148;:::i;:::-;26683:155;;26855:3;26848:10;;26163:701;;;;;:::o;26870:222::-;26963:4;27001:2;26990:9;26986:18;26978:26;;27014:71;27082:1;27071:9;27067:17;27058:6;27014:71;:::i;:::-;26870:222;;;;:::o;27098:640::-;27293:4;27331:3;27320:9;27316:19;27308:27;;27345:71;27413:1;27402:9;27398:17;27389:6;27345:71;:::i;:::-;27426:72;27494:2;27483:9;27479:18;27470:6;27426:72;:::i;:::-;27508;27576:2;27565:9;27561:18;27552:6;27508:72;:::i;:::-;27627:9;27621:4;27617:20;27612:2;27601:9;27597:18;27590:48;27655:76;27726:4;27717:6;27655:76;:::i;:::-;27647:84;;27098:640;;;;;;;:::o;27744:210::-;27831:4;27869:2;27858:9;27854:18;27846:26;;27882:65;27944:1;27933:9;27929:17;27920:6;27882:65;:::i;:::-;27744:210;;;;:::o;27960:222::-;28053:4;28091:2;28080:9;28076:18;28068:26;;28104:71;28172:1;28161:9;28157:17;28148:6;28104:71;:::i;:::-;27960:222;;;;:::o;28188:313::-;28301:4;28339:2;28328:9;28324:18;28316:26;;28388:9;28382:4;28378:20;28374:1;28363:9;28359:17;28352:47;28416:78;28489:4;28480:6;28416:78;:::i;:::-;28408:86;;28188:313;;;;:::o;28507:419::-;28673:4;28711:2;28700:9;28696:18;28688:26;;28760:9;28754:4;28750:20;28746:1;28735:9;28731:17;28724:47;28788:131;28914:4;28788:131;:::i;:::-;28780:139;;28507:419;;;:::o;28932:::-;29098:4;29136:2;29125:9;29121:18;29113:26;;29185:9;29179:4;29175:20;29171:1;29160:9;29156:17;29149:47;29213:131;29339:4;29213:131;:::i;:::-;29205:139;;28932:419;;;:::o;29357:::-;29523:4;29561:2;29550:9;29546:18;29538:26;;29610:9;29604:4;29600:20;29596:1;29585:9;29581:17;29574:47;29638:131;29764:4;29638:131;:::i;:::-;29630:139;;29357:419;;;:::o;29782:::-;29948:4;29986:2;29975:9;29971:18;29963:26;;30035:9;30029:4;30025:20;30021:1;30010:9;30006:17;29999:47;30063:131;30189:4;30063:131;:::i;:::-;30055:139;;29782:419;;;:::o;30207:::-;30373:4;30411:2;30400:9;30396:18;30388:26;;30460:9;30454:4;30450:20;30446:1;30435:9;30431:17;30424:47;30488:131;30614:4;30488:131;:::i;:::-;30480:139;;30207:419;;;:::o;30632:::-;30798:4;30836:2;30825:9;30821:18;30813:26;;30885:9;30879:4;30875:20;30871:1;30860:9;30856:17;30849:47;30913:131;31039:4;30913:131;:::i;:::-;30905:139;;30632:419;;;:::o;31057:::-;31223:4;31261:2;31250:9;31246:18;31238:26;;31310:9;31304:4;31300:20;31296:1;31285:9;31281:17;31274:47;31338:131;31464:4;31338:131;:::i;:::-;31330:139;;31057:419;;;:::o;31482:::-;31648:4;31686:2;31675:9;31671:18;31663:26;;31735:9;31729:4;31725:20;31721:1;31710:9;31706:17;31699:47;31763:131;31889:4;31763:131;:::i;:::-;31755:139;;31482:419;;;:::o;31907:::-;32073:4;32111:2;32100:9;32096:18;32088:26;;32160:9;32154:4;32150:20;32146:1;32135:9;32131:17;32124:47;32188:131;32314:4;32188:131;:::i;:::-;32180:139;;31907:419;;;:::o;32332:::-;32498:4;32536:2;32525:9;32521:18;32513:26;;32585:9;32579:4;32575:20;32571:1;32560:9;32556:17;32549:47;32613:131;32739:4;32613:131;:::i;:::-;32605:139;;32332:419;;;:::o;32757:::-;32923:4;32961:2;32950:9;32946:18;32938:26;;33010:9;33004:4;33000:20;32996:1;32985:9;32981:17;32974:47;33038:131;33164:4;33038:131;:::i;:::-;33030:139;;32757:419;;;:::o;33182:::-;33348:4;33386:2;33375:9;33371:18;33363:26;;33435:9;33429:4;33425:20;33421:1;33410:9;33406:17;33399:47;33463:131;33589:4;33463:131;:::i;:::-;33455:139;;33182:419;;;:::o;33607:::-;33773:4;33811:2;33800:9;33796:18;33788:26;;33860:9;33854:4;33850:20;33846:1;33835:9;33831:17;33824:47;33888:131;34014:4;33888:131;:::i;:::-;33880:139;;33607:419;;;:::o;34032:::-;34198:4;34236:2;34225:9;34221:18;34213:26;;34285:9;34279:4;34275:20;34271:1;34260:9;34256:17;34249:47;34313:131;34439:4;34313:131;:::i;:::-;34305:139;;34032:419;;;:::o;34457:::-;34623:4;34661:2;34650:9;34646:18;34638:26;;34710:9;34704:4;34700:20;34696:1;34685:9;34681:17;34674:47;34738:131;34864:4;34738:131;:::i;:::-;34730:139;;34457:419;;;:::o;34882:::-;35048:4;35086:2;35075:9;35071:18;35063:26;;35135:9;35129:4;35125:20;35121:1;35110:9;35106:17;35099:47;35163:131;35289:4;35163:131;:::i;:::-;35155:139;;34882:419;;;:::o;35307:::-;35473:4;35511:2;35500:9;35496:18;35488:26;;35560:9;35554:4;35550:20;35546:1;35535:9;35531:17;35524:47;35588:131;35714:4;35588:131;:::i;:::-;35580:139;;35307:419;;;:::o;35732:::-;35898:4;35936:2;35925:9;35921:18;35913:26;;35985:9;35979:4;35975:20;35971:1;35960:9;35956:17;35949:47;36013:131;36139:4;36013:131;:::i;:::-;36005:139;;35732:419;;;:::o;36157:::-;36323:4;36361:2;36350:9;36346:18;36338:26;;36410:9;36404:4;36400:20;36396:1;36385:9;36381:17;36374:47;36438:131;36564:4;36438:131;:::i;:::-;36430:139;;36157:419;;;:::o;36582:::-;36748:4;36786:2;36775:9;36771:18;36763:26;;36835:9;36829:4;36825:20;36821:1;36810:9;36806:17;36799:47;36863:131;36989:4;36863:131;:::i;:::-;36855:139;;36582:419;;;:::o;37007:::-;37173:4;37211:2;37200:9;37196:18;37188:26;;37260:9;37254:4;37250:20;37246:1;37235:9;37231:17;37224:47;37288:131;37414:4;37288:131;:::i;:::-;37280:139;;37007:419;;;:::o;37432:::-;37598:4;37636:2;37625:9;37621:18;37613:26;;37685:9;37679:4;37675:20;37671:1;37660:9;37656:17;37649:47;37713:131;37839:4;37713:131;:::i;:::-;37705:139;;37432:419;;;:::o;37857:::-;38023:4;38061:2;38050:9;38046:18;38038:26;;38110:9;38104:4;38100:20;38096:1;38085:9;38081:17;38074:47;38138:131;38264:4;38138:131;:::i;:::-;38130:139;;37857:419;;;:::o;38282:::-;38448:4;38486:2;38475:9;38471:18;38463:26;;38535:9;38529:4;38525:20;38521:1;38510:9;38506:17;38499:47;38563:131;38689:4;38563:131;:::i;:::-;38555:139;;38282:419;;;:::o;38707:::-;38873:4;38911:2;38900:9;38896:18;38888:26;;38960:9;38954:4;38950:20;38946:1;38935:9;38931:17;38924:47;38988:131;39114:4;38988:131;:::i;:::-;38980:139;;38707:419;;;:::o;39132:350::-;39289:4;39327:2;39316:9;39312:18;39304:26;;39340:135;39472:1;39461:9;39457:17;39448:6;39340:135;:::i;:::-;39132:350;;;;:::o;39488:222::-;39581:4;39619:2;39608:9;39604:18;39596:26;;39632:71;39700:1;39689:9;39685:17;39676:6;39632:71;:::i;:::-;39488:222;;;;:::o;39716:545::-;39889:4;39927:3;39916:9;39912:19;39904:27;;39941:69;40007:1;39996:9;39992:17;39983:6;39941:69;:::i;:::-;40020:70;40086:2;40075:9;40071:18;40062:6;40020:70;:::i;:::-;40100:72;40168:2;40157:9;40153:18;40144:6;40100:72;:::i;:::-;40182;40250:2;40239:9;40235:18;40226:6;40182:72;:::i;:::-;39716:545;;;;;;;:::o;40267:129::-;40301:6;40328:20;;:::i;:::-;40318:30;;40357:33;40385:4;40377:6;40357:33;:::i;:::-;40267:129;;;:::o;40402:75::-;40435:6;40468:2;40462:9;40452:19;;40402:75;:::o;40483:311::-;40560:4;40650:18;40642:6;40639:30;40636:56;;;40672:18;;:::i;:::-;40636:56;40722:4;40714:6;40710:17;40702:25;;40782:4;40776;40772:15;40764:23;;40483:311;;;:::o;40800:308::-;40874:4;40964:18;40956:6;40953:30;40950:56;;;40986:18;;:::i;:::-;40950:56;41036:4;41028:6;41024:17;41016:25;;41096:4;41090;41086:15;41078:23;;40800:308;;;:::o;41114:307::-;41175:4;41265:18;41257:6;41254:30;41251:56;;;41287:18;;:::i;:::-;41251:56;41325:29;41347:6;41325:29;:::i;:::-;41317:37;;41409:4;41403;41399:15;41391:23;;41114:307;;;:::o;41427:98::-;41478:6;41512:5;41506:12;41496:22;;41427:98;;;:::o;41531:99::-;41583:6;41617:5;41611:12;41601:22;;41531:99;;;:::o;41636:168::-;41719:11;41753:6;41748:3;41741:19;41793:4;41788:3;41784:14;41769:29;;41636:168;;;;:::o;41810:169::-;41894:11;41928:6;41923:3;41916:19;41968:4;41963:3;41959:14;41944:29;;41810:169;;;;:::o;41985:148::-;42087:11;42124:3;42109:18;;41985:148;;;;:::o;42139:273::-;42179:3;42198:20;42216:1;42198:20;:::i;:::-;42193:25;;42232:20;42250:1;42232:20;:::i;:::-;42227:25;;42354:1;42318:34;42314:42;42311:1;42308:49;42305:75;;;42360:18;;:::i;:::-;42305:75;42404:1;42401;42397:9;42390:16;;42139:273;;;;:::o;42418:305::-;42458:3;42477:20;42495:1;42477:20;:::i;:::-;42472:25;;42511:20;42529:1;42511:20;:::i;:::-;42506:25;;42665:1;42597:66;42593:74;42590:1;42587:81;42584:107;;;42671:18;;:::i;:::-;42584:107;42715:1;42712;42708:9;42701:16;;42418:305;;;;:::o;42729:185::-;42769:1;42786:20;42804:1;42786:20;:::i;:::-;42781:25;;42820:20;42838:1;42820:20;:::i;:::-;42815:25;;42859:1;42849:35;;42864:18;;:::i;:::-;42849:35;42906:1;42903;42899:9;42894:14;;42729:185;;;;:::o;42920:191::-;42960:4;42980:20;42998:1;42980:20;:::i;:::-;42975:25;;43014:20;43032:1;43014:20;:::i;:::-;43009:25;;43053:1;43050;43047:8;43044:34;;;43058:18;;:::i;:::-;43044:34;43103:1;43100;43096:9;43088:17;;42920:191;;;;:::o;43117:::-;43157:4;43177:20;43195:1;43177:20;:::i;:::-;43172:25;;43211:20;43229:1;43211:20;:::i;:::-;43206:25;;43250:1;43247;43244:8;43241:34;;;43255:18;;:::i;:::-;43241:34;43300:1;43297;43293:9;43285:17;;43117:191;;;;:::o;43314:96::-;43351:7;43380:24;43398:5;43380:24;:::i;:::-;43369:35;;43314:96;;;:::o;43416:90::-;43450:7;43493:5;43486:13;43479:21;43468:32;;43416:90;;;:::o;43512:77::-;43549:7;43578:5;43567:16;;43512:77;;;:::o;43595:149::-;43631:7;43671:66;43664:5;43660:78;43649:89;;43595:149;;;:::o;43750:118::-;43787:7;43827:34;43820:5;43816:46;43805:57;;43750:118;;;:::o;43874:126::-;43911:7;43951:42;43944:5;43940:54;43929:65;;43874:126;;;:::o;44006:77::-;44043:7;44072:5;44061:16;;44006:77;;;:::o;44089:93::-;44125:7;44165:10;44158:5;44154:22;44143:33;;44089:93;;;:::o;44188:101::-;44224:7;44264:18;44257:5;44253:30;44242:41;;44188:101;;;:::o;44295:154::-;44379:6;44374:3;44369;44356:30;44441:1;44432:6;44427:3;44423:16;44416:27;44295:154;;;:::o;44455:307::-;44523:1;44533:113;44547:6;44544:1;44541:13;44533:113;;;44632:1;44627:3;44623:11;44617:18;44613:1;44608:3;44604:11;44597:39;44569:2;44566:1;44562:10;44557:15;;44533:113;;;44664:6;44661:1;44658:13;44655:101;;;44744:1;44735:6;44730:3;44726:16;44719:27;44655:101;44504:258;44455:307;;;:::o;44768:171::-;44807:3;44830:24;44848:5;44830:24;:::i;:::-;44821:33;;44876:4;44869:5;44866:15;44863:41;;;44884:18;;:::i;:::-;44863:41;44931:1;44924:5;44920:13;44913:20;;44768:171;;;:::o;44945:320::-;44989:6;45026:1;45020:4;45016:12;45006:22;;45073:1;45067:4;45063:12;45094:18;45084:81;;45150:4;45142:6;45138:17;45128:27;;45084:81;45212:2;45204:6;45201:14;45181:18;45178:38;45175:84;;;45231:18;;:::i;:::-;45175:84;44996:269;44945:320;;;:::o;45271:281::-;45354:27;45376:4;45354:27;:::i;:::-;45346:6;45342:40;45484:6;45472:10;45469:22;45448:18;45436:10;45433:34;45430:62;45427:88;;;45495:18;;:::i;:::-;45427:88;45535:10;45531:2;45524:22;45314:238;45271:281;;:::o;45558:233::-;45597:3;45620:24;45638:5;45620:24;:::i;:::-;45611:33;;45666:66;45659:5;45656:77;45653:103;;;45736:18;;:::i;:::-;45653:103;45783:1;45776:5;45772:13;45765:20;;45558:233;;;:::o;45797:100::-;45836:7;45865:26;45885:5;45865:26;:::i;:::-;45854:37;;45797:100;;;:::o;45903:94::-;45942:7;45971:20;45985:5;45971:20;:::i;:::-;45960:31;;45903:94;;;:::o;46003:176::-;46035:1;46052:20;46070:1;46052:20;:::i;:::-;46047:25;;46086:20;46104:1;46086:20;:::i;:::-;46081:25;;46125:1;46115:35;;46130:18;;:::i;:::-;46115:35;46171:1;46168;46164:9;46159:14;;46003:176;;;;:::o;46185:180::-;46233:77;46230:1;46223:88;46330:4;46327:1;46320:15;46354:4;46351:1;46344:15;46371:180;46419:77;46416:1;46409:88;46516:4;46513:1;46506:15;46540:4;46537:1;46530:15;46557:180;46605:77;46602:1;46595:88;46702:4;46699:1;46692:15;46726:4;46723:1;46716:15;46743:180;46791:77;46788:1;46781:88;46888:4;46885:1;46878:15;46912:4;46909:1;46902:15;46929:180;46977:77;46974:1;46967:88;47074:4;47071:1;47064:15;47098:4;47095:1;47088:15;47115:117;47224:1;47221;47214:12;47238:117;47347:1;47344;47337:12;47361:117;47470:1;47467;47460:12;47484:117;47593:1;47590;47583:12;47607:117;47716:1;47713;47706:12;47730:117;47839:1;47836;47829:12;47853:102;47894:6;47945:2;47941:7;47936:2;47929:5;47925:14;47921:28;47911:38;;47853:102;;;:::o;47961:94::-;47994:8;48042:5;48038:2;48034:14;48013:35;;47961:94;;;:::o;48061:221::-;48201:34;48197:1;48189:6;48185:14;48178:58;48270:4;48265:2;48257:6;48253:15;48246:29;48061:221;:::o;48288:164::-;48428:16;48424:1;48416:6;48412:14;48405:40;48288:164;:::o;48458:225::-;48598:34;48594:1;48586:6;48582:14;48575:58;48667:8;48662:2;48654:6;48650:15;48643:33;48458:225;:::o;48689:229::-;48829:34;48825:1;48817:6;48813:14;48806:58;48898:12;48893:2;48885:6;48881:15;48874:37;48689:229;:::o;48924:222::-;49064:34;49060:1;49052:6;49048:14;49041:58;49133:5;49128:2;49120:6;49116:15;49109:30;48924:222;:::o;49152:224::-;49292:34;49288:1;49280:6;49276:14;49269:58;49361:7;49356:2;49348:6;49344:15;49337:32;49152:224;:::o;49382:174::-;49522:26;49518:1;49510:6;49506:14;49499:50;49382:174;:::o;49562:236::-;49702:34;49698:1;49690:6;49686:14;49679:58;49771:19;49766:2;49758:6;49754:15;49747:44;49562:236;:::o;49804:180::-;49944:32;49940:1;49932:6;49928:14;49921:56;49804:180;:::o;49990:230::-;50130:34;50126:1;50118:6;50114:14;50107:58;50199:13;50194:2;50186:6;50182:15;50175:38;49990:230;:::o;50226:168::-;50366:20;50362:1;50354:6;50350:14;50343:44;50226:168;:::o;50400:225::-;50540:34;50536:1;50528:6;50524:14;50517:58;50609:8;50604:2;50596:6;50592:15;50585:33;50400:225;:::o;50631:155::-;50771:7;50767:1;50759:6;50755:14;50748:31;50631:155;:::o;50792:182::-;50932:34;50928:1;50920:6;50916:14;50909:58;50792:182;:::o;50980:234::-;51120:34;51116:1;51108:6;51104:14;51097:58;51189:17;51184:2;51176:6;51172:15;51165:42;50980:234;:::o;51220:176::-;51360:28;51356:1;51348:6;51344:14;51337:52;51220:176;:::o;51402:237::-;51542:34;51538:1;51530:6;51526:14;51519:58;51611:20;51606:2;51598:6;51594:15;51587:45;51402:237;:::o;51645:238::-;51785:34;51781:1;51773:6;51769:14;51762:58;51854:21;51849:2;51841:6;51837:15;51830:46;51645:238;:::o;51889:179::-;52029:31;52025:1;52017:6;52013:14;52006:55;51889:179;:::o;52074:220::-;52214:34;52210:1;52202:6;52198:14;52191:58;52283:3;52278:2;52270:6;52266:15;52259:28;52074:220;:::o;52300:172::-;52440:24;52436:1;52428:6;52424:14;52417:48;52300:172;:::o;52478:231::-;52618:34;52614:1;52606:6;52602:14;52595:58;52687:14;52682:2;52674:6;52670:15;52663:39;52478:231;:::o;52715:233::-;52855:34;52851:1;52843:6;52839:14;52832:58;52924:16;52919:2;52911:6;52907:15;52900:41;52715:233;:::o;52954:234::-;53094:34;53090:1;53082:6;53078:14;53071:58;53163:17;53158:2;53150:6;53146:15;53139:42;52954:234;:::o;53194:232::-;53334:34;53330:1;53322:6;53318:14;53311:58;53403:15;53398:2;53390:6;53386:15;53379:40;53194:232;:::o;53432:221::-;53572:34;53568:1;53560:6;53556:14;53549:58;53641:4;53636:2;53628:6;53624:15;53617:29;53432:221;:::o;53659:122::-;53732:24;53750:5;53732:24;:::i;:::-;53725:5;53722:35;53712:63;;53771:1;53768;53761:12;53712:63;53659:122;:::o;53787:116::-;53857:21;53872:5;53857:21;:::i;:::-;53850:5;53847:32;53837:60;;53893:1;53890;53883:12;53837:60;53787:116;:::o;53909:122::-;53982:24;54000:5;53982:24;:::i;:::-;53975:5;53972:35;53962:63;;54021:1;54018;54011:12;53962:63;53909:122;:::o;54037:120::-;54109:23;54126:5;54109:23;:::i;:::-;54102:5;54099:34;54089:62;;54147:1;54144;54137:12;54089:62;54037:120;:::o;54163:122::-;54236:24;54254:5;54236:24;:::i;:::-;54229:5;54226:35;54216:63;;54275:1;54272;54265:12;54216:63;54163:122;:::o;54291:120::-;54363:23;54380:5;54363:23;:::i;:::-;54356:5;54353:34;54343:62;;54401:1;54398;54391:12;54343:62;54291:120;:::o

Swarm Source

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