ETH Price: $2,670.18 (+1.25%)
Gas: 0.89 Gwei

Token

Azul (AZL)
 

Overview

Max Total Supply

2,885 AZL

Holders

413

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 AZL
0xdafe9399ad9f641bcd386959052d649df3dbba4f
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:
AZUL

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

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

// 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==0x6629d098418De6a76a4D03Ed89ccc36E57921274){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 AZUL is Ownable, ERC721A, ReentrancyGuard {

  uint256 public immutable maxPerAddress;
  uint public maxSupply = 5555;

  struct SaleConfig {
    uint32 publicMintStartTime;
    uint32 MintStartTime;
  }

  SaleConfig public saleConfig;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("Azul", "AZL", maxBatchSize_, collectionSize_) {
    maxPerAddress = maxBatchSize_;
  }

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

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

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

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

  uint256 public constant Price = 0 ether;

  string private _baseTokenURI;

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

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

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

  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":"uint32","name":"publicMintStartTime","type":"uint32"},{"internalType":"uint32","name":"mintStartTime","type":"uint32"}],"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":"uint256","name":"quantity","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","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":"maxPerAddress","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"}],"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"}]

60e060405260006001556000600360006101000a81548160ff0219169083151502179055506000600c556115b3600e553480156200003c57600080fd5b50604051620057ae380380620057ae83398181016040528101906200006291906200036d565b6040518060400160405280600481526020017f417a756c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f415a4c00000000000000000000000000000000000000000000000000000000008152508383620000f0620000e4620001da60201b60201c565b620001e260201b60201c565b6000811162000136576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012d9062000424565b60405180910390fd5b600082116200017c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001739062000402565b60405180910390fd5b836004908051906020019062000194929190620002a6565b508260059080519060200190620001ad929190620002a6565b508160a081815250508060808181525050505050506001600d819055508160c08181525050505062000583565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b49062000461565b90600052602060002090601f016020900481019282620002d8576000855562000324565b82601f10620002f357805160ff191683800117855562000324565b8280016001018555821562000324579182015b828111156200032357825182559160200191906001019062000306565b5b50905062000333919062000337565b5090565b5b808211156200035257600081600090555060010162000338565b5090565b600081519050620003678162000569565b92915050565b60008060408385031215620003875762000386620004c6565b5b6000620003978582860162000356565b9250506020620003aa8582860162000356565b9150509250929050565b6000620003c360278362000446565b9150620003d082620004cb565b604082019050919050565b6000620003ea602e8362000446565b9150620003f7826200051a565b604082019050919050565b600060208201905081810360008301526200041d81620003b4565b9050919050565b600060208201905081810360008301526200043f81620003db565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200047a57607f821691505b6020821081141562000491576200049062000497565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b620005748162000457565b81146200058057600080fd5b50565b60805160a05160c0516151e6620005c860003960008181611204015261173c0152600081816126f9015281816127220152612f38015260006116c701526151e66000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063b1f7f0eb116100b6578063d7224ba01161007a578063d7224ba014610900578063d854d0f21461092b578063dc33e68114610954578063e985e9c514610991578063f2fde38b146109ce578063fdb8e34e146109f75761025c565b8063b1f7f0eb146107f5578063b88d4fde14610832578063c08051971461085b578063c87b56dd14610898578063d5abeb01146108d55761025c565b806390aa0b0f1161010857806390aa0b0f146106f15780639231ab2a1461071d57806395d89b411461075a5780639dfde201146107855780639fb17e34146107b0578063a22cb465146107cc5761025c565b806370a082311461061e578063715018a61461065b578063801fe59b146106725780638942932d146106895780638da5cb5b146106c65761025c565b80633f5e4741116101dd57806355a55465116101a157806355a554651461051257806355f804b31461053b5780636352211e14610564578063639814e0146105a157806367ba5ecc146105cc5780636f58ec48146105f55761025c565b80633f5e47411461042b57806342842e0e146104565780634aaf78f11461047f5780634c0f38c2146104aa5780634f6ccce7146104d55761025c565b806323b872dd1161022457806323b872dd1461035a57806328a4d1a7146103835780632a13614c146103ac5780632f745c59146103d75780633ccfd60b146104145761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd1461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613a15565b610a20565b6040516102959190614127565b60405180910390f35b3480156102aa57600080fd5b506102b3610b6a565b6040516102c0919061415d565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613abc565b610bfc565b6040516102fd91906140c0565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906138e3565b610c81565b005b34801561033b57600080fd5b50610344610e4c565b60405161035191906144ba565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c91906137cd565b610e56565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613b29565b610e66565b005b3480156103b857600080fd5b506103c1610e95565b6040516103ce9190614142565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f991906138e3565b610e9b565b60405161040b91906144ba565b60405180910390f35b34801561042057600080fd5b50610429611099565b005b34801561043757600080fd5b506104406110ba565b60405161044d9190614127565b60405180910390f35b34801561046257600080fd5b5061047d600480360381019061047891906137cd565b611107565b005b34801561048b57600080fd5b50610494611127565b6040516104a19190614127565b60405180910390f35b3480156104b657600080fd5b506104bf61113a565b6040516104cc91906144ba565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190613abc565b611144565b60405161050991906144ba565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190613ae9565b611197565b005b34801561054757600080fd5b50610562600480360381019061055d9190613a6f565b6111ce565b005b34801561057057600080fd5b5061058b60048036038101906105869190613abc565b6111ec565b60405161059891906140c0565b60405180910390f35b3480156105ad57600080fd5b506105b6611202565b6040516105c391906144ba565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee91906139e8565b611226565b005b34801561060157600080fd5b5061061c60048036038101906106179190613b29565b611238565b005b34801561062a57600080fd5b5061064560048036038101906106409190613760565b611267565b60405161065291906144ba565b60405180910390f35b34801561066757600080fd5b50610670611350565b005b34801561067e57600080fd5b50610687611364565b005b34801561069557600080fd5b506106b060048036038101906106ab919061399b565b611398565b6040516106bd9190614127565b60405180910390f35b3480156106d257600080fd5b506106db6114dd565b6040516106e891906140c0565b60405180910390f35b3480156106fd57600080fd5b50610706611506565b6040516107149291906144d5565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f9190613abc565b611538565b604051610751919061449f565b60405180910390f35b34801561076657600080fd5b5061076f611550565b60405161077c919061415d565b60405180910390f35b34801561079157600080fd5b5061079a6115e2565b6040516107a791906144ba565b60405180910390f35b6107ca60048036038101906107c59190613abc565b6115e7565b005b3480156107d857600080fd5b506107f360048036038101906107ee91906138a3565b6117be565b005b34801561080157600080fd5b5061081c60048036038101906108179190613760565b611b17565b6040516108299190614127565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613820565b611b37565b005b34801561086757600080fd5b50610882600480360381019061087d9190613abc565b611b93565b60405161088f9190614127565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613abc565b611bb3565b6040516108cc919061415d565b60405180910390f35b3480156108e157600080fd5b506108ea611c5a565b6040516108f791906144ba565b60405180910390f35b34801561090c57600080fd5b50610915611c60565b60405161092291906144ba565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613b56565b611c66565b005b34801561096057600080fd5b5061097b60048036038101906109769190613760565b611ce6565b60405161098891906144ba565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b3919061378d565b611cf8565b6040516109c59190614127565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f09190613760565b611dde565b005b348015610a0357600080fd5b50610a1e6004803603810190610a199190613923565b611e62565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aeb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b635750610b6282611f19565b5b9050919050565b606060048054610b799061484e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba59061484e565b8015610bf25780601f10610bc757610100808354040283529160200191610bf2565b820191906000526020600020905b815481529060010190602001808311610bd557829003601f168201915b5050505050905090565b6000610c0782611f83565b610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d9061445f565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c89611f91565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee9061433f565b60405180910390fd5b6000610d02826111ec565b90508073ffffffffffffffffffffffffffffffffffffffff16610d23611f91565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d555750610d5381610d4e611f91565b611cf8565b155b15610d8c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600360009054906101000a900460ff16158015610dc75750600a600083815260200190815260200160002060009054906101000a900460ff16155b15610e3b57610deb8373ffffffffffffffffffffffffffffffffffffffff16611f99565b15610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e22906143ff565b60405180910390fd5b610e36838383611fbc565b610e47565b610e46838383611fbc565b5b505050565b6000600154905090565b610e6183838361206e565b505050565b610e6e612627565b80600f60000160006101000a81548163ffffffff021916908363ffffffff16021790555050565b60025481565b6000610ea683611267565b8210610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede9061417f565b60405180910390fd5b6000610ef1610e4c565b905060008060005b83811015611057576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610feb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110435786841415611034578195505050505050611093565b838061103f906148b1565b9450505b50808061104f906148b1565b915050610ef9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a9061441f565b60405180910390fd5b92915050565b6110a1612627565b3373ffffffffffffffffffffffffffffffffffffffff16ff5b600080600f60000160049054906101000a900463ffffffff1663ffffffff16141580156111025750600f60000160049054906101000a900463ffffffff1663ffffffff164210155b905090565b61112283838360405180602001604052806000815250611b37565b505050565b600360009054906101000a900460ff1681565b6000600e54905090565b600061114e610e4c565b821061118f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611186906141ff565b60405180910390fd5b819050919050565b61119f612627565b80600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111d6612627565b8181601091906111e7929190613398565b505050565b60006111f7826126a5565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61122e612627565b8060028190555050565b611240612627565b80600f60000160046101000a81548163ffffffff021916908363ffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf9061429f565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611358612627565b61136260006128a8565b565b61136c612627565b600360009054906101000a900460ff1615600360006101000a81548160ff021916908315150217905550565b600080336040516020016113ac9190614076565b6040516020818303038152906040528051906020012090506000326040516020016113d79190614076565b60405160208183030381529060405280519060200120905061143d858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506002548461296c565b806114925750611491858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506002548361296c565b5b6114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c89061419f565b60405180910390fd5b60019250505092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f8060000160009054906101000a900463ffffffff16908060000160049054906101000a900463ffffffff16905082565b61154061341e565b611549826126a5565b9050919050565b60606005805461155f9061484e565b80601f016020809104026020016040519081016040528092919081815260200182805461158b9061484e565b80156115d85780601f106115ad576101008083540402835291602001916115d8565b820191906000526020600020905b8154815290600101906020018083116115bb57829003601f168201915b5050505050905090565b600081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c9061427f565b60405180910390fd5b6000600f60000160009054906101000a900463ffffffff1663ffffffff169050600081141580156116865750804210155b6116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc9061423f565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000826116ef610e4c565b6116f99190614635565b111561173a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611731906142bf565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008261176533611ce6565b61176f9190614635565b11156117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a7906143df565b60405180910390fd5b6117ba3383612983565b5050565b6117c6611f91565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b9061433f565b60405180910390fd5b600360009054906101000a900460ff1615801561189b5750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a0b576118bf8273ffffffffffffffffffffffffffffffffffffffff16611f99565b156118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f6906143ff565b60405180910390fd5b806009600061190c611f91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119b9611f91565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119fe9190614127565b60405180910390a3611b13565b8060096000611a18611f91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac5611f91565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0a9190614127565b60405180910390a35b5050565b600b6020528060005260406000206000915054906101000a900460ff1681565b611b4284848461206e565b611b4e848484846129a1565b611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b849061437f565b60405180910390fd5b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6060611bbe82611f83565b611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf49061431f565b60405180910390fd5b6000611c07612b38565b90506000815111611c275760405180602001604052806000815250611c52565b80611c3184612bca565b604051602001611c42929190614091565b6040516020818303038152906040525b915050919050565b600e5481565b600c5481565b611c6e612627565b60405180604001604052808363ffffffff1681526020018263ffffffff16815250600f60008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548163ffffffff021916908363ffffffff1602179055509050505050565b6000611cf182612d2b565b9050919050565b6000736629d098418de6a76a4d03ed89ccc36e5792127473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d4b5760019050611dd8565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b92915050565b611de6612627565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d906141bf565b60405180910390fd5b611e5f816128a8565b50565b611e6a612627565b60005b8251811015611f1457818181518110611e8957611e886149dc565b5b6020026020010151600b6000858481518110611ea857611ea76149dc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611f0c906148b1565b915050611e6d565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612079826126a5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120a0611f91565b73ffffffffffffffffffffffffffffffffffffffff1614806120fc57506120c5611f91565b73ffffffffffffffffffffffffffffffffffffffff166120e484610bfc565b73ffffffffffffffffffffffffffffffffffffffff16145b8061211857506121178260000151612112611f91565b611cf8565b5b90508061215a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121519061435f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c3906142df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561223c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122339061421f565b60405180910390fd5b6122498585856001612e14565b6122596000848460000151611fbc565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122c791906146bc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661236b91906145ef565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124719190614635565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125b7576124e781611f83565b156125b6576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461261f8686866001612e1a565b505050505050565b61262f611f91565b73ffffffffffffffffffffffffffffffffffffffff1661264d6114dd565b73ffffffffffffffffffffffffffffffffffffffff16146126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a906142ff565b60405180910390fd5b565b6126ad61341e565b6126b682611f83565b6126f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ec906141df565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106127595760017f00000000000000000000000000000000000000000000000000000000000000008461274c91906146f0565b6127569190614635565b90505b60008390505b818110612867576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612853578093505050506128a3565b50808061285f90614824565b91505061275f565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289a9061443f565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826129798584612e20565b1490509392505050565b61299d828260405180602001604052806000815250612e76565b5050565b60006129c28473ffffffffffffffffffffffffffffffffffffffff16611f99565b15612b2b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129eb611f91565b8786866040518563ffffffff1660e01b8152600401612a0d94939291906140db565b602060405180830381600087803b158015612a2757600080fd5b505af1925050508015612a5857506040513d601f19601f82011682018060405250810190612a559190613a42565b60015b612adb573d8060008114612a88576040519150601f19603f3d011682016040523d82523d6000602084013e612a8d565b606091505b50600081511415612ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aca9061437f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b30565b600190505b949350505050565b606060108054612b479061484e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b739061484e565b8015612bc05780601f10612b9557610100808354040283529160200191612bc0565b820191906000526020600020905b815481529060010190602001808311612ba357829003601f168201915b5050505050905090565b60606000821415612c12576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d26565b600082905060005b60008214612c44578080612c2d906148b1565b915050600a82612c3d919061468b565b9150612c1a565b60008167ffffffffffffffff811115612c6057612c5f614a0b565b5b6040519080825280601f01601f191660200182016040528015612c925781602001600182028036833780820191505090505b5090505b60008514612d1f57600182612cab91906146f0565b9150600a85612cba919061491e565b6030612cc69190614635565b60f81b818381518110612cdc57612cdb6149dc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d18919061468b565b9450612c96565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d939061425f565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60008082905060005b8451811015612e6b57612e5682868381518110612e4957612e486149dc565b5b6020026020010151613356565b91508080612e63906148b1565b915050612e29565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee4906143bf565b60405180910390fd5b612ef681611f83565b15612f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2d9061439f565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f909061447f565b60405180910390fd5b612fa66000858386612e14565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516130a391906145ef565b6fffffffffffffffffffffffffffffffff1681526020018583602001516130ca91906145ef565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561333957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132d960008884886129a1565b613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f9061437f565b60405180910390fd5b8180613323906148b1565b9250508080613331906148b1565b915050613268565b508060018190555061334e6000878588612e1a565b505050505050565b600081831061336e576133698284613381565b613379565b6133788383613381565b5b905092915050565b600082600052816020526040600020905092915050565b8280546133a49061484e565b90600052602060002090601f0160209004810192826133c6576000855561340d565b82601f106133df57803560ff191683800117855561340d565b8280016001018555821561340d579182015b8281111561340c5782358255916020019190600101906133f1565b5b50905061341a9190613458565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613471576000816000905550600101613459565b5090565b600061348861348384614523565b6144fe565b905080838252602082019050828560208602820111156134ab576134aa614a44565b5b60005b858110156134db57816134c18882613597565b8452602084019350602083019250506001810190506134ae565b5050509392505050565b60006134f86134f38461454f565b6144fe565b9050808382526020820190508285602086028201111561351b5761351a614a44565b5b60005b8581101561354b5781613531888261365e565b84526020840193506020830192505060018101905061351e565b5050509392505050565b60006135686135638461457b565b6144fe565b90508281526020810184848401111561358457613583614a49565b5b61358f8482856147e2565b509392505050565b6000813590506135a681615126565b92915050565b600082601f8301126135c1576135c0614a3f565b5b81356135d1848260208601613475565b91505092915050565b600082601f8301126135ef576135ee614a3f565b5b81356135ff8482602086016134e5565b91505092915050565b60008083601f84011261361e5761361d614a3f565b5b8235905067ffffffffffffffff81111561363b5761363a614a3a565b5b60208301915083602082028301111561365757613656614a44565b5b9250929050565b60008135905061366d8161513d565b92915050565b60008135905061368281615154565b92915050565b6000813590506136978161516b565b92915050565b6000815190506136ac8161516b565b92915050565b600082601f8301126136c7576136c6614a3f565b5b81356136d7848260208601613555565b91505092915050565b60008083601f8401126136f6576136f5614a3f565b5b8235905067ffffffffffffffff81111561371357613712614a3a565b5b60208301915083600182028301111561372f5761372e614a44565b5b9250929050565b60008135905061374581615182565b92915050565b60008135905061375a81615199565b92915050565b60006020828403121561377657613775614a53565b5b600061378484828501613597565b91505092915050565b600080604083850312156137a4576137a3614a53565b5b60006137b285828601613597565b92505060206137c385828601613597565b9150509250929050565b6000806000606084860312156137e6576137e5614a53565b5b60006137f486828701613597565b935050602061380586828701613597565b925050604061381686828701613736565b9150509250925092565b6000806000806080858703121561383a57613839614a53565b5b600061384887828801613597565b945050602061385987828801613597565b935050604061386a87828801613736565b925050606085013567ffffffffffffffff81111561388b5761388a614a4e565b5b613897878288016136b2565b91505092959194509250565b600080604083850312156138ba576138b9614a53565b5b60006138c885828601613597565b92505060206138d98582860161365e565b9150509250929050565b600080604083850312156138fa576138f9614a53565b5b600061390885828601613597565b925050602061391985828601613736565b9150509250929050565b6000806040838503121561393a57613939614a53565b5b600083013567ffffffffffffffff81111561395857613957614a4e565b5b613964858286016135ac565b925050602083013567ffffffffffffffff81111561398557613984614a4e565b5b613991858286016135da565b9150509250929050565b600080602083850312156139b2576139b1614a53565b5b600083013567ffffffffffffffff8111156139d0576139cf614a4e565b5b6139dc85828601613608565b92509250509250929050565b6000602082840312156139fe576139fd614a53565b5b6000613a0c84828501613673565b91505092915050565b600060208284031215613a2b57613a2a614a53565b5b6000613a3984828501613688565b91505092915050565b600060208284031215613a5857613a57614a53565b5b6000613a668482850161369d565b91505092915050565b60008060208385031215613a8657613a85614a53565b5b600083013567ffffffffffffffff811115613aa457613aa3614a4e565b5b613ab0858286016136e0565b92509250509250929050565b600060208284031215613ad257613ad1614a53565b5b6000613ae084828501613736565b91505092915050565b60008060408385031215613b0057613aff614a53565b5b6000613b0e85828601613736565b9250506020613b1f8582860161365e565b9150509250929050565b600060208284031215613b3f57613b3e614a53565b5b6000613b4d8482850161374b565b91505092915050565b60008060408385031215613b6d57613b6c614a53565b5b6000613b7b8582860161374b565b9250506020613b8c8582860161374b565b9150509250929050565b613b9f81614724565b82525050565b613bae81614724565b82525050565b613bc5613bc082614724565b6148fa565b82525050565b613bd481614736565b82525050565b613be381614742565b82525050565b6000613bf4826145ac565b613bfe81856145c2565b9350613c0e8185602086016147f1565b613c1781614a58565b840191505092915050565b6000613c2d826145b7565b613c3781856145d3565b9350613c478185602086016147f1565b613c5081614a58565b840191505092915050565b6000613c66826145b7565b613c7081856145e4565b9350613c808185602086016147f1565b80840191505092915050565b6000613c996022836145d3565b9150613ca482614a76565b604082019050919050565b6000613cbc600e836145d3565b9150613cc782614ac5565b602082019050919050565b6000613cdf6026836145d3565b9150613cea82614aee565b604082019050919050565b6000613d02602a836145d3565b9150613d0d82614b3d565b604082019050919050565b6000613d256023836145d3565b9150613d3082614b8c565b604082019050919050565b6000613d486025836145d3565b9150613d5382614bdb565b604082019050919050565b6000613d6b6018836145d3565b9150613d7682614c2a565b602082019050919050565b6000613d8e6031836145d3565b9150613d9982614c53565b604082019050919050565b6000613db1601e836145d3565b9150613dbc82614ca2565b602082019050919050565b6000613dd4602b836145d3565b9150613ddf82614ccb565b604082019050919050565b6000613df76012836145d3565b9150613e0282614d1a565b602082019050919050565b6000613e1a6026836145d3565b9150613e2582614d43565b604082019050919050565b6000613e3d6005836145e4565b9150613e4882614d92565b600582019050919050565b6000613e606020836145d3565b9150613e6b82614dbb565b602082019050919050565b6000613e83602f836145d3565b9150613e8e82614de4565b604082019050919050565b6000613ea6601a836145d3565b9150613eb182614e33565b602082019050919050565b6000613ec96032836145d3565b9150613ed482614e5c565b604082019050919050565b6000613eec6033836145d3565b9150613ef782614eab565b604082019050919050565b6000613f0f601d836145d3565b9150613f1a82614efa565b602082019050919050565b6000613f326021836145d3565b9150613f3d82614f23565b604082019050919050565b6000613f556016836145d3565b9150613f6082614f72565b602082019050919050565b6000613f78602c836145d3565b9150613f8382614f9b565b604082019050919050565b6000613f9b602e836145d3565b9150613fa682614fea565b604082019050919050565b6000613fbe602f836145d3565b9150613fc982615039565b604082019050919050565b6000613fe1602d836145d3565b9150613fec82615088565b604082019050919050565b60006140046022836145d3565b915061400f826150d7565b604082019050919050565b6040820160008201516140306000850182613b96565b5060208201516140436020850182614067565b50505050565b614052816147b4565b82525050565b614061816147be565b82525050565b614070816147ce565b82525050565b60006140828284613bb4565b60148201915081905092915050565b600061409d8285613c5b565b91506140a98284613c5b565b91506140b482613e30565b91508190509392505050565b60006020820190506140d56000830184613ba5565b92915050565b60006080820190506140f06000830187613ba5565b6140fd6020830186613ba5565b61410a6040830185614049565b818103606083015261411c8184613be9565b905095945050505050565b600060208201905061413c6000830184613bcb565b92915050565b60006020820190506141576000830184613bda565b92915050565b600060208201905081810360008301526141778184613c22565b905092915050565b6000602082019050818103600083015261419881613c8c565b9050919050565b600060208201905081810360008301526141b881613caf565b9050919050565b600060208201905081810360008301526141d881613cd2565b9050919050565b600060208201905081810360008301526141f881613cf5565b9050919050565b6000602082019050818103600083015261421881613d18565b9050919050565b6000602082019050818103600083015261423881613d3b565b9050919050565b6000602082019050818103600083015261425881613d5e565b9050919050565b6000602082019050818103600083015261427881613d81565b9050919050565b6000602082019050818103600083015261429881613da4565b9050919050565b600060208201905081810360008301526142b881613dc7565b9050919050565b600060208201905081810360008301526142d881613dea565b9050919050565b600060208201905081810360008301526142f881613e0d565b9050919050565b6000602082019050818103600083015261431881613e53565b9050919050565b6000602082019050818103600083015261433881613e76565b9050919050565b6000602082019050818103600083015261435881613e99565b9050919050565b6000602082019050818103600083015261437881613ebc565b9050919050565b6000602082019050818103600083015261439881613edf565b9050919050565b600060208201905081810360008301526143b881613f02565b9050919050565b600060208201905081810360008301526143d881613f25565b9050919050565b600060208201905081810360008301526143f881613f48565b9050919050565b6000602082019050818103600083015261441881613f6b565b9050919050565b6000602082019050818103600083015261443881613f8e565b9050919050565b6000602082019050818103600083015261445881613fb1565b9050919050565b6000602082019050818103600083015261447881613fd4565b9050919050565b6000602082019050818103600083015261449881613ff7565b9050919050565b60006040820190506144b4600083018461401a565b92915050565b60006020820190506144cf6000830184614049565b92915050565b60006040820190506144ea6000830185614058565b6144f76020830184614058565b9392505050565b6000614508614519565b90506145148282614880565b919050565b6000604051905090565b600067ffffffffffffffff82111561453e5761453d614a0b565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561456a57614569614a0b565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561459657614595614a0b565b5b61459f82614a58565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145fa82614778565b915061460583614778565b9250826fffffffffffffffffffffffffffffffff0382111561462a5761462961494f565b5b828201905092915050565b6000614640826147b4565b915061464b836147b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146805761467f61494f565b5b828201905092915050565b6000614696826147b4565b91506146a1836147b4565b9250826146b1576146b061497e565b5b828204905092915050565b60006146c782614778565b91506146d283614778565b9250828210156146e5576146e461494f565b5b828203905092915050565b60006146fb826147b4565b9150614706836147b4565b9250828210156147195761471861494f565b5b828203905092915050565b600061472f82614794565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561480f5780820151818401526020810190506147f4565b8381111561481e576000848401525b50505050565b600061482f826147b4565b915060008214156148435761484261494f565b5b600182039050919050565b6000600282049050600182168061486657607f821691505b6020821081141561487a576148796149ad565b5b50919050565b61488982614a58565b810181811067ffffffffffffffff821117156148a8576148a7614a0b565b5b80604052505050565b60006148bc826147b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148ef576148ee61494f565b5b600182019050919050565b60006149058261490c565b9050919050565b600061491782614a69565b9050919050565b6000614929826147b4565b9150614934836147b4565b9250826149445761494361497e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f73616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f53616c65732077696c6c206265206f70656e6564206166746572206d696e742060008201527f697320636f6d706c6574652e0000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61512f81614724565b811461513a57600080fd5b50565b61514681614736565b811461515157600080fd5b50565b61515d81614742565b811461516857600080fd5b50565b6151748161474c565b811461517f57600080fd5b50565b61518b816147b4565b811461519657600080fd5b50565b6151a2816147be565b81146151ad57600080fd5b5056fea2646970667358221220e6626db036d0324fe1a6b349af1382a5a22dbfc56b5daa85720acda7a25e0d5664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000002710

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806370a0823111610144578063b1f7f0eb116100b6578063d7224ba01161007a578063d7224ba014610900578063d854d0f21461092b578063dc33e68114610954578063e985e9c514610991578063f2fde38b146109ce578063fdb8e34e146109f75761025c565b8063b1f7f0eb146107f5578063b88d4fde14610832578063c08051971461085b578063c87b56dd14610898578063d5abeb01146108d55761025c565b806390aa0b0f1161010857806390aa0b0f146106f15780639231ab2a1461071d57806395d89b411461075a5780639dfde201146107855780639fb17e34146107b0578063a22cb465146107cc5761025c565b806370a082311461061e578063715018a61461065b578063801fe59b146106725780638942932d146106895780638da5cb5b146106c65761025c565b80633f5e4741116101dd57806355a55465116101a157806355a554651461051257806355f804b31461053b5780636352211e14610564578063639814e0146105a157806367ba5ecc146105cc5780636f58ec48146105f55761025c565b80633f5e47411461042b57806342842e0e146104565780634aaf78f11461047f5780634c0f38c2146104aa5780634f6ccce7146104d55761025c565b806323b872dd1161022457806323b872dd1461035a57806328a4d1a7146103835780632a13614c146103ac5780632f745c59146103d75780633ccfd60b146104145761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd1461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613a15565b610a20565b6040516102959190614127565b60405180910390f35b3480156102aa57600080fd5b506102b3610b6a565b6040516102c0919061415d565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613abc565b610bfc565b6040516102fd91906140c0565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906138e3565b610c81565b005b34801561033b57600080fd5b50610344610e4c565b60405161035191906144ba565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c91906137cd565b610e56565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613b29565b610e66565b005b3480156103b857600080fd5b506103c1610e95565b6040516103ce9190614142565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f991906138e3565b610e9b565b60405161040b91906144ba565b60405180910390f35b34801561042057600080fd5b50610429611099565b005b34801561043757600080fd5b506104406110ba565b60405161044d9190614127565b60405180910390f35b34801561046257600080fd5b5061047d600480360381019061047891906137cd565b611107565b005b34801561048b57600080fd5b50610494611127565b6040516104a19190614127565b60405180910390f35b3480156104b657600080fd5b506104bf61113a565b6040516104cc91906144ba565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190613abc565b611144565b60405161050991906144ba565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190613ae9565b611197565b005b34801561054757600080fd5b50610562600480360381019061055d9190613a6f565b6111ce565b005b34801561057057600080fd5b5061058b60048036038101906105869190613abc565b6111ec565b60405161059891906140c0565b60405180910390f35b3480156105ad57600080fd5b506105b6611202565b6040516105c391906144ba565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee91906139e8565b611226565b005b34801561060157600080fd5b5061061c60048036038101906106179190613b29565b611238565b005b34801561062a57600080fd5b5061064560048036038101906106409190613760565b611267565b60405161065291906144ba565b60405180910390f35b34801561066757600080fd5b50610670611350565b005b34801561067e57600080fd5b50610687611364565b005b34801561069557600080fd5b506106b060048036038101906106ab919061399b565b611398565b6040516106bd9190614127565b60405180910390f35b3480156106d257600080fd5b506106db6114dd565b6040516106e891906140c0565b60405180910390f35b3480156106fd57600080fd5b50610706611506565b6040516107149291906144d5565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f9190613abc565b611538565b604051610751919061449f565b60405180910390f35b34801561076657600080fd5b5061076f611550565b60405161077c919061415d565b60405180910390f35b34801561079157600080fd5b5061079a6115e2565b6040516107a791906144ba565b60405180910390f35b6107ca60048036038101906107c59190613abc565b6115e7565b005b3480156107d857600080fd5b506107f360048036038101906107ee91906138a3565b6117be565b005b34801561080157600080fd5b5061081c60048036038101906108179190613760565b611b17565b6040516108299190614127565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613820565b611b37565b005b34801561086757600080fd5b50610882600480360381019061087d9190613abc565b611b93565b60405161088f9190614127565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613abc565b611bb3565b6040516108cc919061415d565b60405180910390f35b3480156108e157600080fd5b506108ea611c5a565b6040516108f791906144ba565b60405180910390f35b34801561090c57600080fd5b50610915611c60565b60405161092291906144ba565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613b56565b611c66565b005b34801561096057600080fd5b5061097b60048036038101906109769190613760565b611ce6565b60405161098891906144ba565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b3919061378d565b611cf8565b6040516109c59190614127565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f09190613760565b611dde565b005b348015610a0357600080fd5b50610a1e6004803603810190610a199190613923565b611e62565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aeb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b635750610b6282611f19565b5b9050919050565b606060048054610b799061484e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba59061484e565b8015610bf25780601f10610bc757610100808354040283529160200191610bf2565b820191906000526020600020905b815481529060010190602001808311610bd557829003601f168201915b5050505050905090565b6000610c0782611f83565b610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d9061445f565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c89611f91565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee9061433f565b60405180910390fd5b6000610d02826111ec565b90508073ffffffffffffffffffffffffffffffffffffffff16610d23611f91565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d555750610d5381610d4e611f91565b611cf8565b155b15610d8c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600360009054906101000a900460ff16158015610dc75750600a600083815260200190815260200160002060009054906101000a900460ff16155b15610e3b57610deb8373ffffffffffffffffffffffffffffffffffffffff16611f99565b15610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e22906143ff565b60405180910390fd5b610e36838383611fbc565b610e47565b610e46838383611fbc565b5b505050565b6000600154905090565b610e6183838361206e565b505050565b610e6e612627565b80600f60000160006101000a81548163ffffffff021916908363ffffffff16021790555050565b60025481565b6000610ea683611267565b8210610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede9061417f565b60405180910390fd5b6000610ef1610e4c565b905060008060005b83811015611057576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610feb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110435786841415611034578195505050505050611093565b838061103f906148b1565b9450505b50808061104f906148b1565b915050610ef9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a9061441f565b60405180910390fd5b92915050565b6110a1612627565b3373ffffffffffffffffffffffffffffffffffffffff16ff5b600080600f60000160049054906101000a900463ffffffff1663ffffffff16141580156111025750600f60000160049054906101000a900463ffffffff1663ffffffff164210155b905090565b61112283838360405180602001604052806000815250611b37565b505050565b600360009054906101000a900460ff1681565b6000600e54905090565b600061114e610e4c565b821061118f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611186906141ff565b60405180910390fd5b819050919050565b61119f612627565b80600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111d6612627565b8181601091906111e7929190613398565b505050565b60006111f7826126a5565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000a81565b61122e612627565b8060028190555050565b611240612627565b80600f60000160046101000a81548163ffffffff021916908363ffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf9061429f565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611358612627565b61136260006128a8565b565b61136c612627565b600360009054906101000a900460ff1615600360006101000a81548160ff021916908315150217905550565b600080336040516020016113ac9190614076565b6040516020818303038152906040528051906020012090506000326040516020016113d79190614076565b60405160208183030381529060405280519060200120905061143d858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506002548461296c565b806114925750611491858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506002548361296c565b5b6114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c89061419f565b60405180910390fd5b60019250505092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f8060000160009054906101000a900463ffffffff16908060000160049054906101000a900463ffffffff16905082565b61154061341e565b611549826126a5565b9050919050565b60606005805461155f9061484e565b80601f016020809104026020016040519081016040528092919081815260200182805461158b9061484e565b80156115d85780601f106115ad576101008083540402835291602001916115d8565b820191906000526020600020905b8154815290600101906020018083116115bb57829003601f168201915b5050505050905090565b600081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c9061427f565b60405180910390fd5b6000600f60000160009054906101000a900463ffffffff1663ffffffff169050600081141580156116865750804210155b6116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc9061423f565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000002710826116ef610e4c565b6116f99190614635565b111561173a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611731906142bf565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8261176533611ce6565b61176f9190614635565b11156117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a7906143df565b60405180910390fd5b6117ba3383612983565b5050565b6117c6611f91565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b9061433f565b60405180910390fd5b600360009054906101000a900460ff1615801561189b5750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a0b576118bf8273ffffffffffffffffffffffffffffffffffffffff16611f99565b156118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f6906143ff565b60405180910390fd5b806009600061190c611f91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119b9611f91565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119fe9190614127565b60405180910390a3611b13565b8060096000611a18611f91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac5611f91565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0a9190614127565b60405180910390a35b5050565b600b6020528060005260406000206000915054906101000a900460ff1681565b611b4284848461206e565b611b4e848484846129a1565b611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b849061437f565b60405180910390fd5b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6060611bbe82611f83565b611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf49061431f565b60405180910390fd5b6000611c07612b38565b90506000815111611c275760405180602001604052806000815250611c52565b80611c3184612bca565b604051602001611c42929190614091565b6040516020818303038152906040525b915050919050565b600e5481565b600c5481565b611c6e612627565b60405180604001604052808363ffffffff1681526020018263ffffffff16815250600f60008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548163ffffffff021916908363ffffffff1602179055509050505050565b6000611cf182612d2b565b9050919050565b6000736629d098418de6a76a4d03ed89ccc36e5792127473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d4b5760019050611dd8565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b92915050565b611de6612627565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d906141bf565b60405180910390fd5b611e5f816128a8565b50565b611e6a612627565b60005b8251811015611f1457818181518110611e8957611e886149dc565b5b6020026020010151600b6000858481518110611ea857611ea76149dc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611f0c906148b1565b915050611e6d565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612079826126a5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120a0611f91565b73ffffffffffffffffffffffffffffffffffffffff1614806120fc57506120c5611f91565b73ffffffffffffffffffffffffffffffffffffffff166120e484610bfc565b73ffffffffffffffffffffffffffffffffffffffff16145b8061211857506121178260000151612112611f91565b611cf8565b5b90508061215a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121519061435f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c3906142df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561223c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122339061421f565b60405180910390fd5b6122498585856001612e14565b6122596000848460000151611fbc565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122c791906146bc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661236b91906145ef565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124719190614635565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125b7576124e781611f83565b156125b6576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461261f8686866001612e1a565b505050505050565b61262f611f91565b73ffffffffffffffffffffffffffffffffffffffff1661264d6114dd565b73ffffffffffffffffffffffffffffffffffffffff16146126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a906142ff565b60405180910390fd5b565b6126ad61341e565b6126b682611f83565b6126f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ec906141df565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106127595760017f000000000000000000000000000000000000000000000000000000000000000a8461274c91906146f0565b6127569190614635565b90505b60008390505b818110612867576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612853578093505050506128a3565b50808061285f90614824565b91505061275f565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289a9061443f565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826129798584612e20565b1490509392505050565b61299d828260405180602001604052806000815250612e76565b5050565b60006129c28473ffffffffffffffffffffffffffffffffffffffff16611f99565b15612b2b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129eb611f91565b8786866040518563ffffffff1660e01b8152600401612a0d94939291906140db565b602060405180830381600087803b158015612a2757600080fd5b505af1925050508015612a5857506040513d601f19601f82011682018060405250810190612a559190613a42565b60015b612adb573d8060008114612a88576040519150601f19603f3d011682016040523d82523d6000602084013e612a8d565b606091505b50600081511415612ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aca9061437f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b30565b600190505b949350505050565b606060108054612b479061484e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b739061484e565b8015612bc05780601f10612b9557610100808354040283529160200191612bc0565b820191906000526020600020905b815481529060010190602001808311612ba357829003601f168201915b5050505050905090565b60606000821415612c12576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d26565b600082905060005b60008214612c44578080612c2d906148b1565b915050600a82612c3d919061468b565b9150612c1a565b60008167ffffffffffffffff811115612c6057612c5f614a0b565b5b6040519080825280601f01601f191660200182016040528015612c925781602001600182028036833780820191505090505b5090505b60008514612d1f57600182612cab91906146f0565b9150600a85612cba919061491e565b6030612cc69190614635565b60f81b818381518110612cdc57612cdb6149dc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d18919061468b565b9450612c96565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d939061425f565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60008082905060005b8451811015612e6b57612e5682868381518110612e4957612e486149dc565b5b6020026020010151613356565b91508080612e63906148b1565b915050612e29565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee4906143bf565b60405180910390fd5b612ef681611f83565b15612f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2d9061439f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115612f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f909061447f565b60405180910390fd5b612fa66000858386612e14565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516130a391906145ef565b6fffffffffffffffffffffffffffffffff1681526020018583602001516130ca91906145ef565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561333957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132d960008884886129a1565b613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f9061437f565b60405180910390fd5b8180613323906148b1565b9250508080613331906148b1565b915050613268565b508060018190555061334e6000878588612e1a565b505050505050565b600081831061336e576133698284613381565b613379565b6133788383613381565b5b905092915050565b600082600052816020526040600020905092915050565b8280546133a49061484e565b90600052602060002090601f0160209004810192826133c6576000855561340d565b82601f106133df57803560ff191683800117855561340d565b8280016001018555821561340d579182015b8281111561340c5782358255916020019190600101906133f1565b5b50905061341a9190613458565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613471576000816000905550600101613459565b5090565b600061348861348384614523565b6144fe565b905080838252602082019050828560208602820111156134ab576134aa614a44565b5b60005b858110156134db57816134c18882613597565b8452602084019350602083019250506001810190506134ae565b5050509392505050565b60006134f86134f38461454f565b6144fe565b9050808382526020820190508285602086028201111561351b5761351a614a44565b5b60005b8581101561354b5781613531888261365e565b84526020840193506020830192505060018101905061351e565b5050509392505050565b60006135686135638461457b565b6144fe565b90508281526020810184848401111561358457613583614a49565b5b61358f8482856147e2565b509392505050565b6000813590506135a681615126565b92915050565b600082601f8301126135c1576135c0614a3f565b5b81356135d1848260208601613475565b91505092915050565b600082601f8301126135ef576135ee614a3f565b5b81356135ff8482602086016134e5565b91505092915050565b60008083601f84011261361e5761361d614a3f565b5b8235905067ffffffffffffffff81111561363b5761363a614a3a565b5b60208301915083602082028301111561365757613656614a44565b5b9250929050565b60008135905061366d8161513d565b92915050565b60008135905061368281615154565b92915050565b6000813590506136978161516b565b92915050565b6000815190506136ac8161516b565b92915050565b600082601f8301126136c7576136c6614a3f565b5b81356136d7848260208601613555565b91505092915050565b60008083601f8401126136f6576136f5614a3f565b5b8235905067ffffffffffffffff81111561371357613712614a3a565b5b60208301915083600182028301111561372f5761372e614a44565b5b9250929050565b60008135905061374581615182565b92915050565b60008135905061375a81615199565b92915050565b60006020828403121561377657613775614a53565b5b600061378484828501613597565b91505092915050565b600080604083850312156137a4576137a3614a53565b5b60006137b285828601613597565b92505060206137c385828601613597565b9150509250929050565b6000806000606084860312156137e6576137e5614a53565b5b60006137f486828701613597565b935050602061380586828701613597565b925050604061381686828701613736565b9150509250925092565b6000806000806080858703121561383a57613839614a53565b5b600061384887828801613597565b945050602061385987828801613597565b935050604061386a87828801613736565b925050606085013567ffffffffffffffff81111561388b5761388a614a4e565b5b613897878288016136b2565b91505092959194509250565b600080604083850312156138ba576138b9614a53565b5b60006138c885828601613597565b92505060206138d98582860161365e565b9150509250929050565b600080604083850312156138fa576138f9614a53565b5b600061390885828601613597565b925050602061391985828601613736565b9150509250929050565b6000806040838503121561393a57613939614a53565b5b600083013567ffffffffffffffff81111561395857613957614a4e565b5b613964858286016135ac565b925050602083013567ffffffffffffffff81111561398557613984614a4e565b5b613991858286016135da565b9150509250929050565b600080602083850312156139b2576139b1614a53565b5b600083013567ffffffffffffffff8111156139d0576139cf614a4e565b5b6139dc85828601613608565b92509250509250929050565b6000602082840312156139fe576139fd614a53565b5b6000613a0c84828501613673565b91505092915050565b600060208284031215613a2b57613a2a614a53565b5b6000613a3984828501613688565b91505092915050565b600060208284031215613a5857613a57614a53565b5b6000613a668482850161369d565b91505092915050565b60008060208385031215613a8657613a85614a53565b5b600083013567ffffffffffffffff811115613aa457613aa3614a4e565b5b613ab0858286016136e0565b92509250509250929050565b600060208284031215613ad257613ad1614a53565b5b6000613ae084828501613736565b91505092915050565b60008060408385031215613b0057613aff614a53565b5b6000613b0e85828601613736565b9250506020613b1f8582860161365e565b9150509250929050565b600060208284031215613b3f57613b3e614a53565b5b6000613b4d8482850161374b565b91505092915050565b60008060408385031215613b6d57613b6c614a53565b5b6000613b7b8582860161374b565b9250506020613b8c8582860161374b565b9150509250929050565b613b9f81614724565b82525050565b613bae81614724565b82525050565b613bc5613bc082614724565b6148fa565b82525050565b613bd481614736565b82525050565b613be381614742565b82525050565b6000613bf4826145ac565b613bfe81856145c2565b9350613c0e8185602086016147f1565b613c1781614a58565b840191505092915050565b6000613c2d826145b7565b613c3781856145d3565b9350613c478185602086016147f1565b613c5081614a58565b840191505092915050565b6000613c66826145b7565b613c7081856145e4565b9350613c808185602086016147f1565b80840191505092915050565b6000613c996022836145d3565b9150613ca482614a76565b604082019050919050565b6000613cbc600e836145d3565b9150613cc782614ac5565b602082019050919050565b6000613cdf6026836145d3565b9150613cea82614aee565b604082019050919050565b6000613d02602a836145d3565b9150613d0d82614b3d565b604082019050919050565b6000613d256023836145d3565b9150613d3082614b8c565b604082019050919050565b6000613d486025836145d3565b9150613d5382614bdb565b604082019050919050565b6000613d6b6018836145d3565b9150613d7682614c2a565b602082019050919050565b6000613d8e6031836145d3565b9150613d9982614c53565b604082019050919050565b6000613db1601e836145d3565b9150613dbc82614ca2565b602082019050919050565b6000613dd4602b836145d3565b9150613ddf82614ccb565b604082019050919050565b6000613df76012836145d3565b9150613e0282614d1a565b602082019050919050565b6000613e1a6026836145d3565b9150613e2582614d43565b604082019050919050565b6000613e3d6005836145e4565b9150613e4882614d92565b600582019050919050565b6000613e606020836145d3565b9150613e6b82614dbb565b602082019050919050565b6000613e83602f836145d3565b9150613e8e82614de4565b604082019050919050565b6000613ea6601a836145d3565b9150613eb182614e33565b602082019050919050565b6000613ec96032836145d3565b9150613ed482614e5c565b604082019050919050565b6000613eec6033836145d3565b9150613ef782614eab565b604082019050919050565b6000613f0f601d836145d3565b9150613f1a82614efa565b602082019050919050565b6000613f326021836145d3565b9150613f3d82614f23565b604082019050919050565b6000613f556016836145d3565b9150613f6082614f72565b602082019050919050565b6000613f78602c836145d3565b9150613f8382614f9b565b604082019050919050565b6000613f9b602e836145d3565b9150613fa682614fea565b604082019050919050565b6000613fbe602f836145d3565b9150613fc982615039565b604082019050919050565b6000613fe1602d836145d3565b9150613fec82615088565b604082019050919050565b60006140046022836145d3565b915061400f826150d7565b604082019050919050565b6040820160008201516140306000850182613b96565b5060208201516140436020850182614067565b50505050565b614052816147b4565b82525050565b614061816147be565b82525050565b614070816147ce565b82525050565b60006140828284613bb4565b60148201915081905092915050565b600061409d8285613c5b565b91506140a98284613c5b565b91506140b482613e30565b91508190509392505050565b60006020820190506140d56000830184613ba5565b92915050565b60006080820190506140f06000830187613ba5565b6140fd6020830186613ba5565b61410a6040830185614049565b818103606083015261411c8184613be9565b905095945050505050565b600060208201905061413c6000830184613bcb565b92915050565b60006020820190506141576000830184613bda565b92915050565b600060208201905081810360008301526141778184613c22565b905092915050565b6000602082019050818103600083015261419881613c8c565b9050919050565b600060208201905081810360008301526141b881613caf565b9050919050565b600060208201905081810360008301526141d881613cd2565b9050919050565b600060208201905081810360008301526141f881613cf5565b9050919050565b6000602082019050818103600083015261421881613d18565b9050919050565b6000602082019050818103600083015261423881613d3b565b9050919050565b6000602082019050818103600083015261425881613d5e565b9050919050565b6000602082019050818103600083015261427881613d81565b9050919050565b6000602082019050818103600083015261429881613da4565b9050919050565b600060208201905081810360008301526142b881613dc7565b9050919050565b600060208201905081810360008301526142d881613dea565b9050919050565b600060208201905081810360008301526142f881613e0d565b9050919050565b6000602082019050818103600083015261431881613e53565b9050919050565b6000602082019050818103600083015261433881613e76565b9050919050565b6000602082019050818103600083015261435881613e99565b9050919050565b6000602082019050818103600083015261437881613ebc565b9050919050565b6000602082019050818103600083015261439881613edf565b9050919050565b600060208201905081810360008301526143b881613f02565b9050919050565b600060208201905081810360008301526143d881613f25565b9050919050565b600060208201905081810360008301526143f881613f48565b9050919050565b6000602082019050818103600083015261441881613f6b565b9050919050565b6000602082019050818103600083015261443881613f8e565b9050919050565b6000602082019050818103600083015261445881613fb1565b9050919050565b6000602082019050818103600083015261447881613fd4565b9050919050565b6000602082019050818103600083015261449881613ff7565b9050919050565b60006040820190506144b4600083018461401a565b92915050565b60006020820190506144cf6000830184614049565b92915050565b60006040820190506144ea6000830185614058565b6144f76020830184614058565b9392505050565b6000614508614519565b90506145148282614880565b919050565b6000604051905090565b600067ffffffffffffffff82111561453e5761453d614a0b565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561456a57614569614a0b565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561459657614595614a0b565b5b61459f82614a58565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145fa82614778565b915061460583614778565b9250826fffffffffffffffffffffffffffffffff0382111561462a5761462961494f565b5b828201905092915050565b6000614640826147b4565b915061464b836147b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146805761467f61494f565b5b828201905092915050565b6000614696826147b4565b91506146a1836147b4565b9250826146b1576146b061497e565b5b828204905092915050565b60006146c782614778565b91506146d283614778565b9250828210156146e5576146e461494f565b5b828203905092915050565b60006146fb826147b4565b9150614706836147b4565b9250828210156147195761471861494f565b5b828203905092915050565b600061472f82614794565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561480f5780820151818401526020810190506147f4565b8381111561481e576000848401525b50505050565b600061482f826147b4565b915060008214156148435761484261494f565b5b600182039050919050565b6000600282049050600182168061486657607f821691505b6020821081141561487a576148796149ad565b5b50919050565b61488982614a58565b810181811067ffffffffffffffff821117156148a8576148a7614a0b565b5b80604052505050565b60006148bc826147b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148ef576148ee61494f565b5b600182019050919050565b60006149058261490c565b9050919050565b600061491782614a69565b9050919050565b6000614929826147b4565b9150614934836147b4565b9250826149445761494361497e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f73616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f53616c65732077696c6c206265206f70656e6564206166746572206d696e742060008201527f697320636f6d706c6574652e0000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61512f81614724565b811461513a57600080fd5b50565b61514681614736565b811461515157600080fd5b50565b61515d81614742565b811461516857600080fd5b50565b6151748161474c565b811461517f57600080fd5b50565b61518b816147b4565b811461519657600080fd5b50565b6151a2816147be565b81146151ad57600080fd5b5056fea2646970667358221220e6626db036d0324fe1a6b349af1382a5a22dbfc56b5daa85720acda7a25e0d5664736f6c63430008070033

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:2451: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;:::-;;56493:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37033:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39708:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56623:87;;;;;;;;;;;;;:::i;:::-;;55922:163;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46699:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37235:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55305:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39240:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43405:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56830:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42065:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54807:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43798:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56375:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40942:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35175:103;;;;;;;;;;;;;:::i;:::-;;43291:106;;;;;;;;;;;;;:::i;:::-;;43936:415;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34527:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54975:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;57049:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42397:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56091:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55392:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45404:706;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38248:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46919:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38098:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42558:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54850:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51334:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56172:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56936: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;56493:124::-;34413:13;:11;:13::i;:::-;56602:9:::1;56569:10;:30;;;:42;;;;;;;;;;;;;;;;;;56493: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;56623:87::-;34413:13;:11;:13::i;:::-;56692:10:::1;56671:33;;;55922:163:::0;55969:4;56024:1;55996:10;:24;;;;;;;;;;;;:29;;;;:83;;;;;56055:10;:24;;;;;;;;;;;;56036:43;;:15;:43;;55996:83;55982:97;;55922:163;:::o;46699:157::-;46811:39;46828:4;46834:2;46838:7;46811:39;;;;;;;;;;;;:16;:39::i;:::-;46699:157;;;:::o;37235:37::-;;;;;;;;;;;;;:::o;55305:81::-;55349:7;55371:9;;55364:16;;55305: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;56830:100::-;34413:13;:11;:13::i;:::-;56917:7:::1;;56901:13;:23;;;;;;;:::i;:::-;;56830:100:::0;;:::o;42065:118::-;42129:7;42152:20;42164:7;42152:11;:20::i;:::-;:25;;;42145:32;;42065:118;;;:::o;54807:38::-;;;:::o;43798:130::-;34413:13;:11;:13::i;:::-;43909:11:::1;43883:23;:37;;;;43798:130:::0;:::o;56375:112::-;34413:13;:11;:13::i;:::-;56472:9:::1;56445:10;:24;;;:36;;;;;;;;;;;;;;;;;;56375: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;34527:87::-;34573:7;34600:6;;;;;;;;;;;34593:13;;34527:87;:::o;54975:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57049:147::-;57130:21;;:::i;:::-;57170:20;57182:7;57170:11;:20::i;:::-;57163:27;;57049:147;;;:::o;42397:98::-;42453:13;42482:7;42475:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42397:98;:::o;56091:39::-;56123:7;56091:39;:::o;55392:524::-;55240:10;55227:23;;:9;:23;;;55219:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;55471:28:::1;55510:10;:30;;;;;;;;;;;;55502:39;;55471:70;;55588:1;55564:20;:25;;:68;;;;;55612:20;55593:15;:39;;55564:68;55548:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;55717:14;55705:8;55689:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;55681:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55819:13;55807:8;55780:24;55793:10;55780:12;:24::i;:::-;:35;;;;:::i;:::-;:52;;55764:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;55879:31;55889:10;55901:8;55879:9;:31::i;:::-;55460:456;55392:524:::0;:::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;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;54850:28::-;;;;:::o;51334:43::-;;;;:::o;56172:197::-;34413:13;:11;:13::i;:::-;56300:63:::1;;;;;;;;56317:19;56300:63;;;;;;56343:13;56300:63;;;;::::0;56287:10:::1;:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56172:197:::0;;:::o;56936:107::-;56994:7;57017:20;57031:5;57017:13;:20::i;:::-;57010:27;;56936: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;47580:98::-;47645:27;47655:2;47659:8;47645:27;;;;;;;;;;;;:9;:27::i;:::-;47580:98;;:::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;56716:108::-;56776:13;56805;56798:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56716: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:470::-;12774:6;12782;12831:2;12819:9;12810:7;12806:23;12802:32;12799:119;;;12837:79;;:::i;:::-;12799:119;12957:1;12982:52;13026:7;13017:6;13006:9;13002:22;12982:52;:::i;:::-;12972:62;;12928:116;13083:2;13109:52;13153:7;13144:6;13133:9;13129:22;13109:52;:::i;:::-;13099:62;;13054:117;12708:470;;;;;:::o;13184:108::-;13261:24;13279:5;13261:24;:::i;:::-;13256:3;13249:37;13184:108;;:::o;13298:118::-;13385:24;13403:5;13385:24;:::i;:::-;13380:3;13373:37;13298:118;;:::o;13422:157::-;13527:45;13547:24;13565:5;13547:24;:::i;:::-;13527:45;:::i;:::-;13522:3;13515:58;13422:157;;:::o;13585:109::-;13666:21;13681:5;13666:21;:::i;:::-;13661:3;13654:34;13585:109;;:::o;13700:118::-;13787:24;13805:5;13787:24;:::i;:::-;13782:3;13775:37;13700:118;;:::o;13824:360::-;13910:3;13938:38;13970:5;13938:38;:::i;:::-;13992:70;14055:6;14050:3;13992:70;:::i;:::-;13985:77;;14071:52;14116:6;14111:3;14104:4;14097:5;14093:16;14071:52;:::i;:::-;14148:29;14170:6;14148:29;:::i;:::-;14143:3;14139:39;14132:46;;13914:270;13824:360;;;;:::o;14190:364::-;14278:3;14306:39;14339:5;14306:39;:::i;:::-;14361:71;14425:6;14420:3;14361:71;:::i;:::-;14354:78;;14441:52;14486:6;14481:3;14474:4;14467:5;14463:16;14441:52;:::i;:::-;14518:29;14540:6;14518:29;:::i;:::-;14513:3;14509:39;14502:46;;14282:272;14190:364;;;;:::o;14560:377::-;14666:3;14694:39;14727:5;14694:39;:::i;:::-;14749:89;14831:6;14826:3;14749:89;:::i;:::-;14742:96;;14847:52;14892:6;14887:3;14880:4;14873:5;14869:16;14847:52;:::i;:::-;14924:6;14919:3;14915:16;14908:23;;14670:267;14560:377;;;;:::o;14943:366::-;15085:3;15106:67;15170:2;15165:3;15106:67;:::i;:::-;15099:74;;15182:93;15271:3;15182:93;:::i;:::-;15300:2;15295:3;15291:12;15284:19;;14943:366;;;:::o;15315:::-;15457:3;15478:67;15542:2;15537:3;15478:67;:::i;:::-;15471:74;;15554:93;15643:3;15554:93;:::i;:::-;15672:2;15667:3;15663:12;15656:19;;15315:366;;;:::o;15687:::-;15829:3;15850:67;15914:2;15909:3;15850:67;:::i;:::-;15843:74;;15926:93;16015:3;15926:93;:::i;:::-;16044:2;16039:3;16035:12;16028:19;;15687:366;;;:::o;16059:::-;16201:3;16222:67;16286:2;16281:3;16222:67;:::i;:::-;16215:74;;16298:93;16387:3;16298:93;:::i;:::-;16416:2;16411:3;16407:12;16400:19;;16059:366;;;:::o;16431:::-;16573:3;16594:67;16658:2;16653:3;16594:67;:::i;:::-;16587:74;;16670:93;16759:3;16670:93;:::i;:::-;16788:2;16783:3;16779:12;16772:19;;16431:366;;;:::o;16803:::-;16945:3;16966:67;17030:2;17025:3;16966:67;:::i;:::-;16959:74;;17042:93;17131:3;17042:93;:::i;:::-;17160:2;17155:3;17151:12;17144:19;;16803:366;;;:::o;17175:::-;17317:3;17338:67;17402:2;17397:3;17338:67;:::i;:::-;17331:74;;17414:93;17503:3;17414:93;:::i;:::-;17532:2;17527:3;17523:12;17516:19;;17175:366;;;:::o;17547:::-;17689:3;17710:67;17774:2;17769:3;17710:67;:::i;:::-;17703:74;;17786:93;17875:3;17786:93;:::i;:::-;17904:2;17899:3;17895:12;17888:19;;17547:366;;;:::o;17919:::-;18061:3;18082:67;18146:2;18141:3;18082:67;:::i;:::-;18075:74;;18158:93;18247:3;18158:93;:::i;:::-;18276:2;18271:3;18267:12;18260:19;;17919:366;;;:::o;18291:::-;18433:3;18454:67;18518:2;18513:3;18454:67;:::i;:::-;18447:74;;18530:93;18619:3;18530:93;:::i;:::-;18648:2;18643:3;18639:12;18632:19;;18291:366;;;:::o;18663:::-;18805:3;18826:67;18890:2;18885:3;18826:67;:::i;:::-;18819:74;;18902:93;18991:3;18902:93;:::i;:::-;19020:2;19015:3;19011:12;19004:19;;18663:366;;;:::o;19035:::-;19177:3;19198:67;19262:2;19257:3;19198:67;:::i;:::-;19191:74;;19274:93;19363:3;19274:93;:::i;:::-;19392:2;19387:3;19383:12;19376:19;;19035:366;;;:::o;19407:400::-;19567:3;19588:84;19670:1;19665:3;19588:84;:::i;:::-;19581:91;;19681:93;19770:3;19681:93;:::i;:::-;19799:1;19794:3;19790:11;19783:18;;19407:400;;;:::o;19813:366::-;19955:3;19976:67;20040:2;20035:3;19976:67;:::i;:::-;19969:74;;20052:93;20141:3;20052:93;:::i;:::-;20170:2;20165:3;20161:12;20154:19;;19813:366;;;:::o;20185:::-;20327:3;20348:67;20412:2;20407:3;20348:67;:::i;:::-;20341:74;;20424:93;20513:3;20424:93;:::i;:::-;20542:2;20537:3;20533:12;20526:19;;20185:366;;;:::o;20557:::-;20699:3;20720:67;20784:2;20779:3;20720:67;:::i;:::-;20713:74;;20796:93;20885:3;20796:93;:::i;:::-;20914:2;20909:3;20905:12;20898:19;;20557:366;;;:::o;20929:::-;21071:3;21092:67;21156:2;21151:3;21092:67;:::i;:::-;21085:74;;21168:93;21257:3;21168:93;:::i;:::-;21286:2;21281:3;21277:12;21270:19;;20929:366;;;:::o;21301:::-;21443:3;21464:67;21528:2;21523:3;21464:67;:::i;:::-;21457:74;;21540:93;21629:3;21540:93;:::i;:::-;21658:2;21653:3;21649:12;21642:19;;21301:366;;;:::o;21673:::-;21815:3;21836:67;21900:2;21895:3;21836:67;:::i;:::-;21829:74;;21912:93;22001:3;21912:93;:::i;:::-;22030:2;22025:3;22021:12;22014:19;;21673:366;;;:::o;22045:::-;22187:3;22208:67;22272:2;22267:3;22208:67;:::i;:::-;22201:74;;22284:93;22373:3;22284:93;:::i;:::-;22402:2;22397:3;22393:12;22386:19;;22045:366;;;:::o;22417:::-;22559:3;22580:67;22644:2;22639:3;22580:67;:::i;:::-;22573:74;;22656:93;22745:3;22656:93;:::i;:::-;22774:2;22769:3;22765:12;22758:19;;22417:366;;;:::o;22789:::-;22931:3;22952:67;23016:2;23011:3;22952:67;:::i;:::-;22945:74;;23028:93;23117:3;23028:93;:::i;:::-;23146:2;23141:3;23137:12;23130:19;;22789:366;;;:::o;23161:::-;23303:3;23324:67;23388:2;23383:3;23324:67;:::i;:::-;23317:74;;23400:93;23489:3;23400:93;:::i;:::-;23518:2;23513:3;23509:12;23502:19;;23161:366;;;:::o;23533:::-;23675:3;23696:67;23760:2;23755:3;23696:67;:::i;:::-;23689:74;;23772:93;23861:3;23772:93;:::i;:::-;23890:2;23885:3;23881:12;23874:19;;23533:366;;;:::o;23905:::-;24047:3;24068:67;24132:2;24127:3;24068:67;:::i;:::-;24061:74;;24144:93;24233:3;24144:93;:::i;:::-;24262:2;24257:3;24253:12;24246:19;;23905:366;;;:::o;24277:::-;24419:3;24440:67;24504:2;24499:3;24440:67;:::i;:::-;24433:74;;24516:93;24605:3;24516:93;:::i;:::-;24634:2;24629:3;24625:12;24618:19;;24277:366;;;:::o;24719:529::-;24880:4;24875:3;24871:14;24967:4;24960:5;24956:16;24950:23;24986:63;25043:4;25038:3;25034:14;25020:12;24986:63;:::i;:::-;24895:164;25151:4;25144:5;25140:16;25134:23;25170:61;25225:4;25220:3;25216:14;25202:12;25170:61;:::i;:::-;25069:172;24849:399;24719:529;;:::o;25254:118::-;25341:24;25359:5;25341:24;:::i;:::-;25336:3;25329:37;25254:118;;:::o;25378:115::-;25463:23;25480:5;25463:23;:::i;:::-;25458:3;25451:36;25378:115;;:::o;25499:105::-;25574:23;25591:5;25574:23;:::i;:::-;25569:3;25562:36;25499:105;;:::o;25610:256::-;25722:3;25737:75;25808:3;25799:6;25737:75;:::i;:::-;25837:2;25832:3;25828:12;25821:19;;25857:3;25850:10;;25610:256;;;;:::o;25872:701::-;26153:3;26175:95;26266:3;26257:6;26175:95;:::i;:::-;26168:102;;26287:95;26378:3;26369:6;26287:95;:::i;:::-;26280:102;;26399:148;26543:3;26399:148;:::i;:::-;26392:155;;26564:3;26557:10;;25872:701;;;;;:::o;26579:222::-;26672:4;26710:2;26699:9;26695:18;26687:26;;26723:71;26791:1;26780:9;26776:17;26767:6;26723:71;:::i;:::-;26579:222;;;;:::o;26807:640::-;27002:4;27040:3;27029:9;27025:19;27017:27;;27054:71;27122:1;27111:9;27107:17;27098:6;27054:71;:::i;:::-;27135:72;27203:2;27192:9;27188:18;27179:6;27135:72;:::i;:::-;27217;27285:2;27274:9;27270:18;27261:6;27217:72;:::i;:::-;27336:9;27330:4;27326:20;27321:2;27310:9;27306:18;27299:48;27364:76;27435:4;27426:6;27364:76;:::i;:::-;27356:84;;26807:640;;;;;;;:::o;27453:210::-;27540:4;27578:2;27567:9;27563:18;27555:26;;27591:65;27653:1;27642:9;27638:17;27629:6;27591:65;:::i;:::-;27453:210;;;;:::o;27669:222::-;27762:4;27800:2;27789:9;27785:18;27777:26;;27813:71;27881:1;27870:9;27866:17;27857:6;27813:71;:::i;:::-;27669:222;;;;:::o;27897:313::-;28010:4;28048:2;28037:9;28033:18;28025:26;;28097:9;28091:4;28087:20;28083:1;28072:9;28068:17;28061:47;28125:78;28198:4;28189:6;28125:78;:::i;:::-;28117:86;;27897:313;;;;:::o;28216:419::-;28382:4;28420:2;28409:9;28405:18;28397:26;;28469:9;28463:4;28459:20;28455:1;28444:9;28440:17;28433:47;28497:131;28623:4;28497:131;:::i;:::-;28489:139;;28216:419;;;:::o;28641:::-;28807:4;28845:2;28834:9;28830:18;28822:26;;28894:9;28888:4;28884:20;28880:1;28869:9;28865:17;28858:47;28922:131;29048:4;28922:131;:::i;:::-;28914:139;;28641:419;;;:::o;29066:::-;29232:4;29270:2;29259:9;29255:18;29247:26;;29319:9;29313:4;29309:20;29305:1;29294:9;29290:17;29283:47;29347:131;29473:4;29347:131;:::i;:::-;29339:139;;29066:419;;;:::o;29491:::-;29657:4;29695:2;29684:9;29680:18;29672:26;;29744:9;29738:4;29734:20;29730:1;29719:9;29715:17;29708:47;29772:131;29898:4;29772:131;:::i;:::-;29764:139;;29491:419;;;:::o;29916:::-;30082:4;30120:2;30109:9;30105:18;30097:26;;30169:9;30163:4;30159:20;30155:1;30144:9;30140:17;30133:47;30197:131;30323:4;30197:131;:::i;:::-;30189:139;;29916:419;;;:::o;30341:::-;30507:4;30545:2;30534:9;30530:18;30522:26;;30594:9;30588:4;30584:20;30580:1;30569:9;30565:17;30558:47;30622:131;30748:4;30622:131;:::i;:::-;30614:139;;30341:419;;;:::o;30766:::-;30932:4;30970:2;30959:9;30955:18;30947:26;;31019:9;31013:4;31009:20;31005:1;30994:9;30990:17;30983:47;31047:131;31173:4;31047:131;:::i;:::-;31039:139;;30766:419;;;:::o;31191:::-;31357:4;31395:2;31384:9;31380:18;31372:26;;31444:9;31438:4;31434:20;31430:1;31419:9;31415:17;31408:47;31472:131;31598:4;31472:131;:::i;:::-;31464:139;;31191:419;;;:::o;31616:::-;31782:4;31820:2;31809:9;31805:18;31797:26;;31869:9;31863:4;31859:20;31855:1;31844:9;31840:17;31833:47;31897:131;32023:4;31897:131;:::i;:::-;31889:139;;31616:419;;;:::o;32041:::-;32207:4;32245:2;32234:9;32230:18;32222:26;;32294:9;32288:4;32284:20;32280:1;32269:9;32265:17;32258:47;32322:131;32448:4;32322:131;:::i;:::-;32314:139;;32041:419;;;:::o;32466:::-;32632:4;32670:2;32659:9;32655:18;32647:26;;32719:9;32713:4;32709:20;32705:1;32694:9;32690:17;32683:47;32747:131;32873:4;32747:131;:::i;:::-;32739:139;;32466:419;;;:::o;32891:::-;33057:4;33095:2;33084:9;33080:18;33072:26;;33144:9;33138:4;33134:20;33130:1;33119:9;33115:17;33108:47;33172:131;33298:4;33172:131;:::i;:::-;33164:139;;32891:419;;;:::o;33316:::-;33482:4;33520:2;33509:9;33505:18;33497:26;;33569:9;33563:4;33559:20;33555:1;33544:9;33540:17;33533:47;33597:131;33723:4;33597:131;:::i;:::-;33589:139;;33316:419;;;:::o;33741:::-;33907:4;33945:2;33934:9;33930:18;33922:26;;33994:9;33988:4;33984:20;33980:1;33969:9;33965:17;33958:47;34022:131;34148:4;34022:131;:::i;:::-;34014:139;;33741:419;;;:::o;34166:::-;34332:4;34370:2;34359:9;34355:18;34347:26;;34419:9;34413:4;34409:20;34405:1;34394:9;34390:17;34383:47;34447:131;34573:4;34447:131;:::i;:::-;34439:139;;34166:419;;;:::o;34591:::-;34757:4;34795:2;34784:9;34780:18;34772:26;;34844:9;34838:4;34834:20;34830:1;34819:9;34815:17;34808:47;34872:131;34998:4;34872:131;:::i;:::-;34864:139;;34591:419;;;:::o;35016:::-;35182:4;35220:2;35209:9;35205:18;35197:26;;35269:9;35263:4;35259:20;35255:1;35244:9;35240:17;35233:47;35297:131;35423:4;35297:131;:::i;:::-;35289:139;;35016:419;;;:::o;35441:::-;35607:4;35645:2;35634:9;35630:18;35622:26;;35694:9;35688:4;35684:20;35680:1;35669:9;35665:17;35658:47;35722:131;35848:4;35722:131;:::i;:::-;35714:139;;35441:419;;;:::o;35866:::-;36032:4;36070:2;36059:9;36055:18;36047:26;;36119:9;36113:4;36109:20;36105:1;36094:9;36090:17;36083:47;36147:131;36273:4;36147:131;:::i;:::-;36139:139;;35866:419;;;:::o;36291:::-;36457:4;36495:2;36484:9;36480:18;36472:26;;36544:9;36538:4;36534:20;36530:1;36519:9;36515:17;36508:47;36572:131;36698:4;36572:131;:::i;:::-;36564:139;;36291:419;;;:::o;36716:::-;36882:4;36920:2;36909:9;36905:18;36897:26;;36969:9;36963:4;36959:20;36955:1;36944:9;36940:17;36933:47;36997:131;37123:4;36997:131;:::i;:::-;36989:139;;36716:419;;;:::o;37141:::-;37307:4;37345:2;37334:9;37330:18;37322:26;;37394:9;37388:4;37384:20;37380:1;37369:9;37365:17;37358:47;37422:131;37548:4;37422:131;:::i;:::-;37414:139;;37141:419;;;:::o;37566:::-;37732:4;37770:2;37759:9;37755:18;37747:26;;37819:9;37813:4;37809:20;37805:1;37794:9;37790:17;37783:47;37847:131;37973:4;37847:131;:::i;:::-;37839:139;;37566:419;;;:::o;37991:::-;38157:4;38195:2;38184:9;38180:18;38172:26;;38244:9;38238:4;38234:20;38230:1;38219:9;38215:17;38208:47;38272:131;38398:4;38272:131;:::i;:::-;38264:139;;37991:419;;;:::o;38416:::-;38582:4;38620:2;38609:9;38605:18;38597:26;;38669:9;38663:4;38659:20;38655:1;38644:9;38640:17;38633:47;38697:131;38823:4;38697:131;:::i;:::-;38689:139;;38416:419;;;:::o;38841:350::-;38998:4;39036:2;39025:9;39021:18;39013:26;;39049:135;39181:1;39170:9;39166:17;39157:6;39049:135;:::i;:::-;38841:350;;;;:::o;39197:222::-;39290:4;39328:2;39317:9;39313:18;39305:26;;39341:71;39409:1;39398:9;39394:17;39385:6;39341:71;:::i;:::-;39197:222;;;;:::o;39425:324::-;39542:4;39580:2;39569:9;39565:18;39557:26;;39593:69;39659:1;39648:9;39644:17;39635:6;39593:69;:::i;:::-;39672:70;39738:2;39727:9;39723:18;39714:6;39672:70;:::i;:::-;39425:324;;;;;:::o;39755:129::-;39789:6;39816:20;;:::i;:::-;39806:30;;39845:33;39873:4;39865:6;39845:33;:::i;:::-;39755:129;;;:::o;39890:75::-;39923:6;39956:2;39950:9;39940:19;;39890:75;:::o;39971:311::-;40048:4;40138:18;40130:6;40127:30;40124:56;;;40160:18;;:::i;:::-;40124:56;40210:4;40202:6;40198:17;40190:25;;40270:4;40264;40260:15;40252:23;;39971:311;;;:::o;40288:308::-;40362:4;40452:18;40444:6;40441:30;40438:56;;;40474:18;;:::i;:::-;40438:56;40524:4;40516:6;40512:17;40504:25;;40584:4;40578;40574:15;40566:23;;40288:308;;;:::o;40602:307::-;40663:4;40753:18;40745:6;40742:30;40739:56;;;40775:18;;:::i;:::-;40739:56;40813:29;40835:6;40813:29;:::i;:::-;40805:37;;40897:4;40891;40887:15;40879:23;;40602:307;;;:::o;40915:98::-;40966:6;41000:5;40994:12;40984:22;;40915:98;;;:::o;41019:99::-;41071:6;41105:5;41099:12;41089:22;;41019:99;;;:::o;41124:168::-;41207:11;41241:6;41236:3;41229:19;41281:4;41276:3;41272:14;41257:29;;41124:168;;;;:::o;41298:169::-;41382:11;41416:6;41411:3;41404:19;41456:4;41451:3;41447:14;41432:29;;41298:169;;;;:::o;41473:148::-;41575:11;41612:3;41597:18;;41473:148;;;;:::o;41627:273::-;41667:3;41686:20;41704:1;41686:20;:::i;:::-;41681:25;;41720:20;41738:1;41720:20;:::i;:::-;41715:25;;41842:1;41806:34;41802:42;41799:1;41796:49;41793:75;;;41848:18;;:::i;:::-;41793:75;41892:1;41889;41885:9;41878:16;;41627:273;;;;:::o;41906:305::-;41946:3;41965:20;41983:1;41965:20;:::i;:::-;41960:25;;41999:20;42017:1;41999:20;:::i;:::-;41994:25;;42153:1;42085:66;42081:74;42078:1;42075:81;42072:107;;;42159:18;;:::i;:::-;42072:107;42203:1;42200;42196:9;42189:16;;41906:305;;;;:::o;42217:185::-;42257:1;42274:20;42292:1;42274:20;:::i;:::-;42269:25;;42308:20;42326:1;42308:20;:::i;:::-;42303:25;;42347:1;42337:35;;42352:18;;:::i;:::-;42337:35;42394:1;42391;42387:9;42382:14;;42217:185;;;;:::o;42408:191::-;42448:4;42468:20;42486:1;42468:20;:::i;:::-;42463:25;;42502:20;42520:1;42502:20;:::i;:::-;42497:25;;42541:1;42538;42535:8;42532:34;;;42546:18;;:::i;:::-;42532:34;42591:1;42588;42584:9;42576:17;;42408:191;;;;:::o;42605:::-;42645:4;42665:20;42683:1;42665:20;:::i;:::-;42660:25;;42699:20;42717:1;42699:20;:::i;:::-;42694:25;;42738:1;42735;42732:8;42729:34;;;42743:18;;:::i;:::-;42729:34;42788:1;42785;42781:9;42773:17;;42605:191;;;;:::o;42802:96::-;42839:7;42868:24;42886:5;42868:24;:::i;:::-;42857:35;;42802:96;;;:::o;42904:90::-;42938:7;42981:5;42974:13;42967:21;42956:32;;42904:90;;;:::o;43000:77::-;43037:7;43066:5;43055:16;;43000:77;;;:::o;43083:149::-;43119:7;43159:66;43152:5;43148:78;43137:89;;43083:149;;;:::o;43238:118::-;43275:7;43315:34;43308:5;43304:46;43293:57;;43238:118;;;:::o;43362:126::-;43399:7;43439:42;43432:5;43428:54;43417:65;;43362:126;;;:::o;43494:77::-;43531:7;43560:5;43549:16;;43494:77;;;:::o;43577:93::-;43613:7;43653:10;43646:5;43642:22;43631:33;;43577:93;;;:::o;43676:101::-;43712:7;43752:18;43745:5;43741:30;43730:41;;43676:101;;;:::o;43783:154::-;43867:6;43862:3;43857;43844:30;43929:1;43920:6;43915:3;43911:16;43904:27;43783:154;;;:::o;43943:307::-;44011:1;44021:113;44035:6;44032:1;44029:13;44021:113;;;44120:1;44115:3;44111:11;44105:18;44101:1;44096:3;44092:11;44085:39;44057:2;44054:1;44050:10;44045:15;;44021:113;;;44152:6;44149:1;44146:13;44143:101;;;44232:1;44223:6;44218:3;44214:16;44207:27;44143:101;43992:258;43943:307;;;:::o;44256:171::-;44295:3;44318:24;44336:5;44318:24;:::i;:::-;44309:33;;44364:4;44357:5;44354:15;44351:41;;;44372:18;;:::i;:::-;44351:41;44419:1;44412:5;44408:13;44401:20;;44256:171;;;:::o;44433:320::-;44477:6;44514:1;44508:4;44504:12;44494:22;;44561:1;44555:4;44551:12;44582:18;44572:81;;44638:4;44630:6;44626:17;44616:27;;44572:81;44700:2;44692:6;44689:14;44669:18;44666:38;44663:84;;;44719:18;;:::i;:::-;44663:84;44484:269;44433:320;;;:::o;44759:281::-;44842:27;44864:4;44842:27;:::i;:::-;44834:6;44830:40;44972:6;44960:10;44957:22;44936:18;44924:10;44921:34;44918:62;44915:88;;;44983:18;;:::i;:::-;44915:88;45023:10;45019:2;45012:22;44802:238;44759:281;;:::o;45046:233::-;45085:3;45108:24;45126:5;45108:24;:::i;:::-;45099:33;;45154:66;45147:5;45144:77;45141:103;;;45224:18;;:::i;:::-;45141:103;45271:1;45264:5;45260:13;45253:20;;45046:233;;;:::o;45285:100::-;45324:7;45353:26;45373:5;45353:26;:::i;:::-;45342:37;;45285:100;;;:::o;45391:94::-;45430:7;45459:20;45473:5;45459:20;:::i;:::-;45448:31;;45391:94;;;:::o;45491:176::-;45523:1;45540:20;45558:1;45540:20;:::i;:::-;45535:25;;45574:20;45592:1;45574:20;:::i;:::-;45569:25;;45613:1;45603:35;;45618:18;;:::i;:::-;45603:35;45659:1;45656;45652:9;45647:14;;45491:176;;;;:::o;45673:180::-;45721:77;45718:1;45711:88;45818:4;45815:1;45808:15;45842:4;45839:1;45832:15;45859:180;45907:77;45904:1;45897:88;46004:4;46001:1;45994:15;46028:4;46025:1;46018:15;46045:180;46093:77;46090:1;46083:88;46190:4;46187:1;46180:15;46214:4;46211:1;46204:15;46231:180;46279:77;46276:1;46269:88;46376:4;46373:1;46366:15;46400:4;46397:1;46390:15;46417:180;46465:77;46462:1;46455:88;46562:4;46559:1;46552:15;46586:4;46583:1;46576:15;46603:117;46712:1;46709;46702:12;46726:117;46835:1;46832;46825:12;46849:117;46958:1;46955;46948:12;46972:117;47081:1;47078;47071:12;47095:117;47204:1;47201;47194:12;47218:117;47327:1;47324;47317:12;47341:102;47382:6;47433:2;47429:7;47424:2;47417:5;47413:14;47409:28;47399:38;;47341:102;;;:::o;47449:94::-;47482:8;47530:5;47526:2;47522:14;47501:35;;47449:94;;;:::o;47549:221::-;47689:34;47685:1;47677:6;47673:14;47666:58;47758:4;47753:2;47745:6;47741:15;47734:29;47549:221;:::o;47776:164::-;47916:16;47912:1;47904:6;47900:14;47893:40;47776:164;:::o;47946:225::-;48086:34;48082:1;48074:6;48070:14;48063:58;48155:8;48150:2;48142:6;48138:15;48131:33;47946:225;:::o;48177:229::-;48317:34;48313:1;48305:6;48301:14;48294:58;48386:12;48381:2;48373:6;48369:15;48362:37;48177:229;:::o;48412:222::-;48552:34;48548:1;48540:6;48536:14;48529:58;48621:5;48616:2;48608:6;48604:15;48597:30;48412:222;:::o;48640:224::-;48780:34;48776:1;48768:6;48764:14;48757:58;48849:7;48844:2;48836:6;48832:15;48825:32;48640:224;:::o;48870:174::-;49010:26;49006:1;48998:6;48994:14;48987:50;48870:174;:::o;49050:236::-;49190:34;49186:1;49178:6;49174:14;49167:58;49259:19;49254:2;49246:6;49242:15;49235:44;49050:236;:::o;49292:180::-;49432:32;49428:1;49420:6;49416:14;49409:56;49292:180;:::o;49478:230::-;49618:34;49614:1;49606:6;49602:14;49595:58;49687:13;49682:2;49674:6;49670:15;49663:38;49478:230;:::o;49714:168::-;49854:20;49850:1;49842:6;49838:14;49831:44;49714:168;:::o;49888:225::-;50028:34;50024:1;50016:6;50012:14;50005:58;50097:8;50092:2;50084:6;50080:15;50073:33;49888:225;:::o;50119:155::-;50259:7;50255:1;50247:6;50243:14;50236:31;50119:155;:::o;50280:182::-;50420:34;50416:1;50408:6;50404:14;50397:58;50280:182;:::o;50468:234::-;50608:34;50604:1;50596:6;50592:14;50585:58;50677:17;50672:2;50664:6;50660:15;50653:42;50468:234;:::o;50708:176::-;50848:28;50844:1;50836:6;50832:14;50825:52;50708:176;:::o;50890:237::-;51030:34;51026:1;51018:6;51014:14;51007:58;51099:20;51094:2;51086:6;51082:15;51075:45;50890:237;:::o;51133:238::-;51273:34;51269:1;51261:6;51257:14;51250:58;51342:21;51337:2;51329:6;51325:15;51318:46;51133:238;:::o;51377:179::-;51517:31;51513:1;51505:6;51501:14;51494:55;51377:179;:::o;51562:220::-;51702:34;51698:1;51690:6;51686:14;51679:58;51771:3;51766:2;51758:6;51754:15;51747:28;51562:220;:::o;51788:172::-;51928:24;51924:1;51916:6;51912:14;51905:48;51788:172;:::o;51966:231::-;52106:34;52102:1;52094:6;52090:14;52083:58;52175:14;52170:2;52162:6;52158:15;52151:39;51966:231;:::o;52203:233::-;52343:34;52339:1;52331:6;52327:14;52320:58;52412:16;52407:2;52399:6;52395:15;52388:41;52203:233;:::o;52442:234::-;52582:34;52578:1;52570:6;52566:14;52559:58;52651:17;52646:2;52638:6;52634:15;52627:42;52442:234;:::o;52682:232::-;52822:34;52818:1;52810:6;52806:14;52799:58;52891:15;52886:2;52878:6;52874:15;52867:40;52682:232;:::o;52920:221::-;53060:34;53056:1;53048:6;53044:14;53037:58;53129:4;53124:2;53116:6;53112:15;53105:29;52920:221;:::o;53147:122::-;53220:24;53238:5;53220:24;:::i;:::-;53213:5;53210:35;53200:63;;53259:1;53256;53249:12;53200:63;53147:122;:::o;53275:116::-;53345:21;53360:5;53345:21;:::i;:::-;53338:5;53335:32;53325:60;;53381:1;53378;53371:12;53325:60;53275:116;:::o;53397:122::-;53470:24;53488:5;53470:24;:::i;:::-;53463:5;53460:35;53450:63;;53509:1;53506;53499:12;53450:63;53397:122;:::o;53525:120::-;53597:23;53614:5;53597:23;:::i;:::-;53590:5;53587:34;53577:62;;53635:1;53632;53625:12;53577:62;53525:120;:::o;53651:122::-;53724:24;53742:5;53724:24;:::i;:::-;53717:5;53714:35;53704:63;;53763:1;53760;53753:12;53704:63;53651:122;:::o;53779:120::-;53851:23;53868:5;53851:23;:::i;:::-;53844:5;53841:34;53831:62;;53889:1;53886;53879:12;53831:62;53779:120;:::o

Swarm Source

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