ETH Price: $3,401.74 (-1.66%)
Gas: 6 Gwei

Token

CryptTVScamp (CTVS)
 

Overview

Max Total Supply

666 CTVS

Holders

384

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 CTVS
0x14b6e5f84dA2FEBd85d92Dd9c2d4aA633CC65E30
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Crypt TV’s mission is to create iconic monsters. Scamp is a collection of 666 monsters that give you specific IP ownership from Crypt TV. Scamp is one of Crypt’s most beloved monsters and has been seen by millions of people.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CryptTVScamp

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

// 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/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: @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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: Remaster_Enumeration.sol

//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;


// import "@openzeppelin/contracts/utils/Counters.sol";



/**                                         .         .
8 888888888o.   8 8888888888            ,8.       ,8.                   .8.            d888888o. 8888888 8888888888 8 8888888888   8 888888888o.
8 8888    `88.  8 8888                 ,888.     ,888.                 .888.         .`8888:' `88.     8 8888       8 8888         8 8888    `88.
8 8888     `88  8 8888                .`8888.   .`8888.               :88888.        8.`8888.   Y8     8 8888       8 8888         8 8888     `88
8 8888     ,88  8 8888               ,8.`8888. ,8.`8888.             . `88888.       `8.`8888.         8 8888       8 8888         8 8888     ,88
8 8888.   ,88'  8 888888888888      ,8'8.`8888,8^8.`8888.           .8. `88888.       `8.`8888.        8 8888       8 888888888888 8 8888.   ,88'
8 888888888P'   8 8888             ,8' `8.`8888' `8.`8888.         .8`8. `88888.       `8.`8888.       8 8888       8 8888         8 888888888P'
8 8888`8b       8 8888            ,8'   `8.`88'   `8.`8888.       .8' `8. `88888.       `8.`8888.      8 8888       8 8888         8 8888`8b
8 8888 `8b.     8 8888           ,8'     `8.`'     `8.`8888.     .8'   `8. `88888.  8b   `8.`8888.     8 8888       8 8888         8 8888 `8b.
8 8888   `8b.   8 8888          ,8'       `8        `8.`8888.   .888888888. `88888. `8b.  ;8.`8888     8 8888       8 8888         8 8888   `8b.
8 8888     `88. 8 888888888888 ,8'         `         `8.`8888. .8'       `8. `88888. `Y8888P ,88P'     8 8888       8 888888888888 8 8888     `88.
*/

interface R0 {
    // R2 Functions
    function signedUpdateOwnership(
        uint256 _tokenId,
        address _owner,
        bytes memory readSignature,
        bool _signed
    ) external;
    function getNFTContract() external view returns (address);
    function emitLicenseOwnerChange(
        uint8 _licenseId,
        uint256 _tokenId,
        address _from,
        address _to,
        bytes memory _licenseHash,
        uint256 _expiry
    ) external;
    function getR3Address(uint8 _licenseId, uint256 _tokenId)
        external
        view
        returns (address);
    function contractHash() external view returns (string memory);
    function signBlock() external view returns (uint256);
    function getLicenseIssuedHash(uint256 _tokenId)
        external
        view
        returns (bytes32);
    function r2Transfer(
        address from,
        address to,
        uint256 tokenId
    ) external;
    function getLicenseHash(uint8 _licenseId, uint256 _tokenId)
        external
        view
        returns (bytes memory);
    function escrow() external view returns (address);
    function getAllParties()
        external
        view
        returns (
            address,
            uint16,
            address,
            uint16,
            address,
            uint16,
            address,
            uint16
        );
    function getBaseSigners() external view returns (address, address);
    // R2 - Demo functions additions
    function marketWhitelist(address) external view returns(bool);
    function isUserSignatureValid(address, uint256) external view returns(bool);
    // IERC721 functions:
    function ownerOf(uint256 tokenId) external view returns (address owner);
    // IERC20 functions:
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, uint256 amount) external returns (bool);
    // R3 Functions
    function getR3EscrowElements()
        external
        view
        returns (
            uint16,
            uint16,
            uint16,
            address,
            uint16
        );
    function getR2AddressFromR3() external returns (address);
    // Escrow Functions
    function receieveTo(address _to) external payable;
    function payCommission() external payable;
    function withdraw() external;
    // Ownable
    function owner() external returns (address);
}

contract CryptTVScamp is ERC721, Ownable, ERC721Enumerable {

    bytes32 constant CLAIM = keccak256("CLAIM");
    bytes32 constant RESERVE = keccak256("RESERVE");

    // using Counters for Counters.Counter;

    struct Claim{
        bool isActive;
        bytes32 merkleRoot;
        mapping(address => uint256) mintCount;
    }

    bool public isNormalTransferEnabled = true;
    bool public isBuyerSignatureRequired;
    bool public isP2PEnabled = true;

    uint32 public immutable maxTokens;
    // Counters.Counter private tokenCounter;

    string public provenanceHash;
    string public baseURI;

    R0 public r2Contract;

    mapping(bytes32=>Claim) claimData;


    constructor(string memory _newBaseURI, uint32 _maxTokens) ERC721("CryptTVScamp", "CTVS") {
        baseURI = _newBaseURI;
        maxTokens = _maxTokens;
    }

    // ============ ERC721Enumerable OverRides =============

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier claimActive(bytes32 claimType) {
        require(claimData[claimType].isActive, "Claim list not active");
        _;
    }

    modifier totalNotExceeded(uint256 numberOfTokens) {
        require(
            totalSupply() + numberOfTokens <= maxTokens,
            "Not enough tokens remaining to claim"
        );
        _;
    }

    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root, uint256 maxClaimable) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender, maxClaimable))
            ),
            "Proof does not exist in tree"
        );
        _;
    }

     /// @notice Functions using this modifier can only be called by the R2 contract.
    modifier onlyR2() {
        require(msg.sender == address(r2Contract), "Only R2 can call");
        _;
    }

    modifier R2Defined(){
        require(address(r2Contract) != address(0), "R2 address not set");
        _;
    }    

    // ============ PUBLIC FUNCTIONS FOR CLAIMING ============
    function claim(uint256 numberOfTokens, uint256 maxClaimable, bytes32[] calldata merkleProof,bytes memory readSignature) external{
        _claim(numberOfTokens, maxClaimable, merkleProof,readSignature,CLAIM);
    }

    function claimReserve(uint256 numberOfTokens, uint256 maxClaimable, bytes32[] calldata merkleProof,bytes memory readSignature) external{
        _claim( numberOfTokens,  maxClaimable,  merkleProof,readSignature,RESERVE);
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function setProvenanceHash(string memory _hash) external onlyOwner {
        provenanceHash = _hash;
    }

    // Toggle Claiming Active / Inactive 
    function setClaimingActive(bool _isClaimingActive) external onlyOwner {
        setClaimingActive(_isClaimingActive,CLAIM);
    }
  
    // Toggle Reserve Claiming Active / Inactive 
    function setReserveClaimingActive(bool _isReserveClaimingActive) external onlyOwner {
        setClaimingActive(_isReserveClaimingActive,RESERVE);
    }

    // Set Merkle Roots 
    function setClaimListMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        setMerkleRoot(_merkleRoot,CLAIM);
    }
    // Set Reserve Merkle Roots 
    function setReserveClaimListMerkleRoot(bytes32 _reserveMerkleRoot) external onlyOwner {
        setMerkleRoot(_reserveMerkleRoot,RESERVE);
    }
    
    /// @notice Function to flip the Normal transfers enabled 
    function setNormalTransferEnabled(bool _isNormalTransferEnabled) external onlyOwner {
        isNormalTransferEnabled = _isNormalTransferEnabled;
    }

    // Function to flip the buyer signature required state on or off
    function setBuyerSignatureRequired(bool _isBuyerSignatureRequired) external onlyOwner {
        isBuyerSignatureRequired = _isBuyerSignatureRequired;
    }

    /// @notice Function to flip the P2P transfers when buyer signature is required
    function setP2PTransferEnabled(bool _isP2PEnabled) external onlyOwner {
        isP2PEnabled = _isP2PEnabled;
    }

     //Set R2 Address for this contract
    function setR2Address(address _r2Address) external onlyOwner {
        r2Contract = R0(_r2Address);
    }

    function r2Transfer(
        address from,
        address to,
        uint256 tokenId
    ) external onlyR2 R2Defined {
        _safeTransfer(from, to, tokenId, "");
    }
    // ============ INTERNAL ============
    function setClaimingActive(bool isActive,bytes32 claimType) internal {
            claimData[claimType].isActive = isActive;
    }

    function setMerkleRoot(bytes32 merkleRoot,bytes32 claimType) internal {
        claimData[claimType].merkleRoot = merkleRoot;
    }

    function _claim(
        uint256 numberOfTokens,
        uint256 maxClaimable,
        bytes32[] calldata merkleProof,
        bytes memory readSignature,
        bytes32 claimType
    )
        internal
        claimActive(claimType)
        totalNotExceeded(numberOfTokens)
        isValidMerkleProof(merkleProof, claimData[claimType].merkleRoot, maxClaimable)
        R2Defined
    {
        uint256 numAlreadyMinted = claimData[claimType].mintCount[msg.sender];
        require(numAlreadyMinted + numberOfTokens <= maxClaimable, "Exceeds max claimable");
        claimData[claimType].mintCount[msg.sender] = numAlreadyMinted + numberOfTokens;
        uint tokenId=totalSupply() + 1;
        for (uint256 i = 0; i < numberOfTokens; i++) {    
            _safeMint(msg.sender,tokenId );
            r2Contract.signedUpdateOwnership(tokenId, msg.sender, readSignature, true);
            tokenId++;
        }
    }

    // ============ OVERRIDES ============

        function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal  R2Defined override {
        if(msg.sender == address(r2Contract)){
            super._transfer(from,to,tokenId);
            return;  
        }
        require(isNormalTransferEnabled, "Disabled");
        // * Buyer is required to sign TOS beforehand if set to true
        if (isBuyerSignatureRequired || r2Contract.getLicenseIssuedHash(tokenId) != "") {

            // Allow/Disallow P2P transfers when isBuyerSigReq = true
            if (!isP2PEnabled) {
                require(
                    r2Contract.marketWhitelist(msg.sender),
                    "Caller isnt whitelisted"
                );
            }
            require(
                r2Contract.isUserSignatureValid(to, tokenId),
                "buyer hasnt signed TOS"
            );
        }


        super._transfer(from,to,tokenId);
        r2Contract.signedUpdateOwnership(tokenId, to, "", false);
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"},{"internalType":"uint32","name":"_maxTokens","type":"uint32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"maxClaimable","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"bytes","name":"readSignature","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"maxClaimable","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"bytes","name":"readSignature","type":"bytes"}],"name":"claimReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBuyerSignatureRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isNormalTransferEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isP2PEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"r2Contract","outputs":[{"internalType":"contract R0","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"r2Transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBuyerSignatureRequired","type":"bool"}],"name":"setBuyerSignatureRequired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setClaimListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isClaimingActive","type":"bool"}],"name":"setClaimingActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isNormalTransferEnabled","type":"bool"}],"name":"setNormalTransferEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isP2PEnabled","type":"bool"}],"name":"setP2PTransferEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_r2Address","type":"address"}],"name":"setR2Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_reserveMerkleRoot","type":"bytes32"}],"name":"setReserveClaimListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isReserveClaimingActive","type":"bool"}],"name":"setReserveClaimingActive","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"}]

60a06040526001600b60006101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055503480156200004757600080fd5b50604051620052313803806200523183398181016040528101906200006d919062000378565b6040518060400160405280600c81526020017f437279707454565363616d7000000000000000000000000000000000000000008152506040518060400160405280600481526020017f43545653000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f192919062000233565b5080600190805190602001906200010a92919062000233565b5050506200012d620001216200016560201b60201c565b6200016d60201b60201c565b81600d90805190602001906200014592919062000233565b508063ffffffff1660808163ffffffff1660e01b8152505050506200058c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002419062000483565b90600052602060002090601f016020900481019282620002655760008555620002b1565b82601f106200028057805160ff1916838001178555620002b1565b82800160010185558215620002b1579182015b82811115620002b057825182559160200191906001019062000293565b5b509050620002c09190620002c4565b5090565b5b80821115620002df576000816000905550600101620002c5565b5090565b6000620002fa620002f48462000407565b620003de565b90508281526020810184848401111562000319576200031862000552565b5b620003268482856200044d565b509392505050565b600082601f8301126200034657620003456200054d565b5b815162000358848260208601620002e3565b91505092915050565b600081519050620003728162000572565b92915050565b600080604083850312156200039257620003916200055c565b5b600083015167ffffffffffffffff811115620003b357620003b262000557565b5b620003c1858286016200032e565b9250506020620003d48582860162000361565b9150509250929050565b6000620003ea620003fd565b9050620003f88282620004b9565b919050565b6000604051905090565b600067ffffffffffffffff8211156200042557620004246200051e565b5b620004308262000561565b9050602081019050919050565b600063ffffffff82169050919050565b60005b838110156200046d57808201518184015260208101905062000450565b838111156200047d576000848401525b50505050565b600060028204905060018216806200049c57607f821691505b60208210811415620004b357620004b2620004ef565b5b50919050565b620004c48262000561565b810181811067ffffffffffffffff82111715620004e657620004e56200051e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200057d816200043d565b81146200058957600080fd5b50565b60805160e01c614c7f620005b2600039600081816112d201526120930152614c7f6000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c806370a082311161013b578063c6ab67a3116100b8578063e5c6d4b81161007c578063e5c6d4b814610686578063e8315742146106a2578063e985e9c5146106c0578063f2fde38b146106f0578063fab2d5881461070c5761023d565b8063c6ab67a3146105e4578063c87b56dd14610602578063c8d6a9e814610632578063de3c3a5f1461064e578063e58ca91d1461066a5761023d565b806395d89b41116100ff57806395d89b4114610554578063a22cb46514610572578063aa6441711461058e578063b88d4fde146105ac578063c32254a6146105c85761023d565b806370a08231146104c4578063715018a6146104f457806389883fda146104fe5780638c2f69aa1461051a5780638da5cb5b146105365761023d565b806330ea4199116101c95780635317d48e1161018d5780635317d48e1461042057806355f804b31461043e578063596a0a8e1461045a5780636352211e146104765780636c0360eb146104a65761023d565b806330ea41991461037e5780633928b2a71461039a57806342842e0e146103b65780634f6ccce7146103d257806351dfc408146104025761023d565b8063109695231161021057806310969523146102dc57806315bdebe2146102f857806318160ddd1461031457806323b872dd146103325780632f745c591461034e5761023d565b806301ffc9a71461024257806306fdde0314610272578063081812fc14610290578063095ea7b3146102c0575b600080fd5b61025c6004803603810190610257919061366e565b61072a565b6040516102699190613d49565b60405180910390f35b61027a61073c565b6040516102879190613d7f565b60405180910390f35b6102aa60048036038101906102a59190613711565b6107ce565b6040516102b79190613cb9565b60405180910390f35b6102da60048036038101906102d5919061357a565b610814565b005b6102f660048036038101906102f191906136c8565b61092c565b005b610312600480360381019061030d9190613614565b61094e565b005b61031c610983565b60405161032991906140a1565b60405180910390f35b61034c60048036038101906103479190613464565b610990565b005b6103686004803603810190610363919061357a565b6109f0565b60405161037591906140a1565b60405180910390f35b610398600480360381019061039391906135ba565b610a95565b005b6103b460048036038101906103af91906135ba565b610aca565b005b6103d060048036038101906103cb9190613464565b610aef565b005b6103ec60048036038101906103e79190613711565b610b0f565b6040516103f991906140a1565b60405180910390f35b61040a610b80565b6040516104179190613d64565b60405180910390f35b610428610ba6565b6040516104359190613d49565b60405180910390f35b610458600480360381019061045391906136c8565b610bb9565b005b610474600480360381019061046f9190613614565b610bdb565b005b610490600480360381019061048b9190613711565b610c10565b60405161049d9190613cb9565b60405180910390f35b6104ae610cc2565b6040516104bb9190613d7f565b60405180910390f35b6104de60048036038101906104d991906133f7565b610d50565b6040516104eb91906140a1565b60405180910390f35b6104fc610e08565b005b610518600480360381019061051391906135ba565b610e1c565b005b610534600480360381019061052f9190613464565b610e41565b005b61053e610f83565b60405161054b9190613cb9565b60405180910390f35b61055c610fad565b6040516105699190613d7f565b60405180910390f35b61058c6004803603810190610587919061353a565b61103f565b005b610596611055565b6040516105a39190613d49565b60405180910390f35b6105c660048036038101906105c191906134b7565b611068565b005b6105e260048036038101906105dd91906133f7565b6110ca565b005b6105ec611116565b6040516105f99190613d7f565b60405180910390f35b61061c60048036038101906106179190613711565b6111a4565b6040516106299190613d7f565b60405180910390f35b61064c6004803603810190610647919061373e565b61120c565b005b610668600480360381019061066391906135ba565b611241565b005b610684600480360381019061067f91906135ba565b611276565b005b6106a0600480360381019061069b919061373e565b61129b565b005b6106aa6112d0565b6040516106b79190614152565b60405180910390f35b6106da60048036038101906106d59190613424565b6112f4565b6040516106e79190613d49565b60405180910390f35b61070a600480360381019061070591906133f7565b611388565b005b61071461140c565b6040516107219190613d49565b60405180910390f35b60006107358261141f565b9050919050565b60606000805461074b906143f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610777906143f8565b80156107c45780601f10610799576101008083540402835291602001916107c4565b820191906000526020600020905b8154815290600101906020018083116107a757829003601f168201915b5050505050905090565b60006107d982611499565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081f82610c10565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088790613f81565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108af6114e4565b73ffffffffffffffffffffffffffffffffffffffff1614806108de57506108dd816108d86114e4565b6112f4565b5b61091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490613f01565b60405180910390fd5b61092783836114ec565b505050565b6109346115a5565b80600c908051906020019061094a929190613176565b5050565b6109566115a5565b610980817fda5ef0dc178ac91b88a75e00c784aa6cda7295d02eebaec5c697f2b7ca57cdba611623565b50565b6000600980549050905090565b6109a161099b6114e4565b82611642565b6109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d790614061565b60405180910390fd5b6109eb8383836116d7565b505050565b60006109fb83610d50565b8210610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3390613da1565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a9d6115a5565b610ac7817fda5ef0dc178ac91b88a75e00c784aa6cda7295d02eebaec5c697f2b7ca57cdba611b78565b50565b610ad26115a5565b80600b60006101000a81548160ff02191690831515021790555050565b610b0a83838360405180602001604052806000815250611068565b505050565b6000610b19610983565b8210610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190614001565b60405180910390fd5b60098281548110610b6e57610b6d6145bf565b5b90600052602060002001549050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900460ff1681565b610bc16115a5565b80600d9080519060200190610bd7929190613176565b5050565b610be36115a5565b610c0d817fb702d1698fe17d27d262666ff7aedbca395f0dac84fa671bf282389f3dfd6243611623565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090613f61565b60405180910390fd5b80915050919050565b600d8054610ccf906143f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfb906143f8565b8015610d485780601f10610d1d57610100808354040283529160200191610d48565b820191906000526020600020905b815481529060010190602001808311610d2b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890613ee1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e106115a5565b610e1a6000611baa565b565b610e246115a5565b80600b60026101000a81548160ff02191690831515021790555050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890614021565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90613fa1565b60405180910390fd5b610f7e83838360405180602001604052806000815250611c70565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610fbc906143f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe8906143f8565b80156110355780601f1061100a57610100808354040283529160200191611035565b820191906000526020600020905b81548152906001019060200180831161101857829003601f168201915b5050505050905090565b61105161104a6114e4565b8383611ccc565b5050565b600b60029054906101000a900460ff1681565b6110796110736114e4565b83611642565b6110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90614061565b60405180910390fd5b6110c484848484611c70565b50505050565b6110d26115a5565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c8054611123906143f8565b80601f016020809104026020016040519081016040528092919081815260200182805461114f906143f8565b801561119c5780601f106111715761010080835404028352916020019161119c565b820191906000526020600020905b81548152906001019060200180831161117f57829003601f168201915b505050505081565b60606111af82611499565b60006111b9611e39565b905060008151116111d95760405180602001604052806000815250611204565b806111e384611ecb565b6040516020016111f4929190613c95565b6040516020818303038152906040525b915050919050565b61123a85858585857fb702d1698fe17d27d262666ff7aedbca395f0dac84fa671bf282389f3dfd624361202c565b5050505050565b6112496115a5565b611273817fb702d1698fe17d27d262666ff7aedbca395f0dac84fa671bf282389f3dfd6243611b78565b50565b61127e6115a5565b80600b60016101000a81548160ff02191690831515021790555050565b6112c985858585857fda5ef0dc178ac91b88a75e00c784aa6cda7295d02eebaec5c697f2b7ca57cdba61202c565b5050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113906115a5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790613de1565b60405180910390fd5b61140981611baa565b50565b600b60019054906101000a900460ff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611492575061149182612467565b5b9050919050565b6114a281612549565b6114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890613f61565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661155f83610c10565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6115ad6114e4565b73ffffffffffffffffffffffffffffffffffffffff166115cb610f83565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613f41565b60405180910390fd5b565b81600f6000838152602001908152602001600020600101819055505050565b60008061164e83610c10565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611690575061168f81856112f4565b5b806116ce57508373ffffffffffffffffffffffffffffffffffffffff166116b6846107ce565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613fa1565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156117cf576117ca8383836125b5565b611b73565b600b60009054906101000a900460ff1661181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613fc1565b60405180910390fd5b600b60019054906101000a900460ff16806118e457506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d3fba59f836040518263ffffffff1660e01b815260040161189191906140a1565b60206040518083038186803b1580156118a957600080fd5b505afa1580156118bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e19190613641565b14155b15611ad557600b60029054906101000a900460ff166119e857600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631908a2ee336040518263ffffffff1660e01b81526004016119589190613cb9565b60206040518083038186803b15801561197057600080fd5b505afa158015611984573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a891906135e7565b6119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de90613ec1565b60405180910390fd5b5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634b0dbb1283836040518363ffffffff1660e01b8152600401611a45929190613d20565b60206040518083038186803b158015611a5d57600080fd5b505afa158015611a71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9591906135e7565b611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb90614041565b60405180910390fd5b5b611ae08383836125b5565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638eeb3ce1828460006040518463ffffffff1660e01b8152600401611b4093929190614108565b600060405180830381600087803b158015611b5a57600080fd5b505af1158015611b6e573d6000803e3d6000fd5b505050505b505050565b81600f600083815260200190815260200160002060000160006101000a81548160ff0219169083151502179055505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c7b8484846116d7565b611c878484848461281c565b611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd90613dc1565b60405180910390fd5b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613e81565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e2c9190613d49565b60405180910390a3505050565b6060600d8054611e48906143f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611e74906143f8565b8015611ec15780601f10611e9657610100808354040283529160200191611ec1565b820191906000526020600020905b815481529060010190602001808311611ea457829003601f168201915b5050505050905090565b60606000821415611f13576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612027565b600082905060005b60008214611f45578080611f2e9061445b565b915050600a82611f3e919061428d565b9150611f1b565b60008167ffffffffffffffff811115611f6157611f606145ee565b5b6040519080825280601f01601f191660200182016040528015611f935781602001600182028036833780820191505090505b5090505b6000851461202057600182611fac91906142be565b9150600a85611fbb91906144d2565b6030611fc79190614237565b60f81b818381518110611fdd57611fdc6145bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612019919061428d565b9450611f97565b8093505050505b919050565b80600f600082815260200190815260200160002060000160009054906101000a900460ff16612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790614081565b60405180910390fd5b867f000000000000000000000000000000000000000000000000000000000000000063ffffffff16816120c1610983565b6120cb9190614237565b111561210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210390613e41565b60405180910390fd5b8585600f6000868152602001908152602001600020600101548961219a848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505083338460405160200161217f929190613c69565b604051602081830303815290604052805190602001206129b3565b6121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090613ea1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561226b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226290613fa1565b60405180910390fd5b6000600f600089815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508b8d826122d09190614237565b1115612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890613fe1565b60405180910390fd5b8c8161231d9190614237565b600f60008a815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060006001612380610983565b61238a9190614237565b905060005b8e811015612456576123a133836129ca565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638eeb3ce183338e60016040518563ffffffff1660e01b815260040161240394939291906140bc565b600060405180830381600087803b15801561241d57600080fd5b505af1158015612431573d6000803e3d6000fd5b5050505081806124409061445b565b925050808061244e9061445b565b91505061238f565b505050505050505050505050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061253257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125425750612541826129e8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b8273ffffffffffffffffffffffffffffffffffffffff166125d582610c10565b73ffffffffffffffffffffffffffffffffffffffff161461262b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262290613e01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290613e61565b60405180910390fd5b6126a6838383612a52565b6126b16000826114ec565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461270191906142be565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127589190614237565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612817838383612a62565b505050565b600061283d8473ffffffffffffffffffffffffffffffffffffffff16612a67565b156129a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128666114e4565b8786866040518563ffffffff1660e01b81526004016128889493929190613cd4565b602060405180830381600087803b1580156128a257600080fd5b505af19250505080156128d357506040513d601f19601f820116820180604052508101906128d0919061369b565b60015b612956573d8060008114612903576040519150601f19603f3d011682016040523d82523d6000602084013e612908565b606091505b5060008151141561294e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294590613dc1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ab565b600190505b949350505050565b6000826129c08584612a8a565b1490509392505050565b6129e4828260405180602001604052806000815250612ae0565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a5d838383612b3b565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b8451811015612ad557612ac082868381518110612ab357612ab26145bf565b5b6020026020010151612c4f565b91508080612acd9061445b565b915050612a93565b508091505092915050565b612aea8383612c7a565b612af7600084848461281c565b612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d90613dc1565b60405180910390fd5b505050565b612b46838383612e54565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b8957612b8481612e59565b612bc8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bc757612bc68382612ea2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c0b57612c068161300f565b612c4a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c4957612c4882826130e0565b5b5b505050565b6000818310612c6757612c62828461315f565b612c72565b612c71838361315f565b5b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce190613f21565b60405180910390fd5b612cf381612549565b15612d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2a90613e21565b60405180910390fd5b612d3f60008383612a52565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d8f9190614237565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e5060008383612a62565b5050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612eaf84610d50565b612eb991906142be565b9050600060086000848152602001908152602001600020549050818114612f9e576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061302391906142be565b90506000600a6000848152602001908152602001600020549050600060098381548110613053576130526145bf565b5b906000526020600020015490508060098381548110613075576130746145bf565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806130c4576130c3614590565b5b6001900381819060005260206000200160009055905550505050565b60006130eb83610d50565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600082600052816020526040600020905092915050565b828054613182906143f8565b90600052602060002090601f0160209004810192826131a457600085556131eb565b82601f106131bd57805160ff19168380011785556131eb565b828001600101855582156131eb579182015b828111156131ea5782518255916020019190600101906131cf565b5b5090506131f891906131fc565b5090565b5b808211156132155760008160009055506001016131fd565b5090565b600061322c61322784614192565b61416d565b9050828152602081018484840111156132485761324761462c565b5b6132538482856143b6565b509392505050565b600061326e613269846141c3565b61416d565b90508281526020810184848401111561328a5761328961462c565b5b6132958482856143b6565b509392505050565b6000813590506132ac81614bd6565b92915050565b60008083601f8401126132c8576132c7614622565b5b8235905067ffffffffffffffff8111156132e5576132e461461d565b5b60208301915083602082028301111561330157613300614627565b5b9250929050565b60008135905061331781614bed565b92915050565b60008151905061332c81614bed565b92915050565b60008135905061334181614c04565b92915050565b60008151905061335681614c04565b92915050565b60008135905061336b81614c1b565b92915050565b60008151905061338081614c1b565b92915050565b600082601f83011261339b5761339a614622565b5b81356133ab848260208601613219565b91505092915050565b600082601f8301126133c9576133c8614622565b5b81356133d984826020860161325b565b91505092915050565b6000813590506133f181614c32565b92915050565b60006020828403121561340d5761340c614636565b5b600061341b8482850161329d565b91505092915050565b6000806040838503121561343b5761343a614636565b5b60006134498582860161329d565b925050602061345a8582860161329d565b9150509250929050565b60008060006060848603121561347d5761347c614636565b5b600061348b8682870161329d565b935050602061349c8682870161329d565b92505060406134ad868287016133e2565b9150509250925092565b600080600080608085870312156134d1576134d0614636565b5b60006134df8782880161329d565b94505060206134f08782880161329d565b9350506040613501878288016133e2565b925050606085013567ffffffffffffffff81111561352257613521614631565b5b61352e87828801613386565b91505092959194509250565b6000806040838503121561355157613550614636565b5b600061355f8582860161329d565b925050602061357085828601613308565b9150509250929050565b6000806040838503121561359157613590614636565b5b600061359f8582860161329d565b92505060206135b0858286016133e2565b9150509250929050565b6000602082840312156135d0576135cf614636565b5b60006135de84828501613308565b91505092915050565b6000602082840312156135fd576135fc614636565b5b600061360b8482850161331d565b91505092915050565b60006020828403121561362a57613629614636565b5b600061363884828501613332565b91505092915050565b60006020828403121561365757613656614636565b5b600061366584828501613347565b91505092915050565b60006020828403121561368457613683614636565b5b60006136928482850161335c565b91505092915050565b6000602082840312156136b1576136b0614636565b5b60006136bf84828501613371565b91505092915050565b6000602082840312156136de576136dd614636565b5b600082013567ffffffffffffffff8111156136fc576136fb614631565b5b613708848285016133b4565b91505092915050565b60006020828403121561372757613726614636565b5b6000613735848285016133e2565b91505092915050565b60008060008060006080868803121561375a57613759614636565b5b6000613768888289016133e2565b9550506020613779888289016133e2565b945050604086013567ffffffffffffffff81111561379a57613799614631565b5b6137a6888289016132b2565b9350935050606086013567ffffffffffffffff8111156137c9576137c8614631565b5b6137d588828901613386565b9150509295509295909350565b6137eb816142f2565b82525050565b6138026137fd826142f2565b6144a4565b82525050565b61381181614304565b82525050565b6000613822826141f4565b61382c818561420a565b935061383c8185602086016143c5565b6138458161463b565b840191505092915050565b61385981614380565b82525050565b600061386a826141ff565b613874818561421b565b93506138848185602086016143c5565b61388d8161463b565b840191505092915050565b60006138a3826141ff565b6138ad818561422c565b93506138bd8185602086016143c5565b80840191505092915050565b60006138d6602b8361421b565b91506138e182614659565b604082019050919050565b60006138f960328361421b565b9150613904826146a8565b604082019050919050565b600061391c60268361421b565b9150613927826146f7565b604082019050919050565b600061393f60258361421b565b915061394a82614746565b604082019050919050565b6000613962601c8361421b565b915061396d82614795565b602082019050919050565b600061398560248361421b565b9150613990826147be565b604082019050919050565b60006139a860248361421b565b91506139b38261480d565b604082019050919050565b60006139cb60198361421b565b91506139d68261485c565b602082019050919050565b60006139ee601c8361421b565b91506139f982614885565b602082019050919050565b6000613a1160178361421b565b9150613a1c826148ae565b602082019050919050565b6000613a3460298361421b565b9150613a3f826148d7565b604082019050919050565b6000613a57603e8361421b565b9150613a6282614926565b604082019050919050565b6000613a7a60208361421b565b9150613a8582614975565b602082019050919050565b6000613a9d60208361421b565b9150613aa88261499e565b602082019050919050565b6000613ac060188361421b565b9150613acb826149c7565b602082019050919050565b6000613ae360218361421b565b9150613aee826149f0565b604082019050919050565b6000613b0660128361421b565b9150613b1182614a3f565b602082019050919050565b6000613b2960008361420a565b9150613b3482614a68565b600082019050919050565b6000613b4c60088361421b565b9150613b5782614a6b565b602082019050919050565b6000613b6f60158361421b565b9150613b7a82614a94565b602082019050919050565b6000613b92602c8361421b565b9150613b9d82614abd565b604082019050919050565b6000613bb560108361421b565b9150613bc082614b0c565b602082019050919050565b6000613bd860168361421b565b9150613be382614b35565b602082019050919050565b6000613bfb602e8361421b565b9150613c0682614b5e565b604082019050919050565b6000613c1e60158361421b565b9150613c2982614bad565b602082019050919050565b613c3d81614366565b82525050565b613c54613c4f82614366565b6144c8565b82525050565b613c6381614370565b82525050565b6000613c7582856137f1565b601482019150613c858284613c43565b6020820191508190509392505050565b6000613ca18285613898565b9150613cad8284613898565b91508190509392505050565b6000602082019050613cce60008301846137e2565b92915050565b6000608082019050613ce960008301876137e2565b613cf660208301866137e2565b613d036040830185613c34565b8181036060830152613d158184613817565b905095945050505050565b6000604082019050613d3560008301856137e2565b613d426020830184613c34565b9392505050565b6000602082019050613d5e6000830184613808565b92915050565b6000602082019050613d796000830184613850565b92915050565b60006020820190508181036000830152613d99818461385f565b905092915050565b60006020820190508181036000830152613dba816138c9565b9050919050565b60006020820190508181036000830152613dda816138ec565b9050919050565b60006020820190508181036000830152613dfa8161390f565b9050919050565b60006020820190508181036000830152613e1a81613932565b9050919050565b60006020820190508181036000830152613e3a81613955565b9050919050565b60006020820190508181036000830152613e5a81613978565b9050919050565b60006020820190508181036000830152613e7a8161399b565b9050919050565b60006020820190508181036000830152613e9a816139be565b9050919050565b60006020820190508181036000830152613eba816139e1565b9050919050565b60006020820190508181036000830152613eda81613a04565b9050919050565b60006020820190508181036000830152613efa81613a27565b9050919050565b60006020820190508181036000830152613f1a81613a4a565b9050919050565b60006020820190508181036000830152613f3a81613a6d565b9050919050565b60006020820190508181036000830152613f5a81613a90565b9050919050565b60006020820190508181036000830152613f7a81613ab3565b9050919050565b60006020820190508181036000830152613f9a81613ad6565b9050919050565b60006020820190508181036000830152613fba81613af9565b9050919050565b60006020820190508181036000830152613fda81613b3f565b9050919050565b60006020820190508181036000830152613ffa81613b62565b9050919050565b6000602082019050818103600083015261401a81613b85565b9050919050565b6000602082019050818103600083015261403a81613ba8565b9050919050565b6000602082019050818103600083015261405a81613bcb565b9050919050565b6000602082019050818103600083015261407a81613bee565b9050919050565b6000602082019050818103600083015261409a81613c11565b9050919050565b60006020820190506140b66000830184613c34565b92915050565b60006080820190506140d16000830187613c34565b6140de60208301866137e2565b81810360408301526140f08185613817565b90506140ff6060830184613808565b95945050505050565b600060808201905061411d6000830186613c34565b61412a60208301856137e2565b818103604083015261413b81613b1c565b905061414a6060830184613808565b949350505050565b60006020820190506141676000830184613c5a565b92915050565b6000614177614188565b9050614183828261442a565b919050565b6000604051905090565b600067ffffffffffffffff8211156141ad576141ac6145ee565b5b6141b68261463b565b9050602081019050919050565b600067ffffffffffffffff8211156141de576141dd6145ee565b5b6141e78261463b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061424282614366565b915061424d83614366565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561428257614281614503565b5b828201905092915050565b600061429882614366565b91506142a383614366565b9250826142b3576142b2614532565b5b828204905092915050565b60006142c982614366565b91506142d483614366565b9250828210156142e7576142e6614503565b5b828203905092915050565b60006142fd82614346565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600061438b82614392565b9050919050565b600061439d826143a4565b9050919050565b60006143af82614346565b9050919050565b82818337600083830152505050565b60005b838110156143e35780820151818401526020810190506143c8565b838111156143f2576000848401525b50505050565b6000600282049050600182168061441057607f821691505b6020821081141561442457614423614561565b5b50919050565b6144338261463b565b810181811067ffffffffffffffff82111715614452576144516145ee565b5b80604052505050565b600061446682614366565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561449957614498614503565b5b600182019050919050565b60006144af826144b6565b9050919050565b60006144c18261464c565b9050919050565b6000819050919050565b60006144dd82614366565b91506144e883614366565b9250826144f8576144f7614532565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820746f6b656e732072656d61696e696e6720746f206360008201527f6c61696d00000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f50726f6f6620646f6573206e6f7420657869737420696e207472656500000000600082015250565b7f43616c6c65722069736e742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f52322061646472657373206e6f74207365740000000000000000000000000000600082015250565b50565b7f44697361626c6564000000000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820636c61696d61626c650000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4f6e6c792052322063616e2063616c6c00000000000000000000000000000000600082015250565b7f6275796572206861736e74207369676e656420544f5300000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f436c61696d206c697374206e6f74206163746976650000000000000000000000600082015250565b614bdf816142f2565b8114614bea57600080fd5b50565b614bf681614304565b8114614c0157600080fd5b50565b614c0d81614310565b8114614c1857600080fd5b50565b614c248161431a565b8114614c2f57600080fd5b50565b614c3b81614366565b8114614c4657600080fd5b5056fea2646970667358221220efbf74979633ebd8a9295c44317a36f7ea1729a485f8dc9241056416faeb8afb64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000029a00000000000000000000000000000000000000000000000000000000000000012f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023d5760003560e01c806370a082311161013b578063c6ab67a3116100b8578063e5c6d4b81161007c578063e5c6d4b814610686578063e8315742146106a2578063e985e9c5146106c0578063f2fde38b146106f0578063fab2d5881461070c5761023d565b8063c6ab67a3146105e4578063c87b56dd14610602578063c8d6a9e814610632578063de3c3a5f1461064e578063e58ca91d1461066a5761023d565b806395d89b41116100ff57806395d89b4114610554578063a22cb46514610572578063aa6441711461058e578063b88d4fde146105ac578063c32254a6146105c85761023d565b806370a08231146104c4578063715018a6146104f457806389883fda146104fe5780638c2f69aa1461051a5780638da5cb5b146105365761023d565b806330ea4199116101c95780635317d48e1161018d5780635317d48e1461042057806355f804b31461043e578063596a0a8e1461045a5780636352211e146104765780636c0360eb146104a65761023d565b806330ea41991461037e5780633928b2a71461039a57806342842e0e146103b65780634f6ccce7146103d257806351dfc408146104025761023d565b8063109695231161021057806310969523146102dc57806315bdebe2146102f857806318160ddd1461031457806323b872dd146103325780632f745c591461034e5761023d565b806301ffc9a71461024257806306fdde0314610272578063081812fc14610290578063095ea7b3146102c0575b600080fd5b61025c6004803603810190610257919061366e565b61072a565b6040516102699190613d49565b60405180910390f35b61027a61073c565b6040516102879190613d7f565b60405180910390f35b6102aa60048036038101906102a59190613711565b6107ce565b6040516102b79190613cb9565b60405180910390f35b6102da60048036038101906102d5919061357a565b610814565b005b6102f660048036038101906102f191906136c8565b61092c565b005b610312600480360381019061030d9190613614565b61094e565b005b61031c610983565b60405161032991906140a1565b60405180910390f35b61034c60048036038101906103479190613464565b610990565b005b6103686004803603810190610363919061357a565b6109f0565b60405161037591906140a1565b60405180910390f35b610398600480360381019061039391906135ba565b610a95565b005b6103b460048036038101906103af91906135ba565b610aca565b005b6103d060048036038101906103cb9190613464565b610aef565b005b6103ec60048036038101906103e79190613711565b610b0f565b6040516103f991906140a1565b60405180910390f35b61040a610b80565b6040516104179190613d64565b60405180910390f35b610428610ba6565b6040516104359190613d49565b60405180910390f35b610458600480360381019061045391906136c8565b610bb9565b005b610474600480360381019061046f9190613614565b610bdb565b005b610490600480360381019061048b9190613711565b610c10565b60405161049d9190613cb9565b60405180910390f35b6104ae610cc2565b6040516104bb9190613d7f565b60405180910390f35b6104de60048036038101906104d991906133f7565b610d50565b6040516104eb91906140a1565b60405180910390f35b6104fc610e08565b005b610518600480360381019061051391906135ba565b610e1c565b005b610534600480360381019061052f9190613464565b610e41565b005b61053e610f83565b60405161054b9190613cb9565b60405180910390f35b61055c610fad565b6040516105699190613d7f565b60405180910390f35b61058c6004803603810190610587919061353a565b61103f565b005b610596611055565b6040516105a39190613d49565b60405180910390f35b6105c660048036038101906105c191906134b7565b611068565b005b6105e260048036038101906105dd91906133f7565b6110ca565b005b6105ec611116565b6040516105f99190613d7f565b60405180910390f35b61061c60048036038101906106179190613711565b6111a4565b6040516106299190613d7f565b60405180910390f35b61064c6004803603810190610647919061373e565b61120c565b005b610668600480360381019061066391906135ba565b611241565b005b610684600480360381019061067f91906135ba565b611276565b005b6106a0600480360381019061069b919061373e565b61129b565b005b6106aa6112d0565b6040516106b79190614152565b60405180910390f35b6106da60048036038101906106d59190613424565b6112f4565b6040516106e79190613d49565b60405180910390f35b61070a600480360381019061070591906133f7565b611388565b005b61071461140c565b6040516107219190613d49565b60405180910390f35b60006107358261141f565b9050919050565b60606000805461074b906143f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610777906143f8565b80156107c45780601f10610799576101008083540402835291602001916107c4565b820191906000526020600020905b8154815290600101906020018083116107a757829003601f168201915b5050505050905090565b60006107d982611499565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081f82610c10565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088790613f81565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108af6114e4565b73ffffffffffffffffffffffffffffffffffffffff1614806108de57506108dd816108d86114e4565b6112f4565b5b61091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490613f01565b60405180910390fd5b61092783836114ec565b505050565b6109346115a5565b80600c908051906020019061094a929190613176565b5050565b6109566115a5565b610980817fda5ef0dc178ac91b88a75e00c784aa6cda7295d02eebaec5c697f2b7ca57cdba611623565b50565b6000600980549050905090565b6109a161099b6114e4565b82611642565b6109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d790614061565b60405180910390fd5b6109eb8383836116d7565b505050565b60006109fb83610d50565b8210610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3390613da1565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a9d6115a5565b610ac7817fda5ef0dc178ac91b88a75e00c784aa6cda7295d02eebaec5c697f2b7ca57cdba611b78565b50565b610ad26115a5565b80600b60006101000a81548160ff02191690831515021790555050565b610b0a83838360405180602001604052806000815250611068565b505050565b6000610b19610983565b8210610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190614001565b60405180910390fd5b60098281548110610b6e57610b6d6145bf565b5b90600052602060002001549050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900460ff1681565b610bc16115a5565b80600d9080519060200190610bd7929190613176565b5050565b610be36115a5565b610c0d817fb702d1698fe17d27d262666ff7aedbca395f0dac84fa671bf282389f3dfd6243611623565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090613f61565b60405180910390fd5b80915050919050565b600d8054610ccf906143f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfb906143f8565b8015610d485780601f10610d1d57610100808354040283529160200191610d48565b820191906000526020600020905b815481529060010190602001808311610d2b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890613ee1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e106115a5565b610e1a6000611baa565b565b610e246115a5565b80600b60026101000a81548160ff02191690831515021790555050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890614021565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90613fa1565b60405180910390fd5b610f7e83838360405180602001604052806000815250611c70565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610fbc906143f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe8906143f8565b80156110355780601f1061100a57610100808354040283529160200191611035565b820191906000526020600020905b81548152906001019060200180831161101857829003601f168201915b5050505050905090565b61105161104a6114e4565b8383611ccc565b5050565b600b60029054906101000a900460ff1681565b6110796110736114e4565b83611642565b6110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90614061565b60405180910390fd5b6110c484848484611c70565b50505050565b6110d26115a5565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c8054611123906143f8565b80601f016020809104026020016040519081016040528092919081815260200182805461114f906143f8565b801561119c5780601f106111715761010080835404028352916020019161119c565b820191906000526020600020905b81548152906001019060200180831161117f57829003601f168201915b505050505081565b60606111af82611499565b60006111b9611e39565b905060008151116111d95760405180602001604052806000815250611204565b806111e384611ecb565b6040516020016111f4929190613c95565b6040516020818303038152906040525b915050919050565b61123a85858585857fb702d1698fe17d27d262666ff7aedbca395f0dac84fa671bf282389f3dfd624361202c565b5050505050565b6112496115a5565b611273817fb702d1698fe17d27d262666ff7aedbca395f0dac84fa671bf282389f3dfd6243611b78565b50565b61127e6115a5565b80600b60016101000a81548160ff02191690831515021790555050565b6112c985858585857fda5ef0dc178ac91b88a75e00c784aa6cda7295d02eebaec5c697f2b7ca57cdba61202c565b5050505050565b7f000000000000000000000000000000000000000000000000000000000000029a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113906115a5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790613de1565b60405180910390fd5b61140981611baa565b50565b600b60019054906101000a900460ff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611492575061149182612467565b5b9050919050565b6114a281612549565b6114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890613f61565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661155f83610c10565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6115ad6114e4565b73ffffffffffffffffffffffffffffffffffffffff166115cb610f83565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613f41565b60405180910390fd5b565b81600f6000838152602001908152602001600020600101819055505050565b60008061164e83610c10565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611690575061168f81856112f4565b5b806116ce57508373ffffffffffffffffffffffffffffffffffffffff166116b6846107ce565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613fa1565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156117cf576117ca8383836125b5565b611b73565b600b60009054906101000a900460ff1661181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613fc1565b60405180910390fd5b600b60019054906101000a900460ff16806118e457506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d3fba59f836040518263ffffffff1660e01b815260040161189191906140a1565b60206040518083038186803b1580156118a957600080fd5b505afa1580156118bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e19190613641565b14155b15611ad557600b60029054906101000a900460ff166119e857600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631908a2ee336040518263ffffffff1660e01b81526004016119589190613cb9565b60206040518083038186803b15801561197057600080fd5b505afa158015611984573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a891906135e7565b6119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de90613ec1565b60405180910390fd5b5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634b0dbb1283836040518363ffffffff1660e01b8152600401611a45929190613d20565b60206040518083038186803b158015611a5d57600080fd5b505afa158015611a71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9591906135e7565b611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb90614041565b60405180910390fd5b5b611ae08383836125b5565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638eeb3ce1828460006040518463ffffffff1660e01b8152600401611b4093929190614108565b600060405180830381600087803b158015611b5a57600080fd5b505af1158015611b6e573d6000803e3d6000fd5b505050505b505050565b81600f600083815260200190815260200160002060000160006101000a81548160ff0219169083151502179055505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c7b8484846116d7565b611c878484848461281c565b611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd90613dc1565b60405180910390fd5b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613e81565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e2c9190613d49565b60405180910390a3505050565b6060600d8054611e48906143f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611e74906143f8565b8015611ec15780601f10611e9657610100808354040283529160200191611ec1565b820191906000526020600020905b815481529060010190602001808311611ea457829003601f168201915b5050505050905090565b60606000821415611f13576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612027565b600082905060005b60008214611f45578080611f2e9061445b565b915050600a82611f3e919061428d565b9150611f1b565b60008167ffffffffffffffff811115611f6157611f606145ee565b5b6040519080825280601f01601f191660200182016040528015611f935781602001600182028036833780820191505090505b5090505b6000851461202057600182611fac91906142be565b9150600a85611fbb91906144d2565b6030611fc79190614237565b60f81b818381518110611fdd57611fdc6145bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612019919061428d565b9450611f97565b8093505050505b919050565b80600f600082815260200190815260200160002060000160009054906101000a900460ff16612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790614081565b60405180910390fd5b867f000000000000000000000000000000000000000000000000000000000000029a63ffffffff16816120c1610983565b6120cb9190614237565b111561210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210390613e41565b60405180910390fd5b8585600f6000868152602001908152602001600020600101548961219a848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505083338460405160200161217f929190613c69565b604051602081830303815290604052805190602001206129b3565b6121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090613ea1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561226b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226290613fa1565b60405180910390fd5b6000600f600089815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508b8d826122d09190614237565b1115612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890613fe1565b60405180910390fd5b8c8161231d9190614237565b600f60008a815260200190815260200160002060020160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060006001612380610983565b61238a9190614237565b905060005b8e811015612456576123a133836129ca565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638eeb3ce183338e60016040518563ffffffff1660e01b815260040161240394939291906140bc565b600060405180830381600087803b15801561241d57600080fd5b505af1158015612431573d6000803e3d6000fd5b5050505081806124409061445b565b925050808061244e9061445b565b91505061238f565b505050505050505050505050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061253257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125425750612541826129e8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b8273ffffffffffffffffffffffffffffffffffffffff166125d582610c10565b73ffffffffffffffffffffffffffffffffffffffff161461262b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262290613e01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290613e61565b60405180910390fd5b6126a6838383612a52565b6126b16000826114ec565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461270191906142be565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127589190614237565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612817838383612a62565b505050565b600061283d8473ffffffffffffffffffffffffffffffffffffffff16612a67565b156129a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128666114e4565b8786866040518563ffffffff1660e01b81526004016128889493929190613cd4565b602060405180830381600087803b1580156128a257600080fd5b505af19250505080156128d357506040513d601f19601f820116820180604052508101906128d0919061369b565b60015b612956573d8060008114612903576040519150601f19603f3d011682016040523d82523d6000602084013e612908565b606091505b5060008151141561294e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294590613dc1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ab565b600190505b949350505050565b6000826129c08584612a8a565b1490509392505050565b6129e4828260405180602001604052806000815250612ae0565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a5d838383612b3b565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b8451811015612ad557612ac082868381518110612ab357612ab26145bf565b5b6020026020010151612c4f565b91508080612acd9061445b565b915050612a93565b508091505092915050565b612aea8383612c7a565b612af7600084848461281c565b612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d90613dc1565b60405180910390fd5b505050565b612b46838383612e54565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b8957612b8481612e59565b612bc8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bc757612bc68382612ea2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c0b57612c068161300f565b612c4a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c4957612c4882826130e0565b5b5b505050565b6000818310612c6757612c62828461315f565b612c72565b612c71838361315f565b5b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce190613f21565b60405180910390fd5b612cf381612549565b15612d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2a90613e21565b60405180910390fd5b612d3f60008383612a52565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d8f9190614237565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e5060008383612a62565b5050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612eaf84610d50565b612eb991906142be565b9050600060086000848152602001908152602001600020549050818114612f9e576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061302391906142be565b90506000600a6000848152602001908152602001600020549050600060098381548110613053576130526145bf565b5b906000526020600020015490508060098381548110613075576130746145bf565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806130c4576130c3614590565b5b6001900381819060005260206000200160009055905550505050565b60006130eb83610d50565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600082600052816020526040600020905092915050565b828054613182906143f8565b90600052602060002090601f0160209004810192826131a457600085556131eb565b82601f106131bd57805160ff19168380011785556131eb565b828001600101855582156131eb579182015b828111156131ea5782518255916020019190600101906131cf565b5b5090506131f891906131fc565b5090565b5b808211156132155760008160009055506001016131fd565b5090565b600061322c61322784614192565b61416d565b9050828152602081018484840111156132485761324761462c565b5b6132538482856143b6565b509392505050565b600061326e613269846141c3565b61416d565b90508281526020810184848401111561328a5761328961462c565b5b6132958482856143b6565b509392505050565b6000813590506132ac81614bd6565b92915050565b60008083601f8401126132c8576132c7614622565b5b8235905067ffffffffffffffff8111156132e5576132e461461d565b5b60208301915083602082028301111561330157613300614627565b5b9250929050565b60008135905061331781614bed565b92915050565b60008151905061332c81614bed565b92915050565b60008135905061334181614c04565b92915050565b60008151905061335681614c04565b92915050565b60008135905061336b81614c1b565b92915050565b60008151905061338081614c1b565b92915050565b600082601f83011261339b5761339a614622565b5b81356133ab848260208601613219565b91505092915050565b600082601f8301126133c9576133c8614622565b5b81356133d984826020860161325b565b91505092915050565b6000813590506133f181614c32565b92915050565b60006020828403121561340d5761340c614636565b5b600061341b8482850161329d565b91505092915050565b6000806040838503121561343b5761343a614636565b5b60006134498582860161329d565b925050602061345a8582860161329d565b9150509250929050565b60008060006060848603121561347d5761347c614636565b5b600061348b8682870161329d565b935050602061349c8682870161329d565b92505060406134ad868287016133e2565b9150509250925092565b600080600080608085870312156134d1576134d0614636565b5b60006134df8782880161329d565b94505060206134f08782880161329d565b9350506040613501878288016133e2565b925050606085013567ffffffffffffffff81111561352257613521614631565b5b61352e87828801613386565b91505092959194509250565b6000806040838503121561355157613550614636565b5b600061355f8582860161329d565b925050602061357085828601613308565b9150509250929050565b6000806040838503121561359157613590614636565b5b600061359f8582860161329d565b92505060206135b0858286016133e2565b9150509250929050565b6000602082840312156135d0576135cf614636565b5b60006135de84828501613308565b91505092915050565b6000602082840312156135fd576135fc614636565b5b600061360b8482850161331d565b91505092915050565b60006020828403121561362a57613629614636565b5b600061363884828501613332565b91505092915050565b60006020828403121561365757613656614636565b5b600061366584828501613347565b91505092915050565b60006020828403121561368457613683614636565b5b60006136928482850161335c565b91505092915050565b6000602082840312156136b1576136b0614636565b5b60006136bf84828501613371565b91505092915050565b6000602082840312156136de576136dd614636565b5b600082013567ffffffffffffffff8111156136fc576136fb614631565b5b613708848285016133b4565b91505092915050565b60006020828403121561372757613726614636565b5b6000613735848285016133e2565b91505092915050565b60008060008060006080868803121561375a57613759614636565b5b6000613768888289016133e2565b9550506020613779888289016133e2565b945050604086013567ffffffffffffffff81111561379a57613799614631565b5b6137a6888289016132b2565b9350935050606086013567ffffffffffffffff8111156137c9576137c8614631565b5b6137d588828901613386565b9150509295509295909350565b6137eb816142f2565b82525050565b6138026137fd826142f2565b6144a4565b82525050565b61381181614304565b82525050565b6000613822826141f4565b61382c818561420a565b935061383c8185602086016143c5565b6138458161463b565b840191505092915050565b61385981614380565b82525050565b600061386a826141ff565b613874818561421b565b93506138848185602086016143c5565b61388d8161463b565b840191505092915050565b60006138a3826141ff565b6138ad818561422c565b93506138bd8185602086016143c5565b80840191505092915050565b60006138d6602b8361421b565b91506138e182614659565b604082019050919050565b60006138f960328361421b565b9150613904826146a8565b604082019050919050565b600061391c60268361421b565b9150613927826146f7565b604082019050919050565b600061393f60258361421b565b915061394a82614746565b604082019050919050565b6000613962601c8361421b565b915061396d82614795565b602082019050919050565b600061398560248361421b565b9150613990826147be565b604082019050919050565b60006139a860248361421b565b91506139b38261480d565b604082019050919050565b60006139cb60198361421b565b91506139d68261485c565b602082019050919050565b60006139ee601c8361421b565b91506139f982614885565b602082019050919050565b6000613a1160178361421b565b9150613a1c826148ae565b602082019050919050565b6000613a3460298361421b565b9150613a3f826148d7565b604082019050919050565b6000613a57603e8361421b565b9150613a6282614926565b604082019050919050565b6000613a7a60208361421b565b9150613a8582614975565b602082019050919050565b6000613a9d60208361421b565b9150613aa88261499e565b602082019050919050565b6000613ac060188361421b565b9150613acb826149c7565b602082019050919050565b6000613ae360218361421b565b9150613aee826149f0565b604082019050919050565b6000613b0660128361421b565b9150613b1182614a3f565b602082019050919050565b6000613b2960008361420a565b9150613b3482614a68565b600082019050919050565b6000613b4c60088361421b565b9150613b5782614a6b565b602082019050919050565b6000613b6f60158361421b565b9150613b7a82614a94565b602082019050919050565b6000613b92602c8361421b565b9150613b9d82614abd565b604082019050919050565b6000613bb560108361421b565b9150613bc082614b0c565b602082019050919050565b6000613bd860168361421b565b9150613be382614b35565b602082019050919050565b6000613bfb602e8361421b565b9150613c0682614b5e565b604082019050919050565b6000613c1e60158361421b565b9150613c2982614bad565b602082019050919050565b613c3d81614366565b82525050565b613c54613c4f82614366565b6144c8565b82525050565b613c6381614370565b82525050565b6000613c7582856137f1565b601482019150613c858284613c43565b6020820191508190509392505050565b6000613ca18285613898565b9150613cad8284613898565b91508190509392505050565b6000602082019050613cce60008301846137e2565b92915050565b6000608082019050613ce960008301876137e2565b613cf660208301866137e2565b613d036040830185613c34565b8181036060830152613d158184613817565b905095945050505050565b6000604082019050613d3560008301856137e2565b613d426020830184613c34565b9392505050565b6000602082019050613d5e6000830184613808565b92915050565b6000602082019050613d796000830184613850565b92915050565b60006020820190508181036000830152613d99818461385f565b905092915050565b60006020820190508181036000830152613dba816138c9565b9050919050565b60006020820190508181036000830152613dda816138ec565b9050919050565b60006020820190508181036000830152613dfa8161390f565b9050919050565b60006020820190508181036000830152613e1a81613932565b9050919050565b60006020820190508181036000830152613e3a81613955565b9050919050565b60006020820190508181036000830152613e5a81613978565b9050919050565b60006020820190508181036000830152613e7a8161399b565b9050919050565b60006020820190508181036000830152613e9a816139be565b9050919050565b60006020820190508181036000830152613eba816139e1565b9050919050565b60006020820190508181036000830152613eda81613a04565b9050919050565b60006020820190508181036000830152613efa81613a27565b9050919050565b60006020820190508181036000830152613f1a81613a4a565b9050919050565b60006020820190508181036000830152613f3a81613a6d565b9050919050565b60006020820190508181036000830152613f5a81613a90565b9050919050565b60006020820190508181036000830152613f7a81613ab3565b9050919050565b60006020820190508181036000830152613f9a81613ad6565b9050919050565b60006020820190508181036000830152613fba81613af9565b9050919050565b60006020820190508181036000830152613fda81613b3f565b9050919050565b60006020820190508181036000830152613ffa81613b62565b9050919050565b6000602082019050818103600083015261401a81613b85565b9050919050565b6000602082019050818103600083015261403a81613ba8565b9050919050565b6000602082019050818103600083015261405a81613bcb565b9050919050565b6000602082019050818103600083015261407a81613bee565b9050919050565b6000602082019050818103600083015261409a81613c11565b9050919050565b60006020820190506140b66000830184613c34565b92915050565b60006080820190506140d16000830187613c34565b6140de60208301866137e2565b81810360408301526140f08185613817565b90506140ff6060830184613808565b95945050505050565b600060808201905061411d6000830186613c34565b61412a60208301856137e2565b818103604083015261413b81613b1c565b905061414a6060830184613808565b949350505050565b60006020820190506141676000830184613c5a565b92915050565b6000614177614188565b9050614183828261442a565b919050565b6000604051905090565b600067ffffffffffffffff8211156141ad576141ac6145ee565b5b6141b68261463b565b9050602081019050919050565b600067ffffffffffffffff8211156141de576141dd6145ee565b5b6141e78261463b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061424282614366565b915061424d83614366565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561428257614281614503565b5b828201905092915050565b600061429882614366565b91506142a383614366565b9250826142b3576142b2614532565b5b828204905092915050565b60006142c982614366565b91506142d483614366565b9250828210156142e7576142e6614503565b5b828203905092915050565b60006142fd82614346565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600061438b82614392565b9050919050565b600061439d826143a4565b9050919050565b60006143af82614346565b9050919050565b82818337600083830152505050565b60005b838110156143e35780820151818401526020810190506143c8565b838111156143f2576000848401525b50505050565b6000600282049050600182168061441057607f821691505b6020821081141561442457614423614561565b5b50919050565b6144338261463b565b810181811067ffffffffffffffff82111715614452576144516145ee565b5b80604052505050565b600061446682614366565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561449957614498614503565b5b600182019050919050565b60006144af826144b6565b9050919050565b60006144c18261464c565b9050919050565b6000819050919050565b60006144dd82614366565b91506144e883614366565b9250826144f8576144f7614532565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820746f6b656e732072656d61696e696e6720746f206360008201527f6c61696d00000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f50726f6f6620646f6573206e6f7420657869737420696e207472656500000000600082015250565b7f43616c6c65722069736e742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f52322061646472657373206e6f74207365740000000000000000000000000000600082015250565b50565b7f44697361626c6564000000000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820636c61696d61626c650000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4f6e6c792052322063616e2063616c6c00000000000000000000000000000000600082015250565b7f6275796572206861736e74207369676e656420544f5300000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f436c61696d206c697374206e6f74206163746976650000000000000000000000600082015250565b614bdf816142f2565b8114614bea57600080fd5b50565b614bf681614304565b8114614c0157600080fd5b50565b614c0d81614310565b8114614c1857600080fd5b50565b614c248161431a565b8114614c2f57600080fd5b50565b614c3b81614366565b8114614c4657600080fd5b5056fea2646970667358221220efbf74979633ebd8a9295c44317a36f7ea1729a485f8dc9241056416faeb8afb64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000029a00000000000000000000000000000000000000000000000000000000000000012f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _newBaseURI (string): /
Arg [1] : _maxTokens (uint32): 666

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000000000000000000000000000000000000000029a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 2f00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

59045:7586:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60211:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35469:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36982:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36499:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62264:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62803:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49375:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37682:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49043:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62423:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63188:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38089:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49565:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59681:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59395:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62150:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62966:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35180:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59651:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34911:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13998:103;;;:::i;:::-;;63669:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63950:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35638:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37225:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59487:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38345:323;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63835:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59616:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35813:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61851:228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62615:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63419:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61627:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59527:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37451:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14256:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59444:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60211:212;60350:4;60379:36;60403:11;60379:23;:36::i;:::-;60372:43;;60211:212;;;:::o;35469:100::-;35523:13;35556:5;35549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35469:100;:::o;36982:171::-;37058:7;37078:23;37093:7;37078:14;:23::i;:::-;37121:15;:24;37137:7;37121:24;;;;;;;;;;;;;;;;;;;;;37114:31;;36982:171;;;:::o;36499:417::-;36580:13;36596:23;36611:7;36596:14;:23::i;:::-;36580:39;;36644:5;36638:11;;:2;:11;;;;36630:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;36738:5;36722:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;36747:37;36764:5;36771:12;:10;:12::i;:::-;36747:16;:37::i;:::-;36722:62;36700:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;36887:21;36896:2;36900:7;36887:8;:21::i;:::-;36569:347;36499:417;;:::o;62264:108::-;13236:13;:11;:13::i;:::-;62359:5:::1;62342:14;:22;;;;;;;;;;;;:::i;:::-;;62264:108:::0;:::o;62803:123::-;13236:13;:11;:13::i;:::-;62886:32:::1;62900:11;59138:18;62886:13;:32::i;:::-;62803:123:::0;:::o;49375:113::-;49436:7;49463:10;:17;;;;49456:24;;49375:113;:::o;37682:336::-;37877:41;37896:12;:10;:12::i;:::-;37910:7;37877:18;:41::i;:::-;37869:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;37982:28;37992:4;37998:2;38002:7;37982:9;:28::i;:::-;37682:336;;;:::o;49043:256::-;49140:7;49176:23;49193:5;49176:16;:23::i;:::-;49168:5;:31;49160:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;49265:12;:19;49278:5;49265:19;;;;;;;;;;;;;;;:26;49285:5;49265:26;;;;;;;;;;;;49258:33;;49043:256;;;;:::o;62423:131::-;13236:13;:11;:13::i;:::-;62504:42:::1;62522:17;59138:18;62504:17;:42::i;:::-;62423:131:::0;:::o;63188:153::-;13236:13;:11;:13::i;:::-;63309:24:::1;63283:23;;:50;;;;;;;;;;;;;;;;;;63188:153:::0;:::o;38089:185::-;38227:39;38244:4;38250:2;38254:7;38227:39;;;;;;;;;;;;:16;:39::i;:::-;38089:185;;;:::o;49565:233::-;49640:7;49676:30;:28;:30::i;:::-;49668:5;:38;49660:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;49773:10;49784:5;49773:17;;;;;;;;:::i;:::-;;;;;;;;;;49766:24;;49565:233;;;:::o;59681:20::-;;;;;;;;;;;;;:::o;59395:42::-;;;;;;;;;;;;;:::o;62150:106::-;13236:13;:11;:13::i;:::-;62237:11:::1;62227:7;:21;;;;;;;;;;;;:::i;:::-;;62150:106:::0;:::o;62966:146::-;13236:13;:11;:13::i;:::-;63063:41:::1;63077:18;59190:20;63063:13;:41::i;:::-;62966:146:::0;:::o;35180:222::-;35252:7;35272:13;35288:7;:16;35296:7;35288:16;;;;;;;;;;;;;;;;;;;;;35272:32;;35340:1;35323:19;;:5;:19;;;;35315:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;35389:5;35382:12;;;35180:222;;;:::o;59651:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34911:207::-;34983:7;35028:1;35011:19;;:5;:19;;;;35003:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35094:9;:16;35104:5;35094:16;;;;;;;;;;;;;;;;35087:23;;34911:207;;;:::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;63669:117::-;13236:13;:11;:13::i;:::-;63765::::1;63750:12;;:28;;;;;;;;;;;;;;;;;;63669:117:::0;:::o;63950:178::-;61376:10;;;;;;;;;;;61354:33;;:10;:33;;;61346:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;61506:1:::1;61475:33;;61483:10;;;;;;;;;;;61475:33;;;;61467:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;64084:36:::2;64098:4;64104:2;64108:7;64084:36;;;;;;;;;;;::::0;:13:::2;:36::i;:::-;63950:178:::0;;;:::o;13350:87::-;13396:7;13423:6;;;;;;;;;;;13416:13;;13350:87;:::o;35638:104::-;35694:13;35727:7;35720:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35638:104;:::o;37225:155::-;37320:52;37339:12;:10;:12::i;:::-;37353:8;37363;37320:18;:52::i;:::-;37225:155;;:::o;59487:31::-;;;;;;;;;;;;;:::o;38345:323::-;38519:41;38538:12;:10;:12::i;:::-;38552:7;38519:18;:41::i;:::-;38511:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;38622:38;38636:4;38642:2;38646:7;38655:4;38622:13;:38::i;:::-;38345:323;;;;:::o;63835:107::-;13236:13;:11;:13::i;:::-;63923:10:::1;63907;;:27;;;;;;;;;;;;;;;;;;63835:107:::0;:::o;59616:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35813:281::-;35886:13;35912:23;35927:7;35912:14;:23::i;:::-;35948:21;35972:10;:8;:10::i;:::-;35948:34;;36024:1;36006:7;36000:21;:25;:86;;;;;;;;;;;;;;;;;36052:7;36061:18;:7;:16;:18::i;:::-;36035:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36000:86;35993:93;;;35813:281;;;:::o;61851:228::-;61997:74;62005:14;62022:12;62037:11;;62049:13;59190:20;61997:6;:74::i;:::-;61851:228;;;;;:::o;62615:154::-;13236:13;:11;:13::i;:::-;62710:51:::1;62728:24;59190:20;62710:17;:51::i;:::-;62615:154:::0;:::o;63419:157::-;13236:13;:11;:13::i;:::-;63543:25:::1;63516:24;;:52;;;;;;;;;;;;;;;;;;63419:157:::0;:::o;61627:216::-;61766:69;61773:14;61789:12;61803:11;;61815:13;59138:18;61766:6;:69::i;:::-;61627:216;;;;;:::o;59527:33::-;;;:::o;37451:164::-;37548:4;37572:18;:25;37591:5;37572:25;;;;;;;;;;;;;;;:35;37598:8;37572:35;;;;;;;;;;;;;;;;;;;;;;;;;37565:42;;37451:164;;;;:::o;14256:201::-;13236:13;:11;:13::i;:::-;14365:1:::1;14345:22;;:8;:22;;;;14337:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14421:28;14440:8;14421:18;:28::i;:::-;14256:201:::0;:::o;59444:36::-;;;;;;;;;;;;;:::o;48735:224::-;48837:4;48876:35;48861:50;;;:11;:50;;;;:90;;;;48915:36;48939:11;48915:23;:36::i;:::-;48861:90;48854:97;;48735:224;;;:::o;44957:135::-;45039:16;45047:7;45039;:16::i;:::-;45031:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44957:135;:::o;11901:98::-;11954:7;11981:10;11974:17;;11901:98;:::o;44236:174::-;44338:2;44311:15;:24;44327:7;44311:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44394:7;44390:2;44356:46;;44365:23;44380:7;44365:14;:23::i;:::-;44356:46;;;;;;;;;;;;44236:174;;:::o;13515:132::-;13590:12;:10;:12::i;:::-;13579:23;;:7;:5;:7::i;:::-;:23;;;13571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13515:132::o;64317:133::-;64432:10;64398:9;:20;64408:9;64398:20;;;;;;;;;;;:31;;:44;;;;64317:133;;:::o;40469:264::-;40562:4;40579:13;40595:23;40610:7;40595:14;:23::i;:::-;40579:39;;40648:5;40637:16;;:7;:16;;;:52;;;;40657:32;40674:5;40681:7;40657:16;:32::i;:::-;40637:52;:87;;;;40717:7;40693:31;;:20;40705:7;40693:11;:20::i;:::-;:31;;;40637:87;40629:96;;;40469:264;;;;:::o;65454:1022::-;61506:1;61475:33;;61483:10;;;;;;;;;;;61475:33;;;;61467:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;65615:10:::1;;;;;;;;;;;65593:33;;:10;:33;;;65590:119;;;65642:32;65658:4;65663:2;65666:7;65642:15;:32::i;:::-;65689:7;;65590:119;65727:23;;;;;;;;;;;65719:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;65848:24;;;;;;;;;;;:74;;;;65876:46;:10;;;;;;;;;;;:31;;;65908:7;65876:40;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:46;;65848:74;65844:511;;;66017:12;;;;;;;;;;;66012:189;;66080:10;;;;;;;;;;;:26;;;66107:10;66080:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66050:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;66012:189;66241:10;;;;;;;;;;;:31;;;66273:2;66277:7;66241:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66215:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;65844:511;66369:32;66385:4;66390:2;66393:7;66369:15;:32::i;:::-;66412:10;;;;;;;;;;;:32;;;66445:7;66454:2;66462:5;66412:56;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;61542:1;65454:1022:::0;;;:::o;64177:132::-;64293:8;64261:9;:20;64271:9;64261:20;;;;;;;;;;;:29;;;:40;;;;;;;;;;;;;;;;;;64177:132;;:::o;14617:191::-;14691:16;14710:6;;;;;;;;;;;14691:25;;14736:8;14727:6;;:17;;;;;;;;;;;;;;;;;;14791:8;14760:40;;14781:8;14760:40;;;;;;;;;;;;14680:128;14617:191;:::o;39549:313::-;39705:28;39715:4;39721:2;39725:7;39705:9;:28::i;:::-;39752:47;39775:4;39781:2;39785:7;39794:4;39752:22;:47::i;:::-;39744:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39549:313;;;;:::o;44553:315::-;44708:8;44699:17;;:5;:17;;;;44691:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;44795:8;44757:18;:25;44776:5;44757:25;;;;;;;;;;;;;;;:35;44783:8;44757:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;44841:8;44819:41;;44834:5;44819:41;;;44851:8;44819:41;;;;;;:::i;:::-;;;;;;;;44553:315;;;:::o;66484:142::-;66573:13;66611:7;66604:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66484:142;:::o;9155:723::-;9211:13;9441:1;9432:5;:10;9428:53;;;9459:10;;;;;;;;;;;;;;;;;;;;;9428:53;9491:12;9506:5;9491:20;;9522:14;9547:78;9562:1;9554:4;:9;9547:78;;9580:8;;;;;:::i;:::-;;;;9611:2;9603:10;;;;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:39;;9685:154;9701:1;9692:5;:10;9685:154;;9729:1;9719:11;;;;;:::i;:::-;;;9796:2;9788:5;:10;;;;:::i;:::-;9775:2;:24;;;;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9825:2;9816:11;;;;;:::i;:::-;;;9685:154;;;9863:6;9849:21;;;;;9155:723;;;;:::o;64458:938::-;64690:9;60558;:20;60568:9;60558:20;;;;;;;;;;;:29;;;;;;;;;;;;60550:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;64727:14:::1;60758:9;60724:43;;60740:14;60724:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;60702:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;64771:11:::2;;64784:9;:20;64794:9;64784:20;;;;;;;;;;;:31;;;64817:12;60988:158;61025:11;;60988:158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61055:4;61105:10;61117:12;61088:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61078:53;;;;;;60988:18;:158::i;:::-;60966:236;;;;;;;;;;;;:::i;:::-;;;;;;;;;61506:1:::3;61475:33;;61483:10;;;;;;;;;;;61475:33;;;;61467:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;64866:24:::4;64893:9;:20;64903:9;64893:20;;;;;;;;;;;:30;;:42;64924:10;64893:42;;;;;;;;;;;;;;;;64866:69;;64991:12;64973:14;64954:16;:33;;;;:::i;:::-;:49;;64946:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;65104:14;65085:16;:33;;;;:::i;:::-;65040:9;:20;65050:9;65040:20;;;;;;;;;;;:30;;:42;65071:10;65040:42;;;;;;;;;;;;;;;:78;;;;65129:12;65158:1;65142:13;:11;:13::i;:::-;:17;;;;:::i;:::-;65129:30;;65175:9;65170:219;65194:14;65190:1;:18;65170:219;;;65234:30;65244:10;65255:7;65234:9;:30::i;:::-;65279:10;;;;;;;;;;;:32;;;65312:7;65321:10;65333:13;65348:4;65279:74;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;65368:9;;;;;:::i;:::-;;;;65210:3;;;;;:::i;:::-;;;;65170:219;;;;64855:541;;60842:1:::2;;;;60624::::1;64458:938:::0;;;;;;;:::o;34542:305::-;34644:4;34696:25;34681:40;;;:11;:40;;;;:105;;;;34753:33;34738:48;;;:11;:48;;;;34681:105;:158;;;;34803:36;34827:11;34803:23;:36::i;:::-;34681:158;34661:178;;34542:305;;;:::o;40175:127::-;40240:4;40292:1;40264:30;;:7;:16;40272:7;40264:16;;;;;;;;;;;;;;;;;;;;;:30;;;;40257:37;;40175:127;;;:::o;43492:625::-;43651:4;43624:31;;:23;43639:7;43624:14;:23::i;:::-;:31;;;43616:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;43730:1;43716:16;;:2;:16;;;;43708:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;43786:39;43807:4;43813:2;43817:7;43786:20;:39::i;:::-;43890:29;43907:1;43911:7;43890:8;:29::i;:::-;43951:1;43932:9;:15;43942:4;43932:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;43980:1;43963:9;:13;43973:2;43963:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;44011:2;43992:7;:16;44000:7;43992:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44050:7;44046:2;44031:27;;44040:4;44031:27;;;;;;;;;;;;44071:38;44091:4;44097:2;44101:7;44071:19;:38::i;:::-;43492:625;;;:::o;45656:853::-;45810:4;45831:15;:2;:13;;;:15::i;:::-;45827:675;;;45883:2;45867:36;;;45904:12;:10;:12::i;:::-;45918:4;45924:7;45933:4;45867:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45863:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46125:1;46108:6;:13;:18;46104:328;;;46151:60;;;;;;;;;;:::i;:::-;;;;;;;;46104:328;46382:6;46376:13;46367:6;46363:2;46359:15;46352:38;45863:584;45999:41;;;45989:51;;;:6;:51;;;;45982:58;;;;;45827:675;46486:4;46479:11;;45656:853;;;;;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;41075:110::-;41151:26;41161:2;41165:7;41151:26;;;;;;;;;;;;:9;:26::i;:::-;41075:110;;:::o;26204:157::-;26289:4;26328:25;26313:40;;;:11;:40;;;;26306:47;;26204:157;;;:::o;59988:215::-;60150:45;60177:4;60183:2;60187:7;60150:26;:45::i;:::-;59988:215;;;:::o;47592:125::-;;;;:::o;16048:326::-;16108:4;16365:1;16343:7;:19;;;:23;16336:30;;16048:326;;;:::o;2086:296::-;2169:7;2189:20;2212:4;2189:27;;2232:9;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;;2300:9;:33::i;:::-;2285:48;;2265:3;;;;;:::i;:::-;;;;2227:118;;;;2362:12;2355:19;;;2086:296;;;;:::o;41412:319::-;41541:18;41547:2;41551:7;41541:5;:18::i;:::-;41592:53;41623:1;41627:2;41631:7;41640:4;41592:22;:53::i;:::-;41570:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;41412:319;;;:::o;50411:589::-;50555:45;50582:4;50588:2;50592:7;50555:26;:45::i;:::-;50633:1;50617:18;;:4;:18;;;50613:187;;;50652:40;50684:7;50652:31;:40::i;:::-;50613:187;;;50722:2;50714:10;;:4;:10;;;50710:90;;50741:47;50774:4;50780:7;50741:32;:47::i;:::-;50710:90;50613:187;50828:1;50814:16;;:2;:16;;;50810:183;;;50847:45;50884:7;50847:36;:45::i;:::-;50810:183;;;50920:4;50914:10;;:2;:10;;;50910:83;;50941:40;50969:2;50973:7;50941:27;:40::i;:::-;50910:83;50810:183;50411:589;;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8414:20;8429:1;8432;8414:14;:20::i;:::-;8383:51;;;8391:20;8406:1;8409;8391:14;:20::i;:::-;8383:51;8376:58;;8293:149;;;;:::o;42067:439::-;42161:1;42147:16;;:2;:16;;;;42139:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;42220:16;42228:7;42220;:16::i;:::-;42219:17;42211:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42282:45;42311:1;42315:2;42319:7;42282:20;:45::i;:::-;42357:1;42340:9;:13;42350:2;42340:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;42388:2;42369:7;:16;42377:7;42369:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;42433:7;42429:2;42408:33;;42425:1;42408:33;;;;;;;;;;;;42454:44;42482:1;42486:2;42490:7;42454:19;:44::i;:::-;42067:439;;:::o;47081:126::-;;;;:::o;51723:164::-;51827:10;:17;;;;51800:15;:24;51816:7;51800:24;;;;;;;;;;;:44;;;;51855:10;51871:7;51855:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51723:164;:::o;52514:988::-;52780:22;52830:1;52805:22;52822:4;52805:16;:22::i;:::-;:26;;;;:::i;:::-;52780:51;;52842:18;52863:17;:26;52881:7;52863:26;;;;;;;;;;;;52842:47;;53010:14;52996:10;:28;52992:328;;53041:19;53063:12;:18;53076:4;53063:18;;;;;;;;;;;;;;;:34;53082:14;53063:34;;;;;;;;;;;;53041:56;;53147:11;53114:12;:18;53127:4;53114:18;;;;;;;;;;;;;;;:30;53133:10;53114:30;;;;;;;;;;;:44;;;;53264:10;53231:17;:30;53249:11;53231:30;;;;;;;;;;;:43;;;;53026:294;52992:328;53416:17;:26;53434:7;53416:26;;;;;;;;;;;53409:33;;;53460:12;:18;53473:4;53460:18;;;;;;;;;;;;;;;:34;53479:14;53460:34;;;;;;;;;;;53453:41;;;52595:907;;52514:988;;:::o;53797:1079::-;54050:22;54095:1;54075:10;:17;;;;:21;;;;:::i;:::-;54050:46;;54107:18;54128:15;:24;54144:7;54128:24;;;;;;;;;;;;54107:45;;54479:19;54501:10;54512:14;54501:26;;;;;;;;:::i;:::-;;;;;;;;;;54479:48;;54565:11;54540:10;54551;54540:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;54676:10;54645:15;:28;54661:11;54645:28;;;;;;;;;;;:41;;;;54817:15;:24;54833:7;54817:24;;;;;;;;;;;54810:31;;;54852:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53868:1008;;;53797:1079;:::o;51301:221::-;51386:14;51403:20;51420:2;51403:16;:20::i;:::-;51386:37;;51461:7;51434:12;:16;51447:2;51434:16;;;;;;;;;;;;;;;:24;51451:6;51434:24;;;;;;;;;;;:34;;;;51508:6;51479:17;:26;51497:7;51479:26;;;;;;;;;;;:35;;;;51375:147;51301:221;;:::o;8450:268::-;8518:13;8625:1;8619:4;8612:15;8654:1;8648:4;8641:15;8695:4;8689;8679:21;8670:30;;8450:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1770:5;1801:6;1795:13;1786:22;;1817:30;1841:5;1817:30;:::i;:::-;1716:137;;;;:::o;1859:139::-;1905:5;1943:6;1930:20;1921:29;;1959:33;1986:5;1959:33;:::i;:::-;1859:139;;;;:::o;2004:143::-;2061:5;2092:6;2086:13;2077:22;;2108:33;2135:5;2108:33;:::i;:::-;2004:143;;;;:::o;2153:137::-;2198:5;2236:6;2223:20;2214:29;;2252:32;2278:5;2252:32;:::i;:::-;2153:137;;;;:::o;2296:141::-;2352:5;2383:6;2377:13;2368:22;;2399:32;2425:5;2399:32;:::i;:::-;2296:141;;;;:::o;2456:338::-;2511:5;2560:3;2553:4;2545:6;2541:17;2537:27;2527:122;;2568:79;;:::i;:::-;2527:122;2685:6;2672:20;2710:78;2784:3;2776:6;2769:4;2761:6;2757:17;2710:78;:::i;:::-;2701:87;;2517:277;2456:338;;;;:::o;2814:340::-;2870:5;2919:3;2912:4;2904:6;2900:17;2896:27;2886:122;;2927:79;;:::i;:::-;2886:122;3044:6;3031:20;3069:79;3144:3;3136:6;3129:4;3121:6;3117:17;3069:79;:::i;:::-;3060:88;;2876:278;2814:340;;;;:::o;3160:139::-;3206:5;3244:6;3231:20;3222:29;;3260:33;3287:5;3260:33;:::i;:::-;3160:139;;;;:::o;3305:329::-;3364:6;3413:2;3401:9;3392:7;3388:23;3384:32;3381:119;;;3419:79;;:::i;:::-;3381:119;3539:1;3564:53;3609:7;3600:6;3589:9;3585:22;3564:53;:::i;:::-;3554:63;;3510:117;3305:329;;;;:::o;3640:474::-;3708:6;3716;3765:2;3753:9;3744:7;3740:23;3736:32;3733:119;;;3771:79;;:::i;:::-;3733:119;3891:1;3916:53;3961:7;3952:6;3941:9;3937:22;3916:53;:::i;:::-;3906:63;;3862:117;4018:2;4044:53;4089:7;4080:6;4069:9;4065:22;4044:53;:::i;:::-;4034:63;;3989:118;3640:474;;;;;:::o;4120:619::-;4197:6;4205;4213;4262:2;4250:9;4241:7;4237:23;4233:32;4230:119;;;4268:79;;:::i;:::-;4230:119;4388:1;4413:53;4458:7;4449:6;4438:9;4434:22;4413:53;:::i;:::-;4403:63;;4359:117;4515:2;4541:53;4586:7;4577:6;4566:9;4562:22;4541:53;:::i;:::-;4531:63;;4486:118;4643:2;4669:53;4714:7;4705:6;4694:9;4690:22;4669:53;:::i;:::-;4659:63;;4614:118;4120:619;;;;;:::o;4745:943::-;4840:6;4848;4856;4864;4913:3;4901:9;4892:7;4888:23;4884:33;4881:120;;;4920:79;;:::i;:::-;4881:120;5040:1;5065:53;5110:7;5101:6;5090:9;5086:22;5065:53;:::i;:::-;5055:63;;5011:117;5167:2;5193:53;5238:7;5229:6;5218:9;5214:22;5193:53;:::i;:::-;5183:63;;5138:118;5295:2;5321:53;5366:7;5357:6;5346:9;5342:22;5321:53;:::i;:::-;5311:63;;5266:118;5451:2;5440:9;5436:18;5423:32;5482:18;5474:6;5471:30;5468:117;;;5504:79;;:::i;:::-;5468:117;5609:62;5663:7;5654:6;5643:9;5639:22;5609:62;:::i;:::-;5599:72;;5394:287;4745:943;;;;;;;:::o;5694:468::-;5759:6;5767;5816:2;5804:9;5795:7;5791:23;5787:32;5784:119;;;5822:79;;:::i;:::-;5784:119;5942:1;5967:53;6012:7;6003:6;5992:9;5988:22;5967:53;:::i;:::-;5957:63;;5913:117;6069:2;6095:50;6137:7;6128:6;6117:9;6113:22;6095:50;:::i;:::-;6085:60;;6040:115;5694:468;;;;;:::o;6168:474::-;6236:6;6244;6293:2;6281:9;6272:7;6268:23;6264:32;6261:119;;;6299:79;;:::i;:::-;6261:119;6419:1;6444:53;6489:7;6480:6;6469:9;6465:22;6444:53;:::i;:::-;6434:63;;6390:117;6546:2;6572:53;6617:7;6608:6;6597:9;6593:22;6572:53;:::i;:::-;6562:63;;6517:118;6168:474;;;;;:::o;6648:323::-;6704:6;6753:2;6741:9;6732:7;6728:23;6724:32;6721:119;;;6759:79;;:::i;:::-;6721:119;6879:1;6904:50;6946:7;6937:6;6926:9;6922:22;6904:50;:::i;:::-;6894:60;;6850:114;6648:323;;;;:::o;6977:345::-;7044:6;7093:2;7081:9;7072:7;7068:23;7064:32;7061:119;;;7099:79;;:::i;:::-;7061:119;7219:1;7244:61;7297:7;7288:6;7277:9;7273:22;7244:61;:::i;:::-;7234:71;;7190:125;6977:345;;;;:::o;7328:329::-;7387:6;7436:2;7424:9;7415:7;7411:23;7407:32;7404:119;;;7442:79;;:::i;:::-;7404:119;7562:1;7587:53;7632:7;7623:6;7612:9;7608:22;7587:53;:::i;:::-;7577:63;;7533:117;7328:329;;;;:::o;7663:351::-;7733:6;7782:2;7770:9;7761:7;7757:23;7753:32;7750:119;;;7788:79;;:::i;:::-;7750:119;7908:1;7933:64;7989:7;7980:6;7969:9;7965:22;7933:64;:::i;:::-;7923:74;;7879:128;7663:351;;;;:::o;8020:327::-;8078:6;8127:2;8115:9;8106:7;8102:23;8098:32;8095:119;;;8133:79;;:::i;:::-;8095:119;8253:1;8278:52;8322:7;8313:6;8302:9;8298:22;8278:52;:::i;:::-;8268:62;;8224:116;8020:327;;;;:::o;8353:349::-;8422:6;8471:2;8459:9;8450:7;8446:23;8442:32;8439:119;;;8477:79;;:::i;:::-;8439:119;8597:1;8622:63;8677:7;8668:6;8657:9;8653:22;8622:63;:::i;:::-;8612:73;;8568:127;8353:349;;;;:::o;8708:509::-;8777:6;8826:2;8814:9;8805:7;8801:23;8797:32;8794:119;;;8832:79;;:::i;:::-;8794:119;8980:1;8969:9;8965:17;8952:31;9010:18;9002:6;8999:30;8996:117;;;9032:79;;:::i;:::-;8996:117;9137:63;9192:7;9183:6;9172:9;9168:22;9137:63;:::i;:::-;9127:73;;8923:287;8708:509;;;;:::o;9223:329::-;9282:6;9331:2;9319:9;9310:7;9306:23;9302:32;9299:119;;;9337:79;;:::i;:::-;9299:119;9457:1;9482:53;9527:7;9518:6;9507:9;9503:22;9482:53;:::i;:::-;9472:63;;9428:117;9223:329;;;;:::o;9558:1173::-;9680:6;9688;9696;9704;9712;9761:3;9749:9;9740:7;9736:23;9732:33;9729:120;;;9768:79;;:::i;:::-;9729:120;9888:1;9913:53;9958:7;9949:6;9938:9;9934:22;9913:53;:::i;:::-;9903:63;;9859:117;10015:2;10041:53;10086:7;10077:6;10066:9;10062:22;10041:53;:::i;:::-;10031:63;;9986:118;10171:2;10160:9;10156:18;10143:32;10202:18;10194:6;10191:30;10188:117;;;10224:79;;:::i;:::-;10188:117;10337:80;10409:7;10400:6;10389:9;10385:22;10337:80;:::i;:::-;10319:98;;;;10114:313;10494:2;10483:9;10479:18;10466:32;10525:18;10517:6;10514:30;10511:117;;;10547:79;;:::i;:::-;10511:117;10652:62;10706:7;10697:6;10686:9;10682:22;10652:62;:::i;:::-;10642:72;;10437:287;9558:1173;;;;;;;;:::o;10737:118::-;10824:24;10842:5;10824:24;:::i;:::-;10819:3;10812:37;10737:118;;:::o;10861:157::-;10966:45;10986:24;11004:5;10986:24;:::i;:::-;10966:45;:::i;:::-;10961:3;10954:58;10861:157;;:::o;11024:109::-;11105:21;11120:5;11105:21;:::i;:::-;11100:3;11093:34;11024:109;;:::o;11139:360::-;11225:3;11253:38;11285:5;11253:38;:::i;:::-;11307:70;11370:6;11365:3;11307:70;:::i;:::-;11300:77;;11386:52;11431:6;11426:3;11419:4;11412:5;11408:16;11386:52;:::i;:::-;11463:29;11485:6;11463:29;:::i;:::-;11458:3;11454:39;11447:46;;11229:270;11139:360;;;;:::o;11505:153::-;11603:48;11645:5;11603:48;:::i;:::-;11598:3;11591:61;11505:153;;:::o;11664:364::-;11752:3;11780:39;11813:5;11780:39;:::i;:::-;11835:71;11899:6;11894:3;11835:71;:::i;:::-;11828:78;;11915:52;11960:6;11955:3;11948:4;11941:5;11937:16;11915:52;:::i;:::-;11992:29;12014:6;11992:29;:::i;:::-;11987:3;11983:39;11976:46;;11756:272;11664:364;;;;:::o;12034:377::-;12140:3;12168:39;12201:5;12168:39;:::i;:::-;12223:89;12305:6;12300:3;12223:89;:::i;:::-;12216:96;;12321:52;12366:6;12361:3;12354:4;12347:5;12343:16;12321:52;:::i;:::-;12398:6;12393:3;12389:16;12382:23;;12144:267;12034:377;;;;:::o;12417:366::-;12559:3;12580:67;12644:2;12639:3;12580:67;:::i;:::-;12573:74;;12656:93;12745:3;12656:93;:::i;:::-;12774:2;12769:3;12765:12;12758:19;;12417:366;;;:::o;12789:::-;12931:3;12952:67;13016:2;13011:3;12952:67;:::i;:::-;12945:74;;13028:93;13117:3;13028:93;:::i;:::-;13146:2;13141:3;13137:12;13130:19;;12789:366;;;:::o;13161:::-;13303:3;13324:67;13388:2;13383:3;13324:67;:::i;:::-;13317:74;;13400:93;13489:3;13400:93;:::i;:::-;13518:2;13513:3;13509:12;13502:19;;13161:366;;;:::o;13533:::-;13675:3;13696:67;13760:2;13755:3;13696:67;:::i;:::-;13689:74;;13772:93;13861:3;13772:93;:::i;:::-;13890:2;13885:3;13881:12;13874:19;;13533:366;;;:::o;13905:::-;14047:3;14068:67;14132:2;14127:3;14068:67;:::i;:::-;14061:74;;14144:93;14233:3;14144:93;:::i;:::-;14262:2;14257:3;14253:12;14246:19;;13905:366;;;:::o;14277:::-;14419:3;14440:67;14504:2;14499:3;14440:67;:::i;:::-;14433:74;;14516:93;14605:3;14516:93;:::i;:::-;14634:2;14629:3;14625:12;14618:19;;14277:366;;;:::o;14649:::-;14791:3;14812:67;14876:2;14871:3;14812:67;:::i;:::-;14805:74;;14888:93;14977:3;14888:93;:::i;:::-;15006:2;15001:3;14997:12;14990:19;;14649:366;;;:::o;15021:::-;15163:3;15184:67;15248:2;15243:3;15184:67;:::i;:::-;15177:74;;15260:93;15349:3;15260:93;:::i;:::-;15378:2;15373:3;15369:12;15362:19;;15021:366;;;:::o;15393:::-;15535:3;15556:67;15620:2;15615:3;15556:67;:::i;:::-;15549:74;;15632:93;15721:3;15632:93;:::i;:::-;15750:2;15745:3;15741:12;15734:19;;15393:366;;;:::o;15765:::-;15907:3;15928:67;15992:2;15987:3;15928:67;:::i;:::-;15921:74;;16004:93;16093:3;16004:93;:::i;:::-;16122:2;16117:3;16113:12;16106:19;;15765:366;;;:::o;16137:::-;16279:3;16300:67;16364:2;16359:3;16300:67;:::i;:::-;16293:74;;16376:93;16465:3;16376:93;:::i;:::-;16494:2;16489:3;16485:12;16478:19;;16137:366;;;:::o;16509:::-;16651:3;16672:67;16736:2;16731:3;16672:67;:::i;:::-;16665:74;;16748:93;16837:3;16748:93;:::i;:::-;16866:2;16861:3;16857:12;16850:19;;16509:366;;;:::o;16881:::-;17023:3;17044:67;17108:2;17103:3;17044:67;:::i;:::-;17037:74;;17120:93;17209:3;17120:93;:::i;:::-;17238:2;17233:3;17229:12;17222:19;;16881:366;;;:::o;17253:::-;17395:3;17416:67;17480:2;17475:3;17416:67;:::i;:::-;17409:74;;17492:93;17581:3;17492:93;:::i;:::-;17610:2;17605:3;17601:12;17594:19;;17253:366;;;:::o;17625:::-;17767:3;17788:67;17852:2;17847:3;17788:67;:::i;:::-;17781:74;;17864:93;17953:3;17864:93;:::i;:::-;17982:2;17977:3;17973:12;17966:19;;17625:366;;;:::o;17997:::-;18139:3;18160:67;18224:2;18219:3;18160:67;:::i;:::-;18153:74;;18236:93;18325:3;18236:93;:::i;:::-;18354:2;18349:3;18345:12;18338:19;;17997:366;;;:::o;18369:::-;18511:3;18532:67;18596:2;18591:3;18532:67;:::i;:::-;18525:74;;18608:93;18697:3;18608:93;:::i;:::-;18726:2;18721:3;18717:12;18710:19;;18369:366;;;:::o;18741:362::-;18882:3;18903:65;18966:1;18961:3;18903:65;:::i;:::-;18896:72;;18977:93;19066:3;18977:93;:::i;:::-;19095:1;19090:3;19086:11;19079:18;;18741:362;;;:::o;19109:365::-;19251:3;19272:66;19336:1;19331:3;19272:66;:::i;:::-;19265:73;;19347:93;19436:3;19347:93;:::i;:::-;19465:2;19460:3;19456:12;19449:19;;19109:365;;;:::o;19480:366::-;19622:3;19643:67;19707:2;19702:3;19643:67;:::i;:::-;19636:74;;19719:93;19808:3;19719:93;:::i;:::-;19837:2;19832:3;19828:12;19821:19;;19480:366;;;:::o;19852:::-;19994:3;20015:67;20079:2;20074:3;20015:67;:::i;:::-;20008:74;;20091:93;20180:3;20091:93;:::i;:::-;20209:2;20204:3;20200:12;20193:19;;19852:366;;;:::o;20224:::-;20366:3;20387:67;20451:2;20446:3;20387:67;:::i;:::-;20380:74;;20463:93;20552:3;20463:93;:::i;:::-;20581:2;20576:3;20572:12;20565:19;;20224:366;;;:::o;20596:::-;20738:3;20759:67;20823:2;20818:3;20759:67;:::i;:::-;20752:74;;20835:93;20924:3;20835:93;:::i;:::-;20953:2;20948:3;20944:12;20937:19;;20596:366;;;:::o;20968:::-;21110:3;21131:67;21195:2;21190:3;21131:67;:::i;:::-;21124:74;;21207:93;21296:3;21207:93;:::i;:::-;21325:2;21320:3;21316:12;21309:19;;20968:366;;;:::o;21340:::-;21482:3;21503:67;21567:2;21562:3;21503:67;:::i;:::-;21496:74;;21579:93;21668:3;21579:93;:::i;:::-;21697:2;21692:3;21688:12;21681:19;;21340:366;;;:::o;21712:118::-;21799:24;21817:5;21799:24;:::i;:::-;21794:3;21787:37;21712:118;;:::o;21836:157::-;21941:45;21961:24;21979:5;21961:24;:::i;:::-;21941:45;:::i;:::-;21936:3;21929:58;21836:157;;:::o;21999:115::-;22084:23;22101:5;22084:23;:::i;:::-;22079:3;22072:36;21999:115;;:::o;22120:397::-;22260:3;22275:75;22346:3;22337:6;22275:75;:::i;:::-;22375:2;22370:3;22366:12;22359:19;;22388:75;22459:3;22450:6;22388:75;:::i;:::-;22488:2;22483:3;22479:12;22472:19;;22508:3;22501:10;;22120:397;;;;;:::o;22523:435::-;22703:3;22725:95;22816:3;22807:6;22725:95;:::i;:::-;22718:102;;22837:95;22928:3;22919:6;22837:95;:::i;:::-;22830:102;;22949:3;22942:10;;22523:435;;;;;:::o;22964:222::-;23057:4;23095:2;23084:9;23080:18;23072:26;;23108:71;23176:1;23165:9;23161:17;23152:6;23108:71;:::i;:::-;22964:222;;;;:::o;23192:640::-;23387:4;23425:3;23414:9;23410:19;23402:27;;23439:71;23507:1;23496:9;23492:17;23483:6;23439:71;:::i;:::-;23520:72;23588:2;23577:9;23573:18;23564:6;23520:72;:::i;:::-;23602;23670:2;23659:9;23655:18;23646:6;23602:72;:::i;:::-;23721:9;23715:4;23711:20;23706:2;23695:9;23691:18;23684:48;23749:76;23820:4;23811:6;23749:76;:::i;:::-;23741:84;;23192:640;;;;;;;:::o;23838:332::-;23959:4;23997:2;23986:9;23982:18;23974:26;;24010:71;24078:1;24067:9;24063:17;24054:6;24010:71;:::i;:::-;24091:72;24159:2;24148:9;24144:18;24135:6;24091:72;:::i;:::-;23838:332;;;;;:::o;24176:210::-;24263:4;24301:2;24290:9;24286:18;24278:26;;24314:65;24376:1;24365:9;24361:17;24352:6;24314:65;:::i;:::-;24176:210;;;;:::o;24392:244::-;24496:4;24534:2;24523:9;24519:18;24511:26;;24547:82;24626:1;24615:9;24611:17;24602:6;24547:82;:::i;:::-;24392:244;;;;:::o;24642:313::-;24755:4;24793:2;24782:9;24778:18;24770:26;;24842:9;24836:4;24832:20;24828:1;24817:9;24813:17;24806:47;24870:78;24943:4;24934:6;24870:78;:::i;:::-;24862:86;;24642:313;;;;:::o;24961:419::-;25127:4;25165:2;25154:9;25150:18;25142:26;;25214:9;25208:4;25204:20;25200:1;25189:9;25185:17;25178:47;25242:131;25368:4;25242:131;:::i;:::-;25234:139;;24961:419;;;:::o;25386:::-;25552:4;25590:2;25579:9;25575:18;25567:26;;25639:9;25633:4;25629:20;25625:1;25614:9;25610:17;25603:47;25667:131;25793:4;25667:131;:::i;:::-;25659:139;;25386:419;;;:::o;25811:::-;25977:4;26015:2;26004:9;26000:18;25992:26;;26064:9;26058:4;26054:20;26050:1;26039:9;26035:17;26028:47;26092:131;26218:4;26092:131;:::i;:::-;26084:139;;25811:419;;;:::o;26236:::-;26402:4;26440:2;26429:9;26425:18;26417:26;;26489:9;26483:4;26479:20;26475:1;26464:9;26460:17;26453:47;26517:131;26643:4;26517:131;:::i;:::-;26509:139;;26236:419;;;:::o;26661:::-;26827:4;26865:2;26854:9;26850:18;26842:26;;26914:9;26908:4;26904:20;26900:1;26889:9;26885:17;26878:47;26942:131;27068:4;26942:131;:::i;:::-;26934:139;;26661:419;;;:::o;27086:::-;27252:4;27290:2;27279:9;27275:18;27267:26;;27339:9;27333:4;27329:20;27325:1;27314:9;27310:17;27303:47;27367:131;27493:4;27367:131;:::i;:::-;27359:139;;27086:419;;;:::o;27511:::-;27677:4;27715:2;27704:9;27700:18;27692:26;;27764:9;27758:4;27754:20;27750:1;27739:9;27735:17;27728:47;27792:131;27918:4;27792:131;:::i;:::-;27784:139;;27511:419;;;:::o;27936:::-;28102:4;28140:2;28129:9;28125:18;28117:26;;28189:9;28183:4;28179:20;28175:1;28164:9;28160:17;28153:47;28217:131;28343:4;28217:131;:::i;:::-;28209:139;;27936:419;;;:::o;28361:::-;28527:4;28565:2;28554:9;28550:18;28542:26;;28614:9;28608:4;28604:20;28600:1;28589:9;28585:17;28578:47;28642:131;28768:4;28642:131;:::i;:::-;28634:139;;28361:419;;;:::o;28786:::-;28952:4;28990:2;28979:9;28975:18;28967:26;;29039:9;29033:4;29029:20;29025:1;29014:9;29010:17;29003:47;29067:131;29193:4;29067:131;:::i;:::-;29059:139;;28786:419;;;:::o;29211:::-;29377:4;29415:2;29404:9;29400:18;29392:26;;29464:9;29458:4;29454:20;29450:1;29439:9;29435:17;29428:47;29492:131;29618:4;29492:131;:::i;:::-;29484:139;;29211:419;;;:::o;29636:::-;29802:4;29840:2;29829:9;29825:18;29817:26;;29889:9;29883:4;29879:20;29875:1;29864:9;29860:17;29853:47;29917:131;30043:4;29917:131;:::i;:::-;29909:139;;29636:419;;;:::o;30061:::-;30227:4;30265:2;30254:9;30250:18;30242:26;;30314:9;30308:4;30304:20;30300:1;30289:9;30285:17;30278:47;30342:131;30468:4;30342:131;:::i;:::-;30334:139;;30061:419;;;:::o;30486:::-;30652:4;30690:2;30679:9;30675:18;30667:26;;30739:9;30733:4;30729:20;30725:1;30714:9;30710:17;30703:47;30767:131;30893:4;30767:131;:::i;:::-;30759:139;;30486:419;;;:::o;30911:::-;31077:4;31115:2;31104:9;31100:18;31092:26;;31164:9;31158:4;31154:20;31150:1;31139:9;31135:17;31128:47;31192:131;31318:4;31192:131;:::i;:::-;31184:139;;30911:419;;;:::o;31336:::-;31502:4;31540:2;31529:9;31525:18;31517:26;;31589:9;31583:4;31579:20;31575:1;31564:9;31560:17;31553:47;31617:131;31743:4;31617:131;:::i;:::-;31609:139;;31336:419;;;:::o;31761:::-;31927:4;31965:2;31954:9;31950:18;31942:26;;32014:9;32008:4;32004:20;32000:1;31989:9;31985:17;31978:47;32042:131;32168:4;32042:131;:::i;:::-;32034:139;;31761:419;;;:::o;32186:::-;32352:4;32390:2;32379:9;32375:18;32367:26;;32439:9;32433:4;32429:20;32425:1;32414:9;32410:17;32403:47;32467:131;32593:4;32467:131;:::i;:::-;32459:139;;32186:419;;;:::o;32611:::-;32777:4;32815:2;32804:9;32800:18;32792:26;;32864:9;32858:4;32854:20;32850:1;32839:9;32835:17;32828:47;32892:131;33018:4;32892:131;:::i;:::-;32884:139;;32611:419;;;:::o;33036:::-;33202:4;33240:2;33229:9;33225:18;33217:26;;33289:9;33283:4;33279:20;33275:1;33264:9;33260:17;33253:47;33317:131;33443:4;33317:131;:::i;:::-;33309:139;;33036:419;;;:::o;33461:::-;33627:4;33665:2;33654:9;33650:18;33642:26;;33714:9;33708:4;33704:20;33700:1;33689:9;33685:17;33678:47;33742:131;33868:4;33742:131;:::i;:::-;33734:139;;33461:419;;;:::o;33886:::-;34052:4;34090:2;34079:9;34075:18;34067:26;;34139:9;34133:4;34129:20;34125:1;34114:9;34110:17;34103:47;34167:131;34293:4;34167:131;:::i;:::-;34159:139;;33886:419;;;:::o;34311:::-;34477:4;34515:2;34504:9;34500:18;34492:26;;34564:9;34558:4;34554:20;34550:1;34539:9;34535:17;34528:47;34592:131;34718:4;34592:131;:::i;:::-;34584:139;;34311:419;;;:::o;34736:::-;34902:4;34940:2;34929:9;34925:18;34917:26;;34989:9;34983:4;34979:20;34975:1;34964:9;34960:17;34953:47;35017:131;35143:4;35017:131;:::i;:::-;35009:139;;34736:419;;;:::o;35161:222::-;35254:4;35292:2;35281:9;35277:18;35269:26;;35305:71;35373:1;35362:9;35358:17;35349:6;35305:71;:::i;:::-;35161:222;;;;:::o;35389:628::-;35578:4;35616:3;35605:9;35601:19;35593:27;;35630:71;35698:1;35687:9;35683:17;35674:6;35630:71;:::i;:::-;35711:72;35779:2;35768:9;35764:18;35755:6;35711:72;:::i;:::-;35830:9;35824:4;35820:20;35815:2;35804:9;35800:18;35793:48;35858:76;35929:4;35920:6;35858:76;:::i;:::-;35850:84;;35944:66;36006:2;35995:9;35991:18;35982:6;35944:66;:::i;:::-;35389:628;;;;;;;:::o;36023:736::-;36266:4;36304:3;36293:9;36289:19;36281:27;;36318:71;36386:1;36375:9;36371:17;36362:6;36318:71;:::i;:::-;36399:72;36467:2;36456:9;36452:18;36443:6;36399:72;:::i;:::-;36518:9;36512:4;36508:20;36503:2;36492:9;36488:18;36481:48;36546:130;36671:4;36546:130;:::i;:::-;36538:138;;36686:66;36748:2;36737:9;36733:18;36724:6;36686:66;:::i;:::-;36023:736;;;;;;:::o;36765:218::-;36856:4;36894:2;36883:9;36879:18;36871:26;;36907:69;36973:1;36962:9;36958:17;36949:6;36907:69;:::i;:::-;36765:218;;;;:::o;36989:129::-;37023:6;37050:20;;:::i;:::-;37040:30;;37079:33;37107:4;37099:6;37079:33;:::i;:::-;36989:129;;;:::o;37124:75::-;37157:6;37190:2;37184:9;37174:19;;37124:75;:::o;37205:307::-;37266:4;37356:18;37348:6;37345:30;37342:56;;;37378:18;;:::i;:::-;37342:56;37416:29;37438:6;37416:29;:::i;:::-;37408:37;;37500:4;37494;37490:15;37482:23;;37205:307;;;:::o;37518:308::-;37580:4;37670:18;37662:6;37659:30;37656:56;;;37692:18;;:::i;:::-;37656:56;37730:29;37752:6;37730:29;:::i;:::-;37722:37;;37814:4;37808;37804:15;37796:23;;37518:308;;;:::o;37832:98::-;37883:6;37917:5;37911:12;37901:22;;37832:98;;;:::o;37936:99::-;37988:6;38022:5;38016:12;38006:22;;37936:99;;;:::o;38041:168::-;38124:11;38158:6;38153:3;38146:19;38198:4;38193:3;38189:14;38174:29;;38041:168;;;;:::o;38215:169::-;38299:11;38333:6;38328:3;38321:19;38373:4;38368:3;38364:14;38349:29;;38215:169;;;;:::o;38390:148::-;38492:11;38529:3;38514:18;;38390:148;;;;:::o;38544:305::-;38584:3;38603:20;38621:1;38603:20;:::i;:::-;38598:25;;38637:20;38655:1;38637:20;:::i;:::-;38632:25;;38791:1;38723:66;38719:74;38716:1;38713:81;38710:107;;;38797:18;;:::i;:::-;38710:107;38841:1;38838;38834:9;38827:16;;38544:305;;;;:::o;38855:185::-;38895:1;38912:20;38930:1;38912:20;:::i;:::-;38907:25;;38946:20;38964:1;38946:20;:::i;:::-;38941:25;;38985:1;38975:35;;38990:18;;:::i;:::-;38975:35;39032:1;39029;39025:9;39020:14;;38855:185;;;;:::o;39046:191::-;39086:4;39106:20;39124:1;39106:20;:::i;:::-;39101:25;;39140:20;39158:1;39140:20;:::i;:::-;39135:25;;39179:1;39176;39173:8;39170:34;;;39184:18;;:::i;:::-;39170:34;39229:1;39226;39222:9;39214:17;;39046:191;;;;:::o;39243:96::-;39280:7;39309:24;39327:5;39309:24;:::i;:::-;39298:35;;39243:96;;;:::o;39345:90::-;39379:7;39422:5;39415:13;39408:21;39397:32;;39345:90;;;:::o;39441:77::-;39478:7;39507:5;39496:16;;39441:77;;;:::o;39524:149::-;39560:7;39600:66;39593:5;39589:78;39578:89;;39524:149;;;:::o;39679:126::-;39716:7;39756:42;39749:5;39745:54;39734:65;;39679:126;;;:::o;39811:77::-;39848:7;39877:5;39866:16;;39811:77;;;:::o;39894:93::-;39930:7;39970:10;39963:5;39959:22;39948:33;;39894:93;;;:::o;39993:137::-;40054:9;40087:37;40118:5;40087:37;:::i;:::-;40074:50;;39993:137;;;:::o;40136:126::-;40186:9;40219:37;40250:5;40219:37;:::i;:::-;40206:50;;40136:126;;;:::o;40268:113::-;40318:9;40351:24;40369:5;40351:24;:::i;:::-;40338:37;;40268:113;;;:::o;40387:154::-;40471:6;40466:3;40461;40448:30;40533:1;40524:6;40519:3;40515:16;40508:27;40387:154;;;:::o;40547:307::-;40615:1;40625:113;40639:6;40636:1;40633:13;40625:113;;;40724:1;40719:3;40715:11;40709:18;40705:1;40700:3;40696:11;40689:39;40661:2;40658:1;40654:10;40649:15;;40625:113;;;40756:6;40753:1;40750:13;40747:101;;;40836:1;40827:6;40822:3;40818:16;40811:27;40747:101;40596:258;40547:307;;;:::o;40860:320::-;40904:6;40941:1;40935:4;40931:12;40921:22;;40988:1;40982:4;40978:12;41009:18;40999:81;;41065:4;41057:6;41053:17;41043:27;;40999:81;41127:2;41119:6;41116:14;41096:18;41093:38;41090:84;;;41146:18;;:::i;:::-;41090:84;40911:269;40860:320;;;:::o;41186:281::-;41269:27;41291:4;41269:27;:::i;:::-;41261:6;41257:40;41399:6;41387:10;41384:22;41363:18;41351:10;41348:34;41345:62;41342:88;;;41410:18;;:::i;:::-;41342:88;41450:10;41446:2;41439:22;41229:238;41186:281;;:::o;41473:233::-;41512:3;41535:24;41553:5;41535:24;:::i;:::-;41526:33;;41581:66;41574:5;41571:77;41568:103;;;41651:18;;:::i;:::-;41568:103;41698:1;41691:5;41687:13;41680:20;;41473:233;;;:::o;41712:100::-;41751:7;41780:26;41800:5;41780:26;:::i;:::-;41769:37;;41712:100;;;:::o;41818:94::-;41857:7;41886:20;41900:5;41886:20;:::i;:::-;41875:31;;41818:94;;;:::o;41918:79::-;41957:7;41986:5;41975:16;;41918:79;;;:::o;42003:176::-;42035:1;42052:20;42070:1;42052:20;:::i;:::-;42047:25;;42086:20;42104:1;42086:20;:::i;:::-;42081:25;;42125:1;42115:35;;42130:18;;:::i;:::-;42115:35;42171:1;42168;42164:9;42159:14;;42003:176;;;;:::o;42185:180::-;42233:77;42230:1;42223:88;42330:4;42327:1;42320:15;42354:4;42351:1;42344:15;42371:180;42419:77;42416:1;42409:88;42516:4;42513:1;42506:15;42540:4;42537:1;42530:15;42557:180;42605:77;42602:1;42595:88;42702:4;42699:1;42692:15;42726:4;42723:1;42716:15;42743:180;42791:77;42788:1;42781:88;42888:4;42885:1;42878:15;42912:4;42909:1;42902:15;42929:180;42977:77;42974:1;42967:88;43074:4;43071:1;43064:15;43098:4;43095:1;43088:15;43115:180;43163:77;43160:1;43153:88;43260:4;43257:1;43250:15;43284:4;43281:1;43274:15;43301:117;43410:1;43407;43400:12;43424:117;43533:1;43530;43523:12;43547:117;43656:1;43653;43646:12;43670:117;43779:1;43776;43769:12;43793:117;43902:1;43899;43892:12;43916:117;44025:1;44022;44015:12;44039:102;44080:6;44131:2;44127:7;44122:2;44115:5;44111:14;44107:28;44097:38;;44039:102;;;:::o;44147:94::-;44180:8;44228:5;44224:2;44220:14;44199:35;;44147:94;;;:::o;44247:230::-;44387:34;44383:1;44375:6;44371:14;44364:58;44456:13;44451:2;44443:6;44439:15;44432:38;44247:230;:::o;44483:237::-;44623:34;44619:1;44611:6;44607:14;44600:58;44692:20;44687:2;44679:6;44675:15;44668:45;44483:237;:::o;44726:225::-;44866:34;44862:1;44854:6;44850:14;44843:58;44935:8;44930:2;44922:6;44918:15;44911:33;44726:225;:::o;44957:224::-;45097:34;45093:1;45085:6;45081:14;45074:58;45166:7;45161:2;45153:6;45149:15;45142:32;44957:224;:::o;45187:178::-;45327:30;45323:1;45315:6;45311:14;45304:54;45187:178;:::o;45371:223::-;45511:34;45507:1;45499:6;45495:14;45488:58;45580:6;45575:2;45567:6;45563:15;45556:31;45371:223;:::o;45600:::-;45740:34;45736:1;45728:6;45724:14;45717:58;45809:6;45804:2;45796:6;45792:15;45785:31;45600:223;:::o;45829:175::-;45969:27;45965:1;45957:6;45953:14;45946:51;45829:175;:::o;46010:178::-;46150:30;46146:1;46138:6;46134:14;46127:54;46010:178;:::o;46194:173::-;46334:25;46330:1;46322:6;46318:14;46311:49;46194:173;:::o;46373:228::-;46513:34;46509:1;46501:6;46497:14;46490:58;46582:11;46577:2;46569:6;46565:15;46558:36;46373:228;:::o;46607:249::-;46747:34;46743:1;46735:6;46731:14;46724:58;46816:32;46811:2;46803:6;46799:15;46792:57;46607:249;:::o;46862:182::-;47002:34;46998:1;46990:6;46986:14;46979:58;46862:182;:::o;47050:::-;47190:34;47186:1;47178:6;47174:14;47167:58;47050:182;:::o;47238:174::-;47378:26;47374:1;47366:6;47362:14;47355:50;47238:174;:::o;47418:220::-;47558:34;47554:1;47546:6;47542:14;47535:58;47627:3;47622:2;47614:6;47610:15;47603:28;47418:220;:::o;47644:168::-;47784:20;47780:1;47772:6;47768:14;47761:44;47644:168;:::o;47818:114::-;;:::o;47938:158::-;48078:10;48074:1;48066:6;48062:14;48055:34;47938:158;:::o;48102:171::-;48242:23;48238:1;48230:6;48226:14;48219:47;48102:171;:::o;48279:231::-;48419:34;48415:1;48407:6;48403:14;48396:58;48488:14;48483:2;48475:6;48471:15;48464:39;48279:231;:::o;48516:166::-;48656:18;48652:1;48644:6;48640:14;48633:42;48516:166;:::o;48688:172::-;48828:24;48824:1;48816:6;48812:14;48805:48;48688:172;:::o;48866:233::-;49006:34;49002:1;48994:6;48990:14;48983:58;49075:16;49070:2;49062:6;49058:15;49051:41;48866:233;:::o;49105:171::-;49245:23;49241:1;49233:6;49229:14;49222:47;49105:171;:::o;49282:122::-;49355:24;49373:5;49355:24;:::i;:::-;49348:5;49345:35;49335:63;;49394:1;49391;49384:12;49335:63;49282:122;:::o;49410:116::-;49480:21;49495:5;49480:21;:::i;:::-;49473:5;49470:32;49460:60;;49516:1;49513;49506:12;49460:60;49410:116;:::o;49532:122::-;49605:24;49623:5;49605:24;:::i;:::-;49598:5;49595:35;49585:63;;49644:1;49641;49634:12;49585:63;49532:122;:::o;49660:120::-;49732:23;49749:5;49732:23;:::i;:::-;49725:5;49722:34;49712:62;;49770:1;49767;49760:12;49712:62;49660:120;:::o;49786:122::-;49859:24;49877:5;49859:24;:::i;:::-;49852:5;49849:35;49839:63;;49898:1;49895;49888:12;49839:63;49786:122;:::o

Swarm Source

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