diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..e38b768 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +dist/Sonic.exe filter=lfs diff=lfs merge=lfs -text +C:/Users/inser/OneDrive/Desktop/New[[:space:]]folder[[:space:]](3)/dist/Sonic.exe filter=lfs diff=lfs merge=lfs -text diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml new file mode 100644 index 0000000..1168bd9 --- /dev/null +++ b/.github/workflows/python-app.yml @@ -0,0 +1,39 @@ +# This workflow will install Python dependencies, run tests and lint with a single version of Python +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: Python application + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 pytest + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Lint with flake8 + run: | + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + pytest diff --git a/README.md b/README.md index 5e7bf50..fe12974 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,49 @@ -
Sonic
+
+ Sonic +
+ # Sonic -Ultrasonic Emitter +### Ultrasonic Emitter -Sonic is a simple python program (now also available as an exe) that allows +**Sonic** is a simple python program (now also available as an `.exe`) that allows the user to adjust the sound emitted to the connected speaker or device -between the levels of 0 - 100,000 hz. +between the levels of **0 - 100,000 Hz**. + +--- + +#### **Update** +Sonic now includes an **amplification bar** that allows for sounds beyond what your computer is typically capable of producing. + +**Download the executable**: [Sonic Standalone Executable](https://github.com/R-D-BioTech-Alaska/Sonic/raw/main/dist/Sonic.exe) + +--- + +### Requirements +- The `Requirement.bat` is needed to run the `.pyw` file. + (If `Requirement.bat` fails to execute, run `pip install pyaudio pyqt5 pydub pybluez pyinstaller` or the equivalent commands based on your setup.) +- The `.exe` file is standalone and located in the `/dist` directory. + +--- + +### **Warning** :warning: +Please be aware that this program emits sounds that can be **harmful and dangerous** to both people and animals. The levels permitted by this device are able to cause hallucinations. + + +--- + +### How to Use +1. Download the appropriate version for your OS. +2. If using Python script, ensure Python is installed and run `Requirement.bat` to install dependencies. +3. Open the program and adjust the frequency and amplification as needed. +4. Use responsibly. -The Requirement.bat is for the .pyw file. Exe is standalone. +--- -***Warning*** +### Contribution +Contributions are welcome! Please fork this repository and open a pull request to make changes. -Please aware that this program emits sounds that can be harmful and dangerous -to people and animals. The levels allowed on this device can cause hallucinations. +--- +### License +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. diff --git a/Sonic.pyw b/Sonic.pyw index b737823..a98b675 100644 --- a/Sonic.pyw +++ b/Sonic.pyw @@ -1,113 +1,165 @@ import sys import numpy as np import pyaudio -from PyQt5.QtWidgets import QApplication, QMainWindow, QSlider, QLabel, QVBoxLayout, QWidget, QPushButton, QHBoxLayout, QLineEdit -from PyQt5.QtCore import Qt, QTimer +from PyQt5.QtWidgets import (QApplication, QMainWindow, QSlider, QLabel, QVBoxLayout, + QWidget, QPushButton, QHBoxLayout, QLineEdit, QStatusBar, QMessageBox) +from PyQt5.QtCore import Qt, QThread +from PyQt5.QtGui import QPixmap + +class SoundThread(QThread): + def __init__(self, get_audio_data): + super(SoundThread, self).__init__() + self.get_audio_data = get_audio_data + self.running = True + + def run(self): + p = pyaudio.PyAudio() + stream = p.open(format=pyaudio.paFloat32, channels=1, rate=44100, output=True) + try: + while self.running: + data = self.get_audio_data() + stream.write(data) + finally: + stream.stop_stream() + stream.close() + p.terminate() + + def stop(self): + self.running = False + self.wait() class UltrasonicEmitter(QMainWindow): def __init__(self): super().__init__() self.setWindowTitle("Sonic") + self.setupUI() + self.sound_thread = None + self.frequency = 20000 + self.volume = 0.5 + self.amplification_factor = 1.0 + self.amplified = False + self.muted = False + + def setupUI(self): + self.statusBar = QStatusBar() + self.setStatusBar(self.statusBar) + self.statusBar.showMessage("Ready") + + self.image_label = QLabel(self) + pixmap = QPixmap('Sonic2no.png') + self.image_label.setPixmap(pixmap.scaled(200, 200, Qt.KeepAspectRatio)) - # Frequency Slider self.frequency_slider = QSlider(Qt.Horizontal) - self.frequency_slider.setRange(0, 100000) # Adjusted frequency range to 0 to 100,000 Hz + self.frequency_slider.setRange(0, 100000) self.frequency_slider.setValue(20000) - self.frequency_slider.valueChanged.connect(self.slider_changed) + self.frequency_slider.valueChanged.connect(self.update_audio_settings) + self.frequency_slider.setStyleSheet("QSlider::handle:horizontal {background-color: teal;}") - # Frequency Input self.frequency_input = QLineEdit("20000") - self.frequency_input.returnPressed.connect(self.input_changed) + self.frequency_input.returnPressed.connect(lambda: self.frequency_slider.setValue(int(self.frequency_input.text()))) + self.frequency_input.setStyleSheet("QLineEdit {background-color: white; color: black;}") - # Volume Slider self.volume_slider = QSlider(Qt.Horizontal) self.volume_slider.setRange(0, 100) self.volume_slider.setValue(50) - self.volume_slider.valueChanged.connect(self.update_volume) + self.volume_slider.valueChanged.connect(self.update_audio_settings) + self.volume_slider.setStyleSheet("QSlider::handle:horizontal {background-color: teal;}") - # Labels - self.frequency_label = QLabel("Frequency: 20000 Hz") - self.volume_label = QLabel("Volume: 50%") + self.amplification_slider = QSlider(Qt.Horizontal) + self.amplification_slider.setRange(100, 500) + self.amplification_slider.setValue(100) + self.amplification_slider.valueChanged.connect(self.update_amplification) + self.amplification_slider.setStyleSheet("QSlider::handle:horizontal {background-color: teal;}") + + self.amplify_button = QPushButton("Toggle Amplification") + self.amplify_button.clicked.connect(self.toggle_amplification) + self.amplify_button.setStyleSheet("QPushButton {background-color: teal; color: white;}") + + self.mute_button = QPushButton("Mute") + self.mute_button.clicked.connect(self.toggle_mute) + self.mute_button.setStyleSheet("QPushButton {background-color: teal; color: white;}") - # Play/Stop Button self.play_button = QPushButton("Play") self.play_button.clicked.connect(self.toggle_play) + self.play_button.setStyleSheet("QPushButton {background-color: teal; color: white;}") - # Layout layout = QVBoxLayout() - layout.addWidget(self.frequency_label) + layout.addWidget(self.image_label) + layout.addWidget(QLabel("Frequency (Hz):")) layout.addWidget(self.frequency_input) layout.addWidget(self.frequency_slider) - layout.addWidget(self.volume_label) + layout.addWidget(QLabel("Volume (%):")) layout.addWidget(self.volume_slider) + layout.addWidget(QLabel("Amplification Factor:")) + layout.addWidget(self.amplification_slider) + layout.addWidget(self.amplify_button) + button_layout = QHBoxLayout() button_layout.addWidget(self.play_button) + button_layout.addWidget(self.mute_button) layout.addLayout(button_layout) container = QWidget() container.setLayout(layout) self.setCentralWidget(container) - # Sound generation variables - self.is_playing = False - self.p = pyaudio.PyAudio() - self.stream = None - self.frequency = 20000 - self.volume = 0.5 - self.timer = QTimer() - self.timer.timeout.connect(self.generate_sound) - - def slider_changed(self): + def update_audio_settings(self): self.frequency = self.frequency_slider.value() - self.frequency_label.setText(f"Frequency: {self.frequency} Hz") + self.volume = self.volume_slider.value() / 100.0 self.frequency_input.setText(str(self.frequency)) - - def input_changed(self): - text = self.frequency_input.text() - try: - frequency = int(text) - if 0 <= frequency <= 100000: - self.frequency_slider.setValue(frequency) - self.frequency = frequency - self.frequency_label.setText(f"Frequency: {self.frequency} Hz") + self.statusBar.showMessage(f"Frequency: {self.frequency} Hz, Volume: {int(self.volume * 100)}%, Amplification: {self.amplification_factor:.1f}x") + + def update_amplification(self, value): + self.amplification_factor = value / 100.0 + self.statusBar.showMessage(f"Amplification set to: {self.amplification_factor:.1f}x") + + def toggle_amplification(self): + if not self.amplified: + msg = QMessageBox() + msg.setIcon(QMessageBox.Warning) + msg.setText("Amplifying the volume can cause damage to your hearing and speakers.") + msg.setInformativeText("Do you want to proceed with amplifying the volume?") + msg.setWindowTitle("Warning: Amplified Volume") + msg.setStandardButtons(QMessageBox.Yes | QMessageBox.No) + retval = msg.exec_() + if retval == QMessageBox.Yes: + self.amplified = True + self.statusBar.showMessage(f"Amplification turned On. Factor: {self.amplification_factor:.1f}x") else: - raise ValueError("Frequency out of range") - except ValueError: - self.frequency_input.setText(str(self.frequency)) # Reset to the previous valid value + self.amplification_slider.setValue(100) + else: + self.amplified = False + self.statusBar.showMessage("Amplification turned Off.") - def update_volume(self): - self.volume = self.volume_slider.value() / 100.0 - self.volume_label.setText(f"Volume: {self.volume * 100:.0f}%") + def get_audio_data(self): + samples = np.linspace(0, 0.1, int(44100 * 0.1), endpoint=False) + effective_volume = self.volume * self.amplification_factor if self.amplified else self.volume + effective_volume = 0 if self.muted else effective_volume + waveform = (np.sin(2 * np.pi * self.frequency * samples) * effective_volume).astype(np.float32) + return waveform.tobytes() + + def toggle_mute(self): + self.muted = not self.muted + self.statusBar.showMessage("Muted" if self.muted else "Unmuted") + self.volume_slider.setEnabled(not self.muted) def toggle_play(self): - if self.is_playing: + if self.sound_thread and self.sound_thread.isRunning(): self.stop_playing() else: self.start_playing() def start_playing(self): - self.is_playing = True + self.sound_thread = SoundThread(self.get_audio_data) + self.sound_thread.start() self.play_button.setText("Stop") - self.stream = self.p.open(format=pyaudio.paFloat32, - channels=1, - rate=44100, - output=True) - self.timer.start(100) # Timer to periodically generate sound + self.statusBar.showMessage("Playing...") def stop_playing(self): - self.is_playing = False + if self.sound_thread: + self.sound_thread.stop() self.play_button.setText("Play") - self.timer.stop() - self.stream.stop_stream() - self.stream.close() - - def generate_sound(self): - sample_rate = 44100 - duration = 0.1 # seconds - samples = np.linspace(0, duration, int(sample_rate * duration), endpoint=False) - waveform = (np.sin(2 * np.pi * self.frequency * samples) * self.volume).astype(np.float32) - if self.stream.is_active(): - self.stream.write(waveform.tobytes()) + self.statusBar.showMessage("Stopped") if __name__ == "__main__": app = QApplication(sys.argv) diff --git a/Sonic.spec b/Sonic.spec new file mode 100644 index 0000000..ace6c54 --- /dev/null +++ b/Sonic.spec @@ -0,0 +1,39 @@ +# -*- mode: python ; coding: utf-8 -*- + + +a = Analysis( + ['Sonic.pyw'], + pathex=[], + binaries=[], + datas=[('Sonic2no.png', '.')], + hiddenimports=[], + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + noarchive=False, + optimize=0, +) +pyz = PYZ(a.pure) + +exe = EXE( + pyz, + a.scripts, + a.binaries, + a.datas, + [], + name='Sonic', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=False, + disable_windowed_traceback=False, + argv_emulation=False, + target_arch=None, + codesign_identity=None, + entitlements_file=None, + icon=['Sonic2no25.ico'], +) diff --git a/Sonic2no.png b/Sonic2no.png new file mode 100644 index 0000000..2e73593 Binary files /dev/null and b/Sonic2no.png differ diff --git a/Sonic2no25.ico b/Sonic2no25.ico new file mode 100644 index 0000000..85c97e9 Binary files /dev/null and b/Sonic2no25.ico differ diff --git a/Sonicapp.png b/Sonicapp.png new file mode 100644 index 0000000..8aec207 Binary files /dev/null and b/Sonicapp.png differ diff --git a/build/Sonic/Analysis-00.toc b/build/Sonic/Analysis-00.toc new file mode 100644 index 0000000..7fc472f --- /dev/null +++ b/build/Sonic/Analysis-00.toc @@ -0,0 +1,1420 @@ +(['C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\Sonic.pyw'], + ['C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New folder'], + [], + ['C:\\Python312\\Lib\\site-packages\\numpy\\_pyinstaller', + 'C:\\Python312\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks', + 'C:\\Python312\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks'], + {}, + [], + [], + False, + {}, + 0, + [], + [('Sonic2no.png', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\Sonic2no.png', + 'DATA')], + '3.12.2 (tags/v3.12.2:6abddd9, Feb 6 2024, 21:26:36) [MSC v.1937 64 bit ' + '(AMD64)]', + [('pyi_rth_inspect', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', + 'PYSOURCE'), + ('pyi_rth_pyqt5', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py', + 'PYSOURCE'), + ('pyi_rth_pkgutil', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py', + 'PYSOURCE'), + ('pyi_rth_multiprocessing', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py', + 'PYSOURCE'), + ('Sonic', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\Sonic.pyw', + 'PYSOURCE')], + [('multiprocessing.popen_forkserver', + 'C:\\Python312\\Lib\\multiprocessing\\popen_forkserver.py', + 'PYMODULE'), + ('multiprocessing.connection', + 'C:\\Python312\\Lib\\multiprocessing\\connection.py', + 'PYMODULE'), + ('multiprocessing.resource_sharer', + 'C:\\Python312\\Lib\\multiprocessing\\resource_sharer.py', + 'PYMODULE'), + ('multiprocessing.process', + 'C:\\Python312\\Lib\\multiprocessing\\process.py', + 'PYMODULE'), + ('signal', 'C:\\Python312\\Lib\\signal.py', 'PYMODULE'), + ('selectors', 'C:\\Python312\\Lib\\selectors.py', 'PYMODULE'), + ('xmlrpc.client', 'C:\\Python312\\Lib\\xmlrpc\\client.py', 'PYMODULE'), + ('xmlrpc', 'C:\\Python312\\Lib\\xmlrpc\\__init__.py', 'PYMODULE'), + ('gzip', 'C:\\Python312\\Lib\\gzip.py', 'PYMODULE'), + ('argparse', 'C:\\Python312\\Lib\\argparse.py', 'PYMODULE'), + ('textwrap', 'C:\\Python312\\Lib\\textwrap.py', 'PYMODULE'), + ('shutil', 'C:\\Python312\\Lib\\shutil.py', 'PYMODULE'), + ('zipfile', 'C:\\Python312\\Lib\\zipfile\\__init__.py', 'PYMODULE'), + ('zipfile._path', + 'C:\\Python312\\Lib\\zipfile\\_path\\__init__.py', + 'PYMODULE'), + ('zipfile._path.glob', + 'C:\\Python312\\Lib\\zipfile\\_path\\glob.py', + 'PYMODULE'), + ('pathlib', 'C:\\Python312\\Lib\\pathlib.py', 'PYMODULE'), + ('contextlib', 'C:\\Python312\\Lib\\contextlib.py', 'PYMODULE'), + ('py_compile', 'C:\\Python312\\Lib\\py_compile.py', 'PYMODULE'), + ('importlib.machinery', + 'C:\\Python312\\Lib\\importlib\\machinery.py', + 'PYMODULE'), + ('importlib', 'C:\\Python312\\Lib\\importlib\\__init__.py', 'PYMODULE'), + ('importlib._bootstrap', + 'C:\\Python312\\Lib\\importlib\\_bootstrap.py', + 'PYMODULE'), + ('importlib._bootstrap_external', + 'C:\\Python312\\Lib\\importlib\\_bootstrap_external.py', + 'PYMODULE'), + ('importlib.metadata', + 'C:\\Python312\\Lib\\importlib\\metadata\\__init__.py', + 'PYMODULE'), + ('typing', 'C:\\Python312\\Lib\\typing.py', 'PYMODULE'), + ('importlib.abc', 'C:\\Python312\\Lib\\importlib\\abc.py', 'PYMODULE'), + ('importlib.resources.abc', + 'C:\\Python312\\Lib\\importlib\\resources\\abc.py', + 'PYMODULE'), + ('importlib.resources', + 'C:\\Python312\\Lib\\importlib\\resources\\__init__.py', + 'PYMODULE'), + ('importlib.resources._legacy', + 'C:\\Python312\\Lib\\importlib\\resources\\_legacy.py', + 'PYMODULE'), + ('importlib.resources._common', + 'C:\\Python312\\Lib\\importlib\\resources\\_common.py', + 'PYMODULE'), + ('importlib.resources._adapters', + 'C:\\Python312\\Lib\\importlib\\resources\\_adapters.py', + 'PYMODULE'), + ('importlib._abc', 'C:\\Python312\\Lib\\importlib\\_abc.py', 'PYMODULE'), + ('importlib.metadata._itertools', + 'C:\\Python312\\Lib\\importlib\\metadata\\_itertools.py', + 'PYMODULE'), + ('importlib.metadata._functools', + 'C:\\Python312\\Lib\\importlib\\metadata\\_functools.py', + 'PYMODULE'), + ('importlib.metadata._collections', + 'C:\\Python312\\Lib\\importlib\\metadata\\_collections.py', + 'PYMODULE'), + ('importlib.metadata._meta', + 'C:\\Python312\\Lib\\importlib\\metadata\\_meta.py', + 'PYMODULE'), + ('importlib.metadata._adapters', + 'C:\\Python312\\Lib\\importlib\\metadata\\_adapters.py', + 'PYMODULE'), + ('importlib.metadata._text', + 'C:\\Python312\\Lib\\importlib\\metadata\\_text.py', + 'PYMODULE'), + ('email.message', 'C:\\Python312\\Lib\\email\\message.py', 'PYMODULE'), + ('email.policy', 'C:\\Python312\\Lib\\email\\policy.py', 'PYMODULE'), + ('email.contentmanager', + 'C:\\Python312\\Lib\\email\\contentmanager.py', + 'PYMODULE'), + ('email.quoprimime', 'C:\\Python312\\Lib\\email\\quoprimime.py', 'PYMODULE'), + ('string', 'C:\\Python312\\Lib\\string.py', 'PYMODULE'), + ('email.headerregistry', + 'C:\\Python312\\Lib\\email\\headerregistry.py', + 'PYMODULE'), + ('email._header_value_parser', + 'C:\\Python312\\Lib\\email\\_header_value_parser.py', + 'PYMODULE'), + ('urllib', 'C:\\Python312\\Lib\\urllib\\__init__.py', 'PYMODULE'), + ('email.iterators', 'C:\\Python312\\Lib\\email\\iterators.py', 'PYMODULE'), + ('email.generator', 'C:\\Python312\\Lib\\email\\generator.py', 'PYMODULE'), + ('random', 'C:\\Python312\\Lib\\random.py', 'PYMODULE'), + ('statistics', 'C:\\Python312\\Lib\\statistics.py', 'PYMODULE'), + ('fractions', 'C:\\Python312\\Lib\\fractions.py', 'PYMODULE'), + ('numbers', 'C:\\Python312\\Lib\\numbers.py', 'PYMODULE'), + ('hashlib', 'C:\\Python312\\Lib\\hashlib.py', 'PYMODULE'), + ('logging', 'C:\\Python312\\Lib\\logging\\__init__.py', 'PYMODULE'), + ('pickle', 'C:\\Python312\\Lib\\pickle.py', 'PYMODULE'), + ('pprint', 'C:\\Python312\\Lib\\pprint.py', 'PYMODULE'), + ('dataclasses', 'C:\\Python312\\Lib\\dataclasses.py', 'PYMODULE'), + ('_compat_pickle', 'C:\\Python312\\Lib\\_compat_pickle.py', 'PYMODULE'), + ('bisect', 'C:\\Python312\\Lib\\bisect.py', 'PYMODULE'), + ('email._encoded_words', + 'C:\\Python312\\Lib\\email\\_encoded_words.py', + 'PYMODULE'), + ('email.charset', 'C:\\Python312\\Lib\\email\\charset.py', 'PYMODULE'), + ('email.encoders', 'C:\\Python312\\Lib\\email\\encoders.py', 'PYMODULE'), + ('email.base64mime', 'C:\\Python312\\Lib\\email\\base64mime.py', 'PYMODULE'), + ('email._policybase', + 'C:\\Python312\\Lib\\email\\_policybase.py', + 'PYMODULE'), + ('email.header', 'C:\\Python312\\Lib\\email\\header.py', 'PYMODULE'), + ('email.errors', 'C:\\Python312\\Lib\\email\\errors.py', 'PYMODULE'), + ('email.utils', 'C:\\Python312\\Lib\\email\\utils.py', 'PYMODULE'), + ('email._parseaddr', 'C:\\Python312\\Lib\\email\\_parseaddr.py', 'PYMODULE'), + ('calendar', 'C:\\Python312\\Lib\\calendar.py', 'PYMODULE'), + ('quopri', 'C:\\Python312\\Lib\\quopri.py', 'PYMODULE'), + ('getopt', 'C:\\Python312\\Lib\\getopt.py', 'PYMODULE'), + ('inspect', 'C:\\Python312\\Lib\\inspect.py', 'PYMODULE'), + ('token', 'C:\\Python312\\Lib\\token.py', 'PYMODULE'), + ('dis', 'C:\\Python312\\Lib\\dis.py', 'PYMODULE'), + ('opcode', 'C:\\Python312\\Lib\\opcode.py', 'PYMODULE'), + ('ast', 'C:\\Python312\\Lib\\ast.py', 'PYMODULE'), + ('email', 'C:\\Python312\\Lib\\email\\__init__.py', 'PYMODULE'), + ('email.parser', 'C:\\Python312\\Lib\\email\\parser.py', 'PYMODULE'), + ('email.feedparser', 'C:\\Python312\\Lib\\email\\feedparser.py', 'PYMODULE'), + ('csv', 'C:\\Python312\\Lib\\csv.py', 'PYMODULE'), + ('importlib.readers', + 'C:\\Python312\\Lib\\importlib\\readers.py', + 'PYMODULE'), + ('importlib.resources.readers', + 'C:\\Python312\\Lib\\importlib\\resources\\readers.py', + 'PYMODULE'), + ('importlib.resources._itertools', + 'C:\\Python312\\Lib\\importlib\\resources\\_itertools.py', + 'PYMODULE'), + ('tokenize', 'C:\\Python312\\Lib\\tokenize.py', 'PYMODULE'), + ('importlib.util', 'C:\\Python312\\Lib\\importlib\\util.py', 'PYMODULE'), + ('tarfile', 'C:\\Python312\\Lib\\tarfile.py', 'PYMODULE'), + ('lzma', 'C:\\Python312\\Lib\\lzma.py', 'PYMODULE'), + ('bz2', 'C:\\Python312\\Lib\\bz2.py', 'PYMODULE'), + ('fnmatch', 'C:\\Python312\\Lib\\fnmatch.py', 'PYMODULE'), + ('copy', 'C:\\Python312\\Lib\\copy.py', 'PYMODULE'), + ('gettext', 'C:\\Python312\\Lib\\gettext.py', 'PYMODULE'), + ('_compression', 'C:\\Python312\\Lib\\_compression.py', 'PYMODULE'), + ('xml.parsers.expat', + 'C:\\Python312\\Lib\\xml\\parsers\\expat.py', + 'PYMODULE'), + ('xml.parsers', 'C:\\Python312\\Lib\\xml\\parsers\\__init__.py', 'PYMODULE'), + ('xml', 'C:\\Python312\\Lib\\xml\\__init__.py', 'PYMODULE'), + ('xml.sax.expatreader', + 'C:\\Python312\\Lib\\xml\\sax\\expatreader.py', + 'PYMODULE'), + ('xml.sax.saxutils', 'C:\\Python312\\Lib\\xml\\sax\\saxutils.py', 'PYMODULE'), + ('urllib.request', 'C:\\Python312\\Lib\\urllib\\request.py', 'PYMODULE'), + ('getpass', 'C:\\Python312\\Lib\\getpass.py', 'PYMODULE'), + ('nturl2path', 'C:\\Python312\\Lib\\nturl2path.py', 'PYMODULE'), + ('ftplib', 'C:\\Python312\\Lib\\ftplib.py', 'PYMODULE'), + ('netrc', 'C:\\Python312\\Lib\\netrc.py', 'PYMODULE'), + ('mimetypes', 'C:\\Python312\\Lib\\mimetypes.py', 'PYMODULE'), + ('http.cookiejar', 'C:\\Python312\\Lib\\http\\cookiejar.py', 'PYMODULE'), + ('http', 'C:\\Python312\\Lib\\http\\__init__.py', 'PYMODULE'), + ('ssl', 'C:\\Python312\\Lib\\ssl.py', 'PYMODULE'), + ('urllib.response', 'C:\\Python312\\Lib\\urllib\\response.py', 'PYMODULE'), + ('urllib.error', 'C:\\Python312\\Lib\\urllib\\error.py', 'PYMODULE'), + ('xml.sax', 'C:\\Python312\\Lib\\xml\\sax\\__init__.py', 'PYMODULE'), + ('xml.sax.handler', 'C:\\Python312\\Lib\\xml\\sax\\handler.py', 'PYMODULE'), + ('xml.sax._exceptions', + 'C:\\Python312\\Lib\\xml\\sax\\_exceptions.py', + 'PYMODULE'), + ('xml.sax.xmlreader', + 'C:\\Python312\\Lib\\xml\\sax\\xmlreader.py', + 'PYMODULE'), + ('urllib.parse', 'C:\\Python312\\Lib\\urllib\\parse.py', 'PYMODULE'), + ('ipaddress', 'C:\\Python312\\Lib\\ipaddress.py', 'PYMODULE'), + ('http.client', 'C:\\Python312\\Lib\\http\\client.py', 'PYMODULE'), + ('decimal', 'C:\\Python312\\Lib\\decimal.py', 'PYMODULE'), + ('_pydecimal', 'C:\\Python312\\Lib\\_pydecimal.py', 'PYMODULE'), + ('contextvars', 'C:\\Python312\\Lib\\contextvars.py', 'PYMODULE'), + ('datetime', 'C:\\Python312\\Lib\\datetime.py', 'PYMODULE'), + ('_pydatetime', 'C:\\Python312\\Lib\\_pydatetime.py', 'PYMODULE'), + ('_strptime', 'C:\\Python312\\Lib\\_strptime.py', 'PYMODULE'), + ('base64', 'C:\\Python312\\Lib\\base64.py', 'PYMODULE'), + ('hmac', 'C:\\Python312\\Lib\\hmac.py', 'PYMODULE'), + ('tempfile', 'C:\\Python312\\Lib\\tempfile.py', 'PYMODULE'), + ('struct', 'C:\\Python312\\Lib\\struct.py', 'PYMODULE'), + ('socket', 'C:\\Python312\\Lib\\socket.py', 'PYMODULE'), + ('multiprocessing.util', + 'C:\\Python312\\Lib\\multiprocessing\\util.py', + 'PYMODULE'), + ('multiprocessing.resource_tracker', + 'C:\\Python312\\Lib\\multiprocessing\\resource_tracker.py', + 'PYMODULE'), + ('multiprocessing.popen_fork', + 'C:\\Python312\\Lib\\multiprocessing\\popen_fork.py', + 'PYMODULE'), + ('multiprocessing.forkserver', + 'C:\\Python312\\Lib\\multiprocessing\\forkserver.py', + 'PYMODULE'), + ('multiprocessing.context', + 'C:\\Python312\\Lib\\multiprocessing\\context.py', + 'PYMODULE'), + ('multiprocessing.sharedctypes', + 'C:\\Python312\\Lib\\multiprocessing\\sharedctypes.py', + 'PYMODULE'), + ('multiprocessing.heap', + 'C:\\Python312\\Lib\\multiprocessing\\heap.py', + 'PYMODULE'), + ('ctypes', 'C:\\Python312\\Lib\\ctypes\\__init__.py', 'PYMODULE'), + ('ctypes._endian', 'C:\\Python312\\Lib\\ctypes\\_endian.py', 'PYMODULE'), + ('multiprocessing.pool', + 'C:\\Python312\\Lib\\multiprocessing\\pool.py', + 'PYMODULE'), + ('multiprocessing.dummy', + 'C:\\Python312\\Lib\\multiprocessing\\dummy\\__init__.py', + 'PYMODULE'), + ('multiprocessing.dummy.connection', + 'C:\\Python312\\Lib\\multiprocessing\\dummy\\connection.py', + 'PYMODULE'), + ('queue', 'C:\\Python312\\Lib\\queue.py', 'PYMODULE'), + ('multiprocessing.queues', + 'C:\\Python312\\Lib\\multiprocessing\\queues.py', + 'PYMODULE'), + ('multiprocessing.synchronize', + 'C:\\Python312\\Lib\\multiprocessing\\synchronize.py', + 'PYMODULE'), + ('multiprocessing.managers', + 'C:\\Python312\\Lib\\multiprocessing\\managers.py', + 'PYMODULE'), + ('multiprocessing.shared_memory', + 'C:\\Python312\\Lib\\multiprocessing\\shared_memory.py', + 'PYMODULE'), + ('secrets', 'C:\\Python312\\Lib\\secrets.py', 'PYMODULE'), + ('multiprocessing.reduction', + 'C:\\Python312\\Lib\\multiprocessing\\reduction.py', + 'PYMODULE'), + ('multiprocessing.popen_spawn_posix', + 'C:\\Python312\\Lib\\multiprocessing\\popen_spawn_posix.py', + 'PYMODULE'), + ('multiprocessing.popen_spawn_win32', + 'C:\\Python312\\Lib\\multiprocessing\\popen_spawn_win32.py', + 'PYMODULE'), + ('subprocess', 'C:\\Python312\\Lib\\subprocess.py', 'PYMODULE'), + ('multiprocessing.spawn', + 'C:\\Python312\\Lib\\multiprocessing\\spawn.py', + 'PYMODULE'), + ('runpy', 'C:\\Python312\\Lib\\runpy.py', 'PYMODULE'), + ('pkgutil', 'C:\\Python312\\Lib\\pkgutil.py', 'PYMODULE'), + ('zipimport', 'C:\\Python312\\Lib\\zipimport.py', 'PYMODULE'), + ('multiprocessing', + 'C:\\Python312\\Lib\\multiprocessing\\__init__.py', + 'PYMODULE'), + ('threading', 'C:\\Python312\\Lib\\threading.py', 'PYMODULE'), + ('_threading_local', 'C:\\Python312\\Lib\\_threading_local.py', 'PYMODULE'), + ('_pyi_rth_utils', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\fake-modules\\_pyi_rth_utils\\__init__.py', + 'PYMODULE'), + ('_pyi_rth_utils.qt', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\fake-modules\\_pyi_rth_utils\\qt.py', + 'PYMODULE'), + ('stringprep', 'C:\\Python312\\Lib\\stringprep.py', 'PYMODULE'), + ('_py_abc', 'C:\\Python312\\Lib\\_py_abc.py', 'PYMODULE'), + ('tracemalloc', 'C:\\Python312\\Lib\\tracemalloc.py', 'PYMODULE'), + ('PyQt5', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\__init__.py', + 'PYMODULE'), + ('pyaudio', + 'C:\\Python312\\Lib\\site-packages\\pyaudio\\__init__.py', + 'PYMODULE'), + ('numpy', + 'C:\\Python312\\Lib\\site-packages\\numpy\\__init__.py', + 'PYMODULE'), + ('numpy.core._dtype_ctypes', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_dtype_ctypes.py', + 'PYMODULE'), + ('numpy._pytesttester', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_pytesttester.py', + 'PYMODULE'), + ('numpy.testing', + 'C:\\Python312\\Lib\\site-packages\\numpy\\testing\\__init__.py', + 'PYMODULE'), + ('numpy.testing.overrides', + 'C:\\Python312\\Lib\\site-packages\\numpy\\testing\\overrides.py', + 'PYMODULE'), + ('numpy.lib.recfunctions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\recfunctions.py', + 'PYMODULE'), + ('numpy.lib._iotools', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\_iotools.py', + 'PYMODULE'), + ('numpy.core.numeric', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\numeric.py', + 'PYMODULE'), + ('numpy.core._asarray', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_asarray.py', + 'PYMODULE'), + ('numpy.core.arrayprint', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\arrayprint.py', + 'PYMODULE'), + ('numpy.core.fromnumeric', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\fromnumeric.py', + 'PYMODULE'), + ('numpy.core._methods', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_methods.py', + 'PYMODULE'), + ('numpy.lib.stride_tricks', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\stride_tricks.py', + 'PYMODULE'), + ('numpy.core._exceptions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_exceptions.py', + 'PYMODULE'), + ('numpy._utils', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_utils\\__init__.py', + 'PYMODULE'), + ('numpy._utils._convertions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_utils\\_convertions.py', + 'PYMODULE'), + ('numpy.core._ufunc_config', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_ufunc_config.py', + 'PYMODULE'), + ('numpy.core.numerictypes', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\numerictypes.py', + 'PYMODULE'), + ('numpy.core._dtype', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_dtype.py', + 'PYMODULE'), + ('numpy.core._type_aliases', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_type_aliases.py', + 'PYMODULE'), + ('numpy.core._string_helpers', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_string_helpers.py', + 'PYMODULE'), + ('numpy.core.shape_base', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\shape_base.py', + 'PYMODULE'), + ('numpy.core.multiarray', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\multiarray.py', + 'PYMODULE'), + ('numpy.ma.mrecords', + 'C:\\Python312\\Lib\\site-packages\\numpy\\ma\\mrecords.py', + 'PYMODULE'), + ('numpy.core.records', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\records.py', + 'PYMODULE'), + ('numpy.core.umath', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\umath.py', + 'PYMODULE'), + ('numpy.core.overrides', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\overrides.py', + 'PYMODULE'), + ('numpy._utils._inspect', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_utils\\_inspect.py', + 'PYMODULE'), + ('numpy.testing._private.extbuild', + 'C:\\Python312\\Lib\\site-packages\\numpy\\testing\\_private\\extbuild.py', + 'PYMODULE'), + ('sysconfig', 'C:\\Python312\\Lib\\sysconfig.py', 'PYMODULE'), + ('_aix_support', 'C:\\Python312\\Lib\\_aix_support.py', 'PYMODULE'), + ('numpy.testing._private.utils', + 'C:\\Python312\\Lib\\site-packages\\numpy\\testing\\_private\\utils.py', + 'PYMODULE'), + ('doctest', 'C:\\Python312\\Lib\\doctest.py', 'PYMODULE'), + ('pdb', 'C:\\Python312\\Lib\\pdb.py', 'PYMODULE'), + ('pydoc', 'C:\\Python312\\Lib\\pydoc.py', 'PYMODULE'), + ('webbrowser', 'C:\\Python312\\Lib\\webbrowser.py', 'PYMODULE'), + ('http.server', 'C:\\Python312\\Lib\\http\\server.py', 'PYMODULE'), + ('socketserver', 'C:\\Python312\\Lib\\socketserver.py', 'PYMODULE'), + ('html', 'C:\\Python312\\Lib\\html\\__init__.py', 'PYMODULE'), + ('html.entities', 'C:\\Python312\\Lib\\html\\entities.py', 'PYMODULE'), + ('pydoc_data.topics', + 'C:\\Python312\\Lib\\pydoc_data\\topics.py', + 'PYMODULE'), + ('pydoc_data', 'C:\\Python312\\Lib\\pydoc_data\\__init__.py', 'PYMODULE'), + ('tty', 'C:\\Python312\\Lib\\tty.py', 'PYMODULE'), + ('shlex', 'C:\\Python312\\Lib\\shlex.py', 'PYMODULE'), + ('glob', 'C:\\Python312\\Lib\\glob.py', 'PYMODULE'), + ('code', 'C:\\Python312\\Lib\\code.py', 'PYMODULE'), + ('codeop', 'C:\\Python312\\Lib\\codeop.py', 'PYMODULE'), + ('bdb', 'C:\\Python312\\Lib\\bdb.py', 'PYMODULE'), + ('cmd', 'C:\\Python312\\Lib\\cmd.py', 'PYMODULE'), + ('__future__', 'C:\\Python312\\Lib\\__future__.py', 'PYMODULE'), + ('difflib', 'C:\\Python312\\Lib\\difflib.py', 'PYMODULE'), + ('unittest.case', 'C:\\Python312\\Lib\\unittest\\case.py', 'PYMODULE'), + ('unittest._log', 'C:\\Python312\\Lib\\unittest\\_log.py', 'PYMODULE'), + ('unittest.util', 'C:\\Python312\\Lib\\unittest\\util.py', 'PYMODULE'), + ('unittest.result', 'C:\\Python312\\Lib\\unittest\\result.py', 'PYMODULE'), + ('platform', 'C:\\Python312\\Lib\\platform.py', 'PYMODULE'), + ('numpy.testing._private', + 'C:\\Python312\\Lib\\site-packages\\numpy\\testing\\_private\\__init__.py', + 'PYMODULE'), + ('unittest', 'C:\\Python312\\Lib\\unittest\\__init__.py', 'PYMODULE'), + ('unittest.async_case', + 'C:\\Python312\\Lib\\unittest\\async_case.py', + 'PYMODULE'), + ('asyncio', 'C:\\Python312\\Lib\\asyncio\\__init__.py', 'PYMODULE'), + ('asyncio.unix_events', + 'C:\\Python312\\Lib\\asyncio\\unix_events.py', + 'PYMODULE'), + ('asyncio.log', 'C:\\Python312\\Lib\\asyncio\\log.py', 'PYMODULE'), + ('asyncio.windows_events', + 'C:\\Python312\\Lib\\asyncio\\windows_events.py', + 'PYMODULE'), + ('asyncio.windows_utils', + 'C:\\Python312\\Lib\\asyncio\\windows_utils.py', + 'PYMODULE'), + ('asyncio.selector_events', + 'C:\\Python312\\Lib\\asyncio\\selector_events.py', + 'PYMODULE'), + ('asyncio.proactor_events', + 'C:\\Python312\\Lib\\asyncio\\proactor_events.py', + 'PYMODULE'), + ('asyncio.base_subprocess', + 'C:\\Python312\\Lib\\asyncio\\base_subprocess.py', + 'PYMODULE'), + ('asyncio.threads', 'C:\\Python312\\Lib\\asyncio\\threads.py', 'PYMODULE'), + ('asyncio.taskgroups', + 'C:\\Python312\\Lib\\asyncio\\taskgroups.py', + 'PYMODULE'), + ('asyncio.subprocess', + 'C:\\Python312\\Lib\\asyncio\\subprocess.py', + 'PYMODULE'), + ('asyncio.streams', 'C:\\Python312\\Lib\\asyncio\\streams.py', 'PYMODULE'), + ('asyncio.queues', 'C:\\Python312\\Lib\\asyncio\\queues.py', 'PYMODULE'), + ('asyncio.runners', 'C:\\Python312\\Lib\\asyncio\\runners.py', 'PYMODULE'), + ('asyncio.base_events', + 'C:\\Python312\\Lib\\asyncio\\base_events.py', + 'PYMODULE'), + ('concurrent.futures', + 'C:\\Python312\\Lib\\concurrent\\futures\\__init__.py', + 'PYMODULE'), + ('concurrent.futures.thread', + 'C:\\Python312\\Lib\\concurrent\\futures\\thread.py', + 'PYMODULE'), + ('concurrent.futures.process', + 'C:\\Python312\\Lib\\concurrent\\futures\\process.py', + 'PYMODULE'), + ('concurrent.futures._base', + 'C:\\Python312\\Lib\\concurrent\\futures\\_base.py', + 'PYMODULE'), + ('concurrent', 'C:\\Python312\\Lib\\concurrent\\__init__.py', 'PYMODULE'), + ('asyncio.trsock', 'C:\\Python312\\Lib\\asyncio\\trsock.py', 'PYMODULE'), + ('asyncio.staggered', + 'C:\\Python312\\Lib\\asyncio\\staggered.py', + 'PYMODULE'), + ('asyncio.timeouts', 'C:\\Python312\\Lib\\asyncio\\timeouts.py', 'PYMODULE'), + ('asyncio.tasks', 'C:\\Python312\\Lib\\asyncio\\tasks.py', 'PYMODULE'), + ('asyncio.base_tasks', + 'C:\\Python312\\Lib\\asyncio\\base_tasks.py', + 'PYMODULE'), + ('asyncio.locks', 'C:\\Python312\\Lib\\asyncio\\locks.py', 'PYMODULE'), + ('asyncio.mixins', 'C:\\Python312\\Lib\\asyncio\\mixins.py', 'PYMODULE'), + ('asyncio.sslproto', 'C:\\Python312\\Lib\\asyncio\\sslproto.py', 'PYMODULE'), + ('asyncio.transports', + 'C:\\Python312\\Lib\\asyncio\\transports.py', + 'PYMODULE'), + ('asyncio.protocols', + 'C:\\Python312\\Lib\\asyncio\\protocols.py', + 'PYMODULE'), + ('asyncio.futures', 'C:\\Python312\\Lib\\asyncio\\futures.py', 'PYMODULE'), + ('asyncio.base_futures', + 'C:\\Python312\\Lib\\asyncio\\base_futures.py', + 'PYMODULE'), + ('asyncio.exceptions', + 'C:\\Python312\\Lib\\asyncio\\exceptions.py', + 'PYMODULE'), + ('asyncio.events', 'C:\\Python312\\Lib\\asyncio\\events.py', 'PYMODULE'), + ('asyncio.format_helpers', + 'C:\\Python312\\Lib\\asyncio\\format_helpers.py', + 'PYMODULE'), + ('asyncio.coroutines', + 'C:\\Python312\\Lib\\asyncio\\coroutines.py', + 'PYMODULE'), + ('asyncio.constants', + 'C:\\Python312\\Lib\\asyncio\\constants.py', + 'PYMODULE'), + ('unittest.signals', 'C:\\Python312\\Lib\\unittest\\signals.py', 'PYMODULE'), + ('unittest.main', 'C:\\Python312\\Lib\\unittest\\main.py', 'PYMODULE'), + ('unittest.runner', 'C:\\Python312\\Lib\\unittest\\runner.py', 'PYMODULE'), + ('unittest.loader', 'C:\\Python312\\Lib\\unittest\\loader.py', 'PYMODULE'), + ('unittest.suite', 'C:\\Python312\\Lib\\unittest\\suite.py', 'PYMODULE'), + ('numpy.matrixlib', + 'C:\\Python312\\Lib\\site-packages\\numpy\\matrixlib\\__init__.py', + 'PYMODULE'), + ('numpy.matrixlib.defmatrix', + 'C:\\Python312\\Lib\\site-packages\\numpy\\matrixlib\\defmatrix.py', + 'PYMODULE'), + ('numpy.ma', + 'C:\\Python312\\Lib\\site-packages\\numpy\\ma\\__init__.py', + 'PYMODULE'), + ('numpy.ma.extras', + 'C:\\Python312\\Lib\\site-packages\\numpy\\ma\\extras.py', + 'PYMODULE'), + ('numpy.lib.index_tricks', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\index_tricks.py', + 'PYMODULE'), + ('numpy.lib.function_base', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\function_base.py', + 'PYMODULE'), + ('numpy.lib.histograms', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\histograms.py', + 'PYMODULE'), + ('numpy.lib.twodim_base', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\twodim_base.py', + 'PYMODULE'), + ('numpy.core.function_base', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\function_base.py', + 'PYMODULE'), + ('numpy.ma.core', + 'C:\\Python312\\Lib\\site-packages\\numpy\\ma\\core.py', + 'PYMODULE'), + ('numpy.ctypeslib', + 'C:\\Python312\\Lib\\site-packages\\numpy\\ctypeslib.py', + 'PYMODULE'), + ('numpy.core._internal', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_internal.py', + 'PYMODULE'), + ('numpy.random', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\__init__.py', + 'PYMODULE'), + ('numpy.random._pickle', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_pickle.py', + 'PYMODULE'), + ('numpy.polynomial', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\__init__.py', + 'PYMODULE'), + ('numpy.polynomial._polybase', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\_polybase.py', + 'PYMODULE'), + ('numpy.polynomial.laguerre', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\laguerre.py', + 'PYMODULE'), + ('numpy.polynomial.hermite_e', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\hermite_e.py', + 'PYMODULE'), + ('numpy.polynomial.hermite', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\hermite.py', + 'PYMODULE'), + ('numpy.polynomial.legendre', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\legendre.py', + 'PYMODULE'), + ('numpy.polynomial.chebyshev', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\chebyshev.py', + 'PYMODULE'), + ('numpy.polynomial.polynomial', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\polynomial.py', + 'PYMODULE'), + ('numpy.polynomial.polyutils', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\polyutils.py', + 'PYMODULE'), + ('numpy.fft', + 'C:\\Python312\\Lib\\site-packages\\numpy\\fft\\__init__.py', + 'PYMODULE'), + ('numpy.fft.helper', + 'C:\\Python312\\Lib\\site-packages\\numpy\\fft\\helper.py', + 'PYMODULE'), + ('numpy.fft._pocketfft', + 'C:\\Python312\\Lib\\site-packages\\numpy\\fft\\_pocketfft.py', + 'PYMODULE'), + ('numpy.linalg', + 'C:\\Python312\\Lib\\site-packages\\numpy\\linalg\\__init__.py', + 'PYMODULE'), + ('numpy.linalg.linalg', + 'C:\\Python312\\Lib\\site-packages\\numpy\\linalg\\linalg.py', + 'PYMODULE'), + ('numpy._typing', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\__init__.py', + 'PYMODULE'), + ('numpy._typing._array_like', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_array_like.py', + 'PYMODULE'), + ('numpy._typing._dtype_like', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_dtype_like.py', + 'PYMODULE'), + ('numpy._typing._shape', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_shape.py', + 'PYMODULE'), + ('numpy._typing._scalars', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_scalars.py', + 'PYMODULE'), + ('numpy._typing._char_codes', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_char_codes.py', + 'PYMODULE'), + ('numpy._typing._nbit', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_nbit.py', + 'PYMODULE'), + ('numpy._typing._nested_sequence', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_nested_sequence.py', + 'PYMODULE'), + ('numpy.lib', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\__init__.py', + 'PYMODULE'), + ('numpy.lib._version', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\_version.py', + 'PYMODULE'), + ('numpy.lib.arraypad', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\arraypad.py', + 'PYMODULE'), + ('numpy.lib.arrayterator', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\arrayterator.py', + 'PYMODULE'), + ('numpy.lib.npyio', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\npyio.py', + 'PYMODULE'), + ('numpy.lib._datasource', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\_datasource.py', + 'PYMODULE'), + ('numpy.lib.format', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\format.py', + 'PYMODULE'), + ('numpy.lib.arraysetops', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\arraysetops.py', + 'PYMODULE'), + ('numpy.lib.utils', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\utils.py', + 'PYMODULE'), + ('numpy.lib.polynomial', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\polynomial.py', + 'PYMODULE'), + ('numpy.lib.ufunclike', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\ufunclike.py', + 'PYMODULE'), + ('numpy.lib.shape_base', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\shape_base.py', + 'PYMODULE'), + ('numpy.lib.nanfunctions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\nanfunctions.py', + 'PYMODULE'), + ('numpy.lib.type_check', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\type_check.py', + 'PYMODULE'), + ('numpy.core.getlimits', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\getlimits.py', + 'PYMODULE'), + ('numpy.core._machar', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_machar.py', + 'PYMODULE'), + ('numpy.lib.scimath', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\scimath.py', + 'PYMODULE'), + ('numpy.lib.mixins', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\mixins.py', + 'PYMODULE'), + ('numpy.dtypes', + 'C:\\Python312\\Lib\\site-packages\\numpy\\dtypes.py', + 'PYMODULE'), + ('numpy.compat', + 'C:\\Python312\\Lib\\site-packages\\numpy\\compat\\__init__.py', + 'PYMODULE'), + ('numpy.compat.py3k', + 'C:\\Python312\\Lib\\site-packages\\numpy\\compat\\py3k.py', + 'PYMODULE'), + ('numpy.core', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\__init__.py', + 'PYMODULE'), + ('numpy.core._add_newdocs_scalars', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_add_newdocs_scalars.py', + 'PYMODULE'), + ('numpy.core._add_newdocs', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_add_newdocs.py', + 'PYMODULE'), + ('numpy.core.einsumfunc', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\einsumfunc.py', + 'PYMODULE'), + ('numpy.core.memmap', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\memmap.py', + 'PYMODULE'), + ('numpy.core.defchararray', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\defchararray.py', + 'PYMODULE'), + ('numpy.__config__', + 'C:\\Python312\\Lib\\site-packages\\numpy\\__config__.py', + 'PYMODULE'), + ('json', 'C:\\Python312\\Lib\\json\\__init__.py', 'PYMODULE'), + ('json.encoder', 'C:\\Python312\\Lib\\json\\encoder.py', 'PYMODULE'), + ('json.decoder', 'C:\\Python312\\Lib\\json\\decoder.py', 'PYMODULE'), + ('json.scanner', 'C:\\Python312\\Lib\\json\\scanner.py', 'PYMODULE'), + ('yaml', 'C:\\Python312\\Lib\\site-packages\\yaml\\__init__.py', 'PYMODULE'), + ('yaml.cyaml', + 'C:\\Python312\\Lib\\site-packages\\yaml\\cyaml.py', + 'PYMODULE'), + ('yaml.resolver', + 'C:\\Python312\\Lib\\site-packages\\yaml\\resolver.py', + 'PYMODULE'), + ('yaml.representer', + 'C:\\Python312\\Lib\\site-packages\\yaml\\representer.py', + 'PYMODULE'), + ('yaml.serializer', + 'C:\\Python312\\Lib\\site-packages\\yaml\\serializer.py', + 'PYMODULE'), + ('yaml.constructor', + 'C:\\Python312\\Lib\\site-packages\\yaml\\constructor.py', + 'PYMODULE'), + ('yaml.dumper', + 'C:\\Python312\\Lib\\site-packages\\yaml\\dumper.py', + 'PYMODULE'), + ('yaml.emitter', + 'C:\\Python312\\Lib\\site-packages\\yaml\\emitter.py', + 'PYMODULE'), + ('yaml.loader', + 'C:\\Python312\\Lib\\site-packages\\yaml\\loader.py', + 'PYMODULE'), + ('yaml.composer', + 'C:\\Python312\\Lib\\site-packages\\yaml\\composer.py', + 'PYMODULE'), + ('yaml.parser', + 'C:\\Python312\\Lib\\site-packages\\yaml\\parser.py', + 'PYMODULE'), + ('yaml.scanner', + 'C:\\Python312\\Lib\\site-packages\\yaml\\scanner.py', + 'PYMODULE'), + ('yaml.reader', + 'C:\\Python312\\Lib\\site-packages\\yaml\\reader.py', + 'PYMODULE'), + ('yaml.nodes', + 'C:\\Python312\\Lib\\site-packages\\yaml\\nodes.py', + 'PYMODULE'), + ('yaml.events', + 'C:\\Python312\\Lib\\site-packages\\yaml\\events.py', + 'PYMODULE'), + ('yaml.tokens', + 'C:\\Python312\\Lib\\site-packages\\yaml\\tokens.py', + 'PYMODULE'), + ('yaml.error', + 'C:\\Python312\\Lib\\site-packages\\yaml\\error.py', + 'PYMODULE'), + ('numpy.array_api', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\__init__.py', + 'PYMODULE'), + ('numpy.array_api._utility_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_utility_functions.py', + 'PYMODULE'), + ('numpy.array_api._array_object', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_array_object.py', + 'PYMODULE'), + ('numpy.typing', + 'C:\\Python312\\Lib\\site-packages\\numpy\\typing\\__init__.py', + 'PYMODULE'), + ('numpy._typing._add_docstring', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_add_docstring.py', + 'PYMODULE'), + ('numpy.array_api._typing', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_typing.py', + 'PYMODULE'), + ('numpy.array_api._statistical_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_statistical_functions.py', + 'PYMODULE'), + ('numpy.array_api._sorting_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_sorting_functions.py', + 'PYMODULE'), + ('numpy.array_api._set_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_set_functions.py', + 'PYMODULE'), + ('numpy.array_api._searching_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_searching_functions.py', + 'PYMODULE'), + ('numpy.array_api._manipulation_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_manipulation_functions.py', + 'PYMODULE'), + ('numpy.array_api.linalg', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\linalg.py', + 'PYMODULE'), + ('numpy.array_api._indexing_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_indexing_functions.py', + 'PYMODULE'), + ('numpy.array_api._elementwise_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_elementwise_functions.py', + 'PYMODULE'), + ('numpy.array_api._dtypes', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_dtypes.py', + 'PYMODULE'), + ('numpy.array_api._data_type_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_data_type_functions.py', + 'PYMODULE'), + ('numpy.array_api._creation_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_creation_functions.py', + 'PYMODULE'), + ('numpy.array_api._constants', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_constants.py', + 'PYMODULE'), + ('numpy._distributor_init', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_distributor_init.py', + 'PYMODULE'), + ('numpy.version', + 'C:\\Python312\\Lib\\site-packages\\numpy\\version.py', + 'PYMODULE'), + ('numpy.exceptions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\exceptions.py', + 'PYMODULE'), + ('numpy._globals', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_globals.py', + 'PYMODULE')], + [('python312.dll', 'C:\\Python312\\python312.dll', 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\libEGL.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libEGL.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\libGLESv2.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libGLESv2.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\opengl32sw.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\opengl32sw.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', + 'BINARY'), + ('select.pyd', 'C:\\Python312\\DLLs\\select.pyd', 'EXTENSION'), + ('_hashlib.pyd', 'C:\\Python312\\DLLs\\_hashlib.pyd', 'EXTENSION'), + ('_lzma.pyd', 'C:\\Python312\\DLLs\\_lzma.pyd', 'EXTENSION'), + ('_bz2.pyd', 'C:\\Python312\\DLLs\\_bz2.pyd', 'EXTENSION'), + ('pyexpat.pyd', 'C:\\Python312\\DLLs\\pyexpat.pyd', 'EXTENSION'), + ('_ssl.pyd', 'C:\\Python312\\DLLs\\_ssl.pyd', 'EXTENSION'), + ('unicodedata.pyd', 'C:\\Python312\\DLLs\\unicodedata.pyd', 'EXTENSION'), + ('_decimal.pyd', 'C:\\Python312\\DLLs\\_decimal.pyd', 'EXTENSION'), + ('_multiprocessing.pyd', + 'C:\\Python312\\DLLs\\_multiprocessing.pyd', + 'EXTENSION'), + ('_socket.pyd', 'C:\\Python312\\DLLs\\_socket.pyd', 'EXTENSION'), + ('_ctypes.pyd', 'C:\\Python312\\DLLs\\_ctypes.pyd', 'EXTENSION'), + ('_queue.pyd', 'C:\\Python312\\DLLs\\_queue.pyd', 'EXTENSION'), + ('PyQt5\\QtGui.pyd', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\QtGui.pyd', + 'EXTENSION'), + ('PyQt5\\sip.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\sip.cp312-win_amd64.pyd', + 'EXTENSION'), + ('PyQt5\\QtCore.pyd', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\QtCore.pyd', + 'EXTENSION'), + ('PyQt5\\QtWidgets.pyd', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\QtWidgets.pyd', + 'EXTENSION'), + ('pyaudio\\_portaudio.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\pyaudio\\_portaudio.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\core\\_multiarray_tests.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_multiarray_tests.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\core\\_multiarray_umath.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_multiarray_umath.cp312-win_amd64.pyd', + 'EXTENSION'), + ('win32\\win32pdh.pyd', + 'C:\\Python312\\Lib\\site-packages\\win32\\win32pdh.pyd', + 'EXTENSION'), + ('numpy\\linalg\\_umath_linalg.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\linalg\\_umath_linalg.cp312-win_amd64.pyd', + 'EXTENSION'), + ('_wmi.pyd', 'C:\\Python312\\DLLs\\_wmi.pyd', 'EXTENSION'), + ('_overlapped.pyd', 'C:\\Python312\\DLLs\\_overlapped.pyd', 'EXTENSION'), + ('_asyncio.pyd', 'C:\\Python312\\DLLs\\_asyncio.pyd', 'EXTENSION'), + ('numpy\\random\\mtrand.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\mtrand.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_sfc64.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_sfc64.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_philox.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_philox.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_pcg64.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_pcg64.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_mt19937.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_mt19937.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\bit_generator.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\bit_generator.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_generator.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_generator.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_bounded_integers.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_bounded_integers.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_common.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_common.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\fft\\_pocketfft_internal.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\fft\\_pocketfft_internal.cp312-win_amd64.pyd', + 'EXTENSION'), + ('yaml\\_yaml.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\yaml\\_yaml.cp312-win_amd64.pyd', + 'EXTENSION'), + ('api-ms-win-crt-string-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-string-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-runtime-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-runtime-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-math-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-math-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-filesystem-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-filesystem-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-conio-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-conio-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-stdio-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-stdio-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-convert-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-convert-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-environment-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-environment-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-process-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-process-l1-1-0.dll', + 'BINARY'), + ('VCRUNTIME140.dll', 'C:\\Python312\\VCRUNTIME140.dll', 'BINARY'), + ('api-ms-win-crt-time-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-time-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-heap-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-heap-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-locale-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-locale-l1-1-0.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Core.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Core.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Gui.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Gui.dll', + 'BINARY'), + ('api-ms-win-crt-utility-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-utility-l1-1-0.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Svg.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Svg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5DBus.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5DBus.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Network.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Network.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Quick.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Quick.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\MSVCP140.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140.dll', + 'BINARY'), + ('VCRUNTIME140_1.dll', 'C:\\Python312\\VCRUNTIME140_1.dll', 'BINARY'), + ('PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Widgets.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Widgets.dll', + 'BINARY'), + ('libcrypto-3.dll', 'C:\\Python312\\DLLs\\libcrypto-3.dll', 'BINARY'), + ('libssl-3.dll', 'C:\\Python312\\DLLs\\libssl-3.dll', 'BINARY'), + ('libffi-8.dll', 'C:\\Python312\\DLLs\\libffi-8.dll', 'BINARY'), + ('python3.dll', 'C:\\Python312\\python3.dll', 'BINARY'), + ('numpy.libs\\libopenblas64__v0.3.23-293-gc2f4bdbb-gcc_10_3_0-2bde3a66a51006b2b53eb373ff767a3f.dll', + 'C:\\Python312\\Lib\\site-packages\\numpy.libs\\libopenblas64__v0.3.23-293-gc2f4bdbb-gcc_10_3_0-2bde3a66a51006b2b53eb373ff767a3f.dll', + 'BINARY'), + ('pywin32_system32\\pywintypes312.dll', + 'C:\\Python312\\Lib\\site-packages\\pywin32_system32\\pywintypes312.dll', + 'BINARY'), + ('ucrtbase.dll', + 'C:\\Program Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\ucrtbase.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\MSVCP140_1.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140_1.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Qml.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Qml.dll', + 'BINARY'), + ('api-ms-win-crt-private-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-private-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-synch-l1-2-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-synch-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-profile-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-profile-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-heap-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-heap-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-rtlsupport-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-rtlsupport-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-errorhandling-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-errorhandling-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l2-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-file-l2-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processenvironment-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-processenvironment-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-console-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-console-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processthreads-l1-1-1.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-processthreads-l1-1-1.dll', + 'BINARY'), + ('api-ms-win-core-localization-l1-2-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-localization-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-synch-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-synch-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-file-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-libraryloader-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-libraryloader-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-sysinfo-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-sysinfo-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-memory-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-memory-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-interlocked-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-interlocked-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processthreads-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-processthreads-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-string-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-string-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-timezone-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-timezone-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-handle-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-handle-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-namedpipe-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-namedpipe-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-debug-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-debug-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-datetime-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-datetime-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l1-2-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-file-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-util-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-util-l1-1-0.dll', + 'BINARY')], + [], + [], + [('Sonic2no.png', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\Sonic2no.png', + 'DATA'), + ('base_library.zip', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\base_library.zip', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_da.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_it.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_sk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ko.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_pt.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pt.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_he.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_he.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ko.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_da.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_pl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ru.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_zh_CN.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_CN.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_bg.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_es.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_bg.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_cs.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_uk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_hu.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_lv.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_lv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_it.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_de.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_uk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_zh_TW.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ja.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_tr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_bg.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_es.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_fi.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fi.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ar.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ar.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_it.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_en.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_cs.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ca.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_en.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ru.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_uk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_en.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_sk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_gd.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_gd.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_de.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ca.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_tr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ko.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_pl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sv.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_da.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ca.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_de.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_he.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_he.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fa.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fa.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_pl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_gd.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gd.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_cs.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_fr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fi.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fi.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_gl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_hu.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ru.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_fr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ar.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ar.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_hu.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_es.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ja.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_sl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ja.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_lv.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_gl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_gl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_tr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ar.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ar.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_lt.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lt.qm', + 'DATA')]) diff --git a/build/Sonic/EXE-00.toc b/build/Sonic/EXE-00.toc new file mode 100644 index 0000000..0dc41c8 --- /dev/null +++ b/build/Sonic/EXE-00.toc @@ -0,0 +1,674 @@ +('C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\dist\\Sonic.exe', + False, + False, + False, + ['C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\Sonic2no25.ico'], + None, + False, + False, + b'\n\n \n \n \n \n \n \n \n ' + b'\n <' + b'application>\n \n \n ' + b' \n \n \n \n <' + b'/compatibility>\n ' + b'\n \n true\n \n \n \n \n \n \n \n', + True, + False, + None, + None, + None, + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\Sonic.pkg', + [('pyi-contents-directory _internal', '', 'OPTION'), + ('PYZ-00.pyz', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\PYZ-00.pyz', + 'PYZ'), + ('struct', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\localpycs\\struct.pyc', + 'PYMODULE'), + ('pyimod01_archive', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\localpycs\\pyimod01_archive.pyc', + 'PYMODULE'), + ('pyimod02_importers', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\localpycs\\pyimod02_importers.pyc', + 'PYMODULE'), + ('pyimod03_ctypes', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\localpycs\\pyimod03_ctypes.pyc', + 'PYMODULE'), + ('pyimod04_pywin32', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\localpycs\\pyimod04_pywin32.pyc', + 'PYMODULE'), + ('pyiboot01_bootstrap', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py', + 'PYSOURCE'), + ('pyi_rth_inspect', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', + 'PYSOURCE'), + ('pyi_rth_pyqt5', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py', + 'PYSOURCE'), + ('pyi_rth_pkgutil', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py', + 'PYSOURCE'), + ('pyi_rth_multiprocessing', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py', + 'PYSOURCE'), + ('Sonic', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\Sonic.pyw', + 'PYSOURCE'), + ('python312.dll', 'C:\\Python312\\python312.dll', 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\libEGL.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libEGL.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\libGLESv2.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libGLESv2.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\opengl32sw.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\opengl32sw.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', + 'BINARY'), + ('select.pyd', 'C:\\Python312\\DLLs\\select.pyd', 'EXTENSION'), + ('_hashlib.pyd', 'C:\\Python312\\DLLs\\_hashlib.pyd', 'EXTENSION'), + ('_lzma.pyd', 'C:\\Python312\\DLLs\\_lzma.pyd', 'EXTENSION'), + ('_bz2.pyd', 'C:\\Python312\\DLLs\\_bz2.pyd', 'EXTENSION'), + ('pyexpat.pyd', 'C:\\Python312\\DLLs\\pyexpat.pyd', 'EXTENSION'), + ('_ssl.pyd', 'C:\\Python312\\DLLs\\_ssl.pyd', 'EXTENSION'), + ('unicodedata.pyd', 'C:\\Python312\\DLLs\\unicodedata.pyd', 'EXTENSION'), + ('_decimal.pyd', 'C:\\Python312\\DLLs\\_decimal.pyd', 'EXTENSION'), + ('_multiprocessing.pyd', + 'C:\\Python312\\DLLs\\_multiprocessing.pyd', + 'EXTENSION'), + ('_socket.pyd', 'C:\\Python312\\DLLs\\_socket.pyd', 'EXTENSION'), + ('_ctypes.pyd', 'C:\\Python312\\DLLs\\_ctypes.pyd', 'EXTENSION'), + ('_queue.pyd', 'C:\\Python312\\DLLs\\_queue.pyd', 'EXTENSION'), + ('PyQt5\\QtGui.pyd', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\QtGui.pyd', + 'EXTENSION'), + ('PyQt5\\sip.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\sip.cp312-win_amd64.pyd', + 'EXTENSION'), + ('PyQt5\\QtCore.pyd', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\QtCore.pyd', + 'EXTENSION'), + ('PyQt5\\QtWidgets.pyd', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\QtWidgets.pyd', + 'EXTENSION'), + ('pyaudio\\_portaudio.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\pyaudio\\_portaudio.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\core\\_multiarray_tests.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_multiarray_tests.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\core\\_multiarray_umath.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_multiarray_umath.cp312-win_amd64.pyd', + 'EXTENSION'), + ('win32\\win32pdh.pyd', + 'C:\\Python312\\Lib\\site-packages\\win32\\win32pdh.pyd', + 'EXTENSION'), + ('numpy\\linalg\\_umath_linalg.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\linalg\\_umath_linalg.cp312-win_amd64.pyd', + 'EXTENSION'), + ('_wmi.pyd', 'C:\\Python312\\DLLs\\_wmi.pyd', 'EXTENSION'), + ('_overlapped.pyd', 'C:\\Python312\\DLLs\\_overlapped.pyd', 'EXTENSION'), + ('_asyncio.pyd', 'C:\\Python312\\DLLs\\_asyncio.pyd', 'EXTENSION'), + ('numpy\\random\\mtrand.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\mtrand.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_sfc64.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_sfc64.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_philox.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_philox.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_pcg64.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_pcg64.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_mt19937.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_mt19937.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\bit_generator.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\bit_generator.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_generator.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_generator.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_bounded_integers.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_bounded_integers.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_common.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_common.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\fft\\_pocketfft_internal.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\fft\\_pocketfft_internal.cp312-win_amd64.pyd', + 'EXTENSION'), + ('yaml\\_yaml.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\yaml\\_yaml.cp312-win_amd64.pyd', + 'EXTENSION'), + ('api-ms-win-crt-string-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-string-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-runtime-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-runtime-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-math-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-math-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-filesystem-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-filesystem-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-conio-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-conio-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-stdio-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-stdio-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-convert-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-convert-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-environment-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-environment-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-process-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-process-l1-1-0.dll', + 'BINARY'), + ('VCRUNTIME140.dll', 'C:\\Python312\\VCRUNTIME140.dll', 'BINARY'), + ('api-ms-win-crt-time-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-time-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-heap-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-heap-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-locale-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-locale-l1-1-0.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Core.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Core.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Gui.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Gui.dll', + 'BINARY'), + ('api-ms-win-crt-utility-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-utility-l1-1-0.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Svg.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Svg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5DBus.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5DBus.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Network.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Network.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Quick.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Quick.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\MSVCP140.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140.dll', + 'BINARY'), + ('VCRUNTIME140_1.dll', 'C:\\Python312\\VCRUNTIME140_1.dll', 'BINARY'), + ('PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Widgets.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Widgets.dll', + 'BINARY'), + ('libcrypto-3.dll', 'C:\\Python312\\DLLs\\libcrypto-3.dll', 'BINARY'), + ('libssl-3.dll', 'C:\\Python312\\DLLs\\libssl-3.dll', 'BINARY'), + ('libffi-8.dll', 'C:\\Python312\\DLLs\\libffi-8.dll', 'BINARY'), + ('python3.dll', 'C:\\Python312\\python3.dll', 'BINARY'), + ('numpy.libs\\libopenblas64__v0.3.23-293-gc2f4bdbb-gcc_10_3_0-2bde3a66a51006b2b53eb373ff767a3f.dll', + 'C:\\Python312\\Lib\\site-packages\\numpy.libs\\libopenblas64__v0.3.23-293-gc2f4bdbb-gcc_10_3_0-2bde3a66a51006b2b53eb373ff767a3f.dll', + 'BINARY'), + ('pywin32_system32\\pywintypes312.dll', + 'C:\\Python312\\Lib\\site-packages\\pywin32_system32\\pywintypes312.dll', + 'BINARY'), + ('ucrtbase.dll', + 'C:\\Program Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\ucrtbase.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\MSVCP140_1.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140_1.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Qml.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Qml.dll', + 'BINARY'), + ('api-ms-win-crt-private-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-private-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-synch-l1-2-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-synch-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-profile-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-profile-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-heap-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-heap-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-rtlsupport-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-rtlsupport-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-errorhandling-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-errorhandling-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l2-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-file-l2-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processenvironment-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-processenvironment-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-console-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-console-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processthreads-l1-1-1.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-processthreads-l1-1-1.dll', + 'BINARY'), + ('api-ms-win-core-localization-l1-2-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-localization-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-synch-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-synch-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-file-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-libraryloader-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-libraryloader-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-sysinfo-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-sysinfo-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-memory-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-memory-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-interlocked-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-interlocked-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processthreads-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-processthreads-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-string-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-string-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-timezone-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-timezone-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-handle-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-handle-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-namedpipe-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-namedpipe-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-debug-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-debug-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-datetime-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-datetime-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l1-2-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-file-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-util-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-util-l1-1-0.dll', + 'BINARY'), + ('Sonic2no.png', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\Sonic2no.png', + 'DATA'), + ('base_library.zip', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\base_library.zip', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_da.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_it.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_sk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ko.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_pt.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pt.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_he.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_he.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ko.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_da.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_pl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ru.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_zh_CN.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_CN.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_bg.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_es.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_bg.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_cs.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_uk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_hu.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_lv.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_lv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_it.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_de.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_uk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_zh_TW.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ja.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_tr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_bg.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_es.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_fi.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fi.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ar.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ar.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_it.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_en.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_cs.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ca.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_en.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ru.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_uk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_en.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_sk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_gd.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_gd.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_de.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ca.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_tr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ko.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_pl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sv.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_da.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ca.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_de.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_he.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_he.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fa.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fa.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_pl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_gd.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gd.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_cs.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_fr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fi.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fi.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_gl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_hu.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ru.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_fr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ar.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ar.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_hu.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_es.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ja.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_sl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ja.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_lv.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_gl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_gl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_tr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ar.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ar.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_lt.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lt.qm', + 'DATA')], + [], + False, + False, + 1715305198, + [('runw.exe', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\runw.exe', + 'EXECUTABLE')], + 'C:\\Python312\\python312.dll') diff --git a/build/Sonic/PKG-00.toc b/build/Sonic/PKG-00.toc new file mode 100644 index 0000000..3fd2d47 --- /dev/null +++ b/build/Sonic/PKG-00.toc @@ -0,0 +1,650 @@ +('C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\Sonic.pkg', + {'BINARY': True, + 'DATA': True, + 'EXECUTABLE': True, + 'EXTENSION': True, + 'PYMODULE': True, + 'PYSOURCE': True, + 'PYZ': False, + 'SPLASH': True, + 'SYMLINK': False}, + [('pyi-contents-directory _internal', '', 'OPTION'), + ('PYZ-00.pyz', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\PYZ-00.pyz', + 'PYZ'), + ('struct', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\localpycs\\struct.pyc', + 'PYMODULE'), + ('pyimod01_archive', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\localpycs\\pyimod01_archive.pyc', + 'PYMODULE'), + ('pyimod02_importers', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\localpycs\\pyimod02_importers.pyc', + 'PYMODULE'), + ('pyimod03_ctypes', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\localpycs\\pyimod03_ctypes.pyc', + 'PYMODULE'), + ('pyimod04_pywin32', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\localpycs\\pyimod04_pywin32.pyc', + 'PYMODULE'), + ('pyiboot01_bootstrap', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py', + 'PYSOURCE'), + ('pyi_rth_inspect', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', + 'PYSOURCE'), + ('pyi_rth_pyqt5', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py', + 'PYSOURCE'), + ('pyi_rth_pkgutil', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py', + 'PYSOURCE'), + ('pyi_rth_multiprocessing', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py', + 'PYSOURCE'), + ('Sonic', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\Sonic.pyw', + 'PYSOURCE'), + ('python312.dll', 'C:\\Python312\\python312.dll', 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\libEGL.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libEGL.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\libGLESv2.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libGLESv2.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\opengl32sw.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\opengl32sw.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', + 'BINARY'), + ('select.pyd', 'C:\\Python312\\DLLs\\select.pyd', 'EXTENSION'), + ('_hashlib.pyd', 'C:\\Python312\\DLLs\\_hashlib.pyd', 'EXTENSION'), + ('_lzma.pyd', 'C:\\Python312\\DLLs\\_lzma.pyd', 'EXTENSION'), + ('_bz2.pyd', 'C:\\Python312\\DLLs\\_bz2.pyd', 'EXTENSION'), + ('pyexpat.pyd', 'C:\\Python312\\DLLs\\pyexpat.pyd', 'EXTENSION'), + ('_ssl.pyd', 'C:\\Python312\\DLLs\\_ssl.pyd', 'EXTENSION'), + ('unicodedata.pyd', 'C:\\Python312\\DLLs\\unicodedata.pyd', 'EXTENSION'), + ('_decimal.pyd', 'C:\\Python312\\DLLs\\_decimal.pyd', 'EXTENSION'), + ('_multiprocessing.pyd', + 'C:\\Python312\\DLLs\\_multiprocessing.pyd', + 'EXTENSION'), + ('_socket.pyd', 'C:\\Python312\\DLLs\\_socket.pyd', 'EXTENSION'), + ('_ctypes.pyd', 'C:\\Python312\\DLLs\\_ctypes.pyd', 'EXTENSION'), + ('_queue.pyd', 'C:\\Python312\\DLLs\\_queue.pyd', 'EXTENSION'), + ('PyQt5\\QtGui.pyd', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\QtGui.pyd', + 'EXTENSION'), + ('PyQt5\\sip.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\sip.cp312-win_amd64.pyd', + 'EXTENSION'), + ('PyQt5\\QtCore.pyd', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\QtCore.pyd', + 'EXTENSION'), + ('PyQt5\\QtWidgets.pyd', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\QtWidgets.pyd', + 'EXTENSION'), + ('pyaudio\\_portaudio.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\pyaudio\\_portaudio.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\core\\_multiarray_tests.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_multiarray_tests.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\core\\_multiarray_umath.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_multiarray_umath.cp312-win_amd64.pyd', + 'EXTENSION'), + ('win32\\win32pdh.pyd', + 'C:\\Python312\\Lib\\site-packages\\win32\\win32pdh.pyd', + 'EXTENSION'), + ('numpy\\linalg\\_umath_linalg.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\linalg\\_umath_linalg.cp312-win_amd64.pyd', + 'EXTENSION'), + ('_wmi.pyd', 'C:\\Python312\\DLLs\\_wmi.pyd', 'EXTENSION'), + ('_overlapped.pyd', 'C:\\Python312\\DLLs\\_overlapped.pyd', 'EXTENSION'), + ('_asyncio.pyd', 'C:\\Python312\\DLLs\\_asyncio.pyd', 'EXTENSION'), + ('numpy\\random\\mtrand.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\mtrand.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_sfc64.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_sfc64.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_philox.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_philox.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_pcg64.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_pcg64.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_mt19937.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_mt19937.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\bit_generator.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\bit_generator.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_generator.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_generator.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_bounded_integers.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_bounded_integers.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\random\\_common.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_common.cp312-win_amd64.pyd', + 'EXTENSION'), + ('numpy\\fft\\_pocketfft_internal.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\numpy\\fft\\_pocketfft_internal.cp312-win_amd64.pyd', + 'EXTENSION'), + ('yaml\\_yaml.cp312-win_amd64.pyd', + 'C:\\Python312\\Lib\\site-packages\\yaml\\_yaml.cp312-win_amd64.pyd', + 'EXTENSION'), + ('api-ms-win-crt-string-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-string-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-runtime-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-runtime-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-math-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-math-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-filesystem-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-filesystem-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-conio-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-conio-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-stdio-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-stdio-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-convert-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-convert-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-environment-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-environment-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-process-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-process-l1-1-0.dll', + 'BINARY'), + ('VCRUNTIME140.dll', 'C:\\Python312\\VCRUNTIME140.dll', 'BINARY'), + ('api-ms-win-crt-time-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-time-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-heap-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-heap-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-locale-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-locale-l1-1-0.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Core.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Core.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Gui.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Gui.dll', + 'BINARY'), + ('api-ms-win-crt-utility-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-utility-l1-1-0.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Svg.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Svg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5DBus.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5DBus.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Network.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Network.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Quick.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Quick.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\MSVCP140.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140.dll', + 'BINARY'), + ('VCRUNTIME140_1.dll', 'C:\\Python312\\VCRUNTIME140_1.dll', 'BINARY'), + ('PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Widgets.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Widgets.dll', + 'BINARY'), + ('libcrypto-3.dll', 'C:\\Python312\\DLLs\\libcrypto-3.dll', 'BINARY'), + ('libssl-3.dll', 'C:\\Python312\\DLLs\\libssl-3.dll', 'BINARY'), + ('libffi-8.dll', 'C:\\Python312\\DLLs\\libffi-8.dll', 'BINARY'), + ('python3.dll', 'C:\\Python312\\python3.dll', 'BINARY'), + ('numpy.libs\\libopenblas64__v0.3.23-293-gc2f4bdbb-gcc_10_3_0-2bde3a66a51006b2b53eb373ff767a3f.dll', + 'C:\\Python312\\Lib\\site-packages\\numpy.libs\\libopenblas64__v0.3.23-293-gc2f4bdbb-gcc_10_3_0-2bde3a66a51006b2b53eb373ff767a3f.dll', + 'BINARY'), + ('pywin32_system32\\pywintypes312.dll', + 'C:\\Python312\\Lib\\site-packages\\pywin32_system32\\pywintypes312.dll', + 'BINARY'), + ('ucrtbase.dll', + 'C:\\Program Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\ucrtbase.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\MSVCP140_1.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140_1.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Qml.dll', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Qml.dll', + 'BINARY'), + ('api-ms-win-crt-private-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-crt-private-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-synch-l1-2-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-synch-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-profile-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-profile-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-heap-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-heap-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-rtlsupport-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-rtlsupport-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-errorhandling-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-errorhandling-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l2-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-file-l2-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processenvironment-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-processenvironment-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-console-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-console-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processthreads-l1-1-1.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-processthreads-l1-1-1.dll', + 'BINARY'), + ('api-ms-win-core-localization-l1-2-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-localization-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-synch-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-synch-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-file-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-libraryloader-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-libraryloader-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-sysinfo-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-sysinfo-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-memory-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-memory-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-interlocked-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-interlocked-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processthreads-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-processthreads-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-string-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-string-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-timezone-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-timezone-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-handle-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-handle-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-namedpipe-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-namedpipe-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-debug-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-debug-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-datetime-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-datetime-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l1-2-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-file-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-util-l1-1-0.dll', + 'C:\\Program ' + 'Files\\Microsoft\\jdk-11.0.16.101-hotspot\\bin\\api-ms-win-core-util-l1-1-0.dll', + 'BINARY'), + ('Sonic2no.png', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\Sonic2no.png', + 'DATA'), + ('base_library.zip', + 'C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\base_library.zip', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_da.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_it.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_sk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ko.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_pt.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pt.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_he.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_he.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ko.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_da.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_pl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ru.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_zh_CN.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_CN.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_bg.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_es.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_bg.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_cs.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_uk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_hu.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_lv.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_lv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_it.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_de.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_uk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_zh_TW.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ja.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_tr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_bg.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_es.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_fi.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fi.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ar.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ar.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_it.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_en.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_cs.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ca.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_en.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ru.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_uk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_en.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_sk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_gd.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_gd.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_de.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ca.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_tr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ko.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_pl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sv.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_da.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ca.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_de.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_he.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_he.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fa.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fa.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_pl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sk.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_gd.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gd.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_cs.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_fr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fi.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fi.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_gl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_hu.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ru.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_fr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ar.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ar.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_hu.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_es.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ja.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_sl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ja.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_lv.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_gl.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_gl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_tr.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ar.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ar.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_lt.qm', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lt.qm', + 'DATA')], + 'python312.dll', + False, + False, + False, + [], + None, + None, + None) diff --git a/build/Sonic/PYZ-00.pyz b/build/Sonic/PYZ-00.pyz new file mode 100644 index 0000000..29469d3 Binary files /dev/null and b/build/Sonic/PYZ-00.pyz differ diff --git a/build/Sonic/PYZ-00.toc b/build/Sonic/PYZ-00.toc new file mode 100644 index 0000000..c93268b --- /dev/null +++ b/build/Sonic/PYZ-00.toc @@ -0,0 +1,796 @@ +('C:\\Users\\inser\\OneDrive\\Desktop\\New folder (3)\\dist\\New ' + 'folder\\build\\Sonic\\PYZ-00.pyz', + [('PyQt5', + 'C:\\Python312\\Lib\\site-packages\\PyQt5\\__init__.py', + 'PYMODULE'), + ('__future__', 'C:\\Python312\\Lib\\__future__.py', 'PYMODULE'), + ('_aix_support', 'C:\\Python312\\Lib\\_aix_support.py', 'PYMODULE'), + ('_compat_pickle', 'C:\\Python312\\Lib\\_compat_pickle.py', 'PYMODULE'), + ('_compression', 'C:\\Python312\\Lib\\_compression.py', 'PYMODULE'), + ('_py_abc', 'C:\\Python312\\Lib\\_py_abc.py', 'PYMODULE'), + ('_pydatetime', 'C:\\Python312\\Lib\\_pydatetime.py', 'PYMODULE'), + ('_pydecimal', 'C:\\Python312\\Lib\\_pydecimal.py', 'PYMODULE'), + ('_pyi_rth_utils', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\fake-modules\\_pyi_rth_utils\\__init__.py', + 'PYMODULE'), + ('_pyi_rth_utils.qt', + 'C:\\Python312\\Lib\\site-packages\\PyInstaller\\fake-modules\\_pyi_rth_utils\\qt.py', + 'PYMODULE'), + ('_strptime', 'C:\\Python312\\Lib\\_strptime.py', 'PYMODULE'), + ('_threading_local', 'C:\\Python312\\Lib\\_threading_local.py', 'PYMODULE'), + ('argparse', 'C:\\Python312\\Lib\\argparse.py', 'PYMODULE'), + ('ast', 'C:\\Python312\\Lib\\ast.py', 'PYMODULE'), + ('asyncio', 'C:\\Python312\\Lib\\asyncio\\__init__.py', 'PYMODULE'), + ('asyncio.base_events', + 'C:\\Python312\\Lib\\asyncio\\base_events.py', + 'PYMODULE'), + ('asyncio.base_futures', + 'C:\\Python312\\Lib\\asyncio\\base_futures.py', + 'PYMODULE'), + ('asyncio.base_subprocess', + 'C:\\Python312\\Lib\\asyncio\\base_subprocess.py', + 'PYMODULE'), + ('asyncio.base_tasks', + 'C:\\Python312\\Lib\\asyncio\\base_tasks.py', + 'PYMODULE'), + ('asyncio.constants', + 'C:\\Python312\\Lib\\asyncio\\constants.py', + 'PYMODULE'), + ('asyncio.coroutines', + 'C:\\Python312\\Lib\\asyncio\\coroutines.py', + 'PYMODULE'), + ('asyncio.events', 'C:\\Python312\\Lib\\asyncio\\events.py', 'PYMODULE'), + ('asyncio.exceptions', + 'C:\\Python312\\Lib\\asyncio\\exceptions.py', + 'PYMODULE'), + ('asyncio.format_helpers', + 'C:\\Python312\\Lib\\asyncio\\format_helpers.py', + 'PYMODULE'), + ('asyncio.futures', 'C:\\Python312\\Lib\\asyncio\\futures.py', 'PYMODULE'), + ('asyncio.locks', 'C:\\Python312\\Lib\\asyncio\\locks.py', 'PYMODULE'), + ('asyncio.log', 'C:\\Python312\\Lib\\asyncio\\log.py', 'PYMODULE'), + ('asyncio.mixins', 'C:\\Python312\\Lib\\asyncio\\mixins.py', 'PYMODULE'), + ('asyncio.proactor_events', + 'C:\\Python312\\Lib\\asyncio\\proactor_events.py', + 'PYMODULE'), + ('asyncio.protocols', + 'C:\\Python312\\Lib\\asyncio\\protocols.py', + 'PYMODULE'), + ('asyncio.queues', 'C:\\Python312\\Lib\\asyncio\\queues.py', 'PYMODULE'), + ('asyncio.runners', 'C:\\Python312\\Lib\\asyncio\\runners.py', 'PYMODULE'), + ('asyncio.selector_events', + 'C:\\Python312\\Lib\\asyncio\\selector_events.py', + 'PYMODULE'), + ('asyncio.sslproto', 'C:\\Python312\\Lib\\asyncio\\sslproto.py', 'PYMODULE'), + ('asyncio.staggered', + 'C:\\Python312\\Lib\\asyncio\\staggered.py', + 'PYMODULE'), + ('asyncio.streams', 'C:\\Python312\\Lib\\asyncio\\streams.py', 'PYMODULE'), + ('asyncio.subprocess', + 'C:\\Python312\\Lib\\asyncio\\subprocess.py', + 'PYMODULE'), + ('asyncio.taskgroups', + 'C:\\Python312\\Lib\\asyncio\\taskgroups.py', + 'PYMODULE'), + ('asyncio.tasks', 'C:\\Python312\\Lib\\asyncio\\tasks.py', 'PYMODULE'), + ('asyncio.threads', 'C:\\Python312\\Lib\\asyncio\\threads.py', 'PYMODULE'), + ('asyncio.timeouts', 'C:\\Python312\\Lib\\asyncio\\timeouts.py', 'PYMODULE'), + ('asyncio.transports', + 'C:\\Python312\\Lib\\asyncio\\transports.py', + 'PYMODULE'), + ('asyncio.trsock', 'C:\\Python312\\Lib\\asyncio\\trsock.py', 'PYMODULE'), + ('asyncio.unix_events', + 'C:\\Python312\\Lib\\asyncio\\unix_events.py', + 'PYMODULE'), + ('asyncio.windows_events', + 'C:\\Python312\\Lib\\asyncio\\windows_events.py', + 'PYMODULE'), + ('asyncio.windows_utils', + 'C:\\Python312\\Lib\\asyncio\\windows_utils.py', + 'PYMODULE'), + ('base64', 'C:\\Python312\\Lib\\base64.py', 'PYMODULE'), + ('bdb', 'C:\\Python312\\Lib\\bdb.py', 'PYMODULE'), + ('bisect', 'C:\\Python312\\Lib\\bisect.py', 'PYMODULE'), + ('bz2', 'C:\\Python312\\Lib\\bz2.py', 'PYMODULE'), + ('calendar', 'C:\\Python312\\Lib\\calendar.py', 'PYMODULE'), + ('cmd', 'C:\\Python312\\Lib\\cmd.py', 'PYMODULE'), + ('code', 'C:\\Python312\\Lib\\code.py', 'PYMODULE'), + ('codeop', 'C:\\Python312\\Lib\\codeop.py', 'PYMODULE'), + ('concurrent', 'C:\\Python312\\Lib\\concurrent\\__init__.py', 'PYMODULE'), + ('concurrent.futures', + 'C:\\Python312\\Lib\\concurrent\\futures\\__init__.py', + 'PYMODULE'), + ('concurrent.futures._base', + 'C:\\Python312\\Lib\\concurrent\\futures\\_base.py', + 'PYMODULE'), + ('concurrent.futures.process', + 'C:\\Python312\\Lib\\concurrent\\futures\\process.py', + 'PYMODULE'), + ('concurrent.futures.thread', + 'C:\\Python312\\Lib\\concurrent\\futures\\thread.py', + 'PYMODULE'), + ('contextlib', 'C:\\Python312\\Lib\\contextlib.py', 'PYMODULE'), + ('contextvars', 'C:\\Python312\\Lib\\contextvars.py', 'PYMODULE'), + ('copy', 'C:\\Python312\\Lib\\copy.py', 'PYMODULE'), + ('csv', 'C:\\Python312\\Lib\\csv.py', 'PYMODULE'), + ('ctypes', 'C:\\Python312\\Lib\\ctypes\\__init__.py', 'PYMODULE'), + ('ctypes._endian', 'C:\\Python312\\Lib\\ctypes\\_endian.py', 'PYMODULE'), + ('dataclasses', 'C:\\Python312\\Lib\\dataclasses.py', 'PYMODULE'), + ('datetime', 'C:\\Python312\\Lib\\datetime.py', 'PYMODULE'), + ('decimal', 'C:\\Python312\\Lib\\decimal.py', 'PYMODULE'), + ('difflib', 'C:\\Python312\\Lib\\difflib.py', 'PYMODULE'), + ('dis', 'C:\\Python312\\Lib\\dis.py', 'PYMODULE'), + ('doctest', 'C:\\Python312\\Lib\\doctest.py', 'PYMODULE'), + ('email', 'C:\\Python312\\Lib\\email\\__init__.py', 'PYMODULE'), + ('email._encoded_words', + 'C:\\Python312\\Lib\\email\\_encoded_words.py', + 'PYMODULE'), + ('email._header_value_parser', + 'C:\\Python312\\Lib\\email\\_header_value_parser.py', + 'PYMODULE'), + ('email._parseaddr', 'C:\\Python312\\Lib\\email\\_parseaddr.py', 'PYMODULE'), + ('email._policybase', + 'C:\\Python312\\Lib\\email\\_policybase.py', + 'PYMODULE'), + ('email.base64mime', 'C:\\Python312\\Lib\\email\\base64mime.py', 'PYMODULE'), + ('email.charset', 'C:\\Python312\\Lib\\email\\charset.py', 'PYMODULE'), + ('email.contentmanager', + 'C:\\Python312\\Lib\\email\\contentmanager.py', + 'PYMODULE'), + ('email.encoders', 'C:\\Python312\\Lib\\email\\encoders.py', 'PYMODULE'), + ('email.errors', 'C:\\Python312\\Lib\\email\\errors.py', 'PYMODULE'), + ('email.feedparser', 'C:\\Python312\\Lib\\email\\feedparser.py', 'PYMODULE'), + ('email.generator', 'C:\\Python312\\Lib\\email\\generator.py', 'PYMODULE'), + ('email.header', 'C:\\Python312\\Lib\\email\\header.py', 'PYMODULE'), + ('email.headerregistry', + 'C:\\Python312\\Lib\\email\\headerregistry.py', + 'PYMODULE'), + ('email.iterators', 'C:\\Python312\\Lib\\email\\iterators.py', 'PYMODULE'), + ('email.message', 'C:\\Python312\\Lib\\email\\message.py', 'PYMODULE'), + ('email.parser', 'C:\\Python312\\Lib\\email\\parser.py', 'PYMODULE'), + ('email.policy', 'C:\\Python312\\Lib\\email\\policy.py', 'PYMODULE'), + ('email.quoprimime', 'C:\\Python312\\Lib\\email\\quoprimime.py', 'PYMODULE'), + ('email.utils', 'C:\\Python312\\Lib\\email\\utils.py', 'PYMODULE'), + ('fnmatch', 'C:\\Python312\\Lib\\fnmatch.py', 'PYMODULE'), + ('fractions', 'C:\\Python312\\Lib\\fractions.py', 'PYMODULE'), + ('ftplib', 'C:\\Python312\\Lib\\ftplib.py', 'PYMODULE'), + ('getopt', 'C:\\Python312\\Lib\\getopt.py', 'PYMODULE'), + ('getpass', 'C:\\Python312\\Lib\\getpass.py', 'PYMODULE'), + ('gettext', 'C:\\Python312\\Lib\\gettext.py', 'PYMODULE'), + ('glob', 'C:\\Python312\\Lib\\glob.py', 'PYMODULE'), + ('gzip', 'C:\\Python312\\Lib\\gzip.py', 'PYMODULE'), + ('hashlib', 'C:\\Python312\\Lib\\hashlib.py', 'PYMODULE'), + ('hmac', 'C:\\Python312\\Lib\\hmac.py', 'PYMODULE'), + ('html', 'C:\\Python312\\Lib\\html\\__init__.py', 'PYMODULE'), + ('html.entities', 'C:\\Python312\\Lib\\html\\entities.py', 'PYMODULE'), + ('http', 'C:\\Python312\\Lib\\http\\__init__.py', 'PYMODULE'), + ('http.client', 'C:\\Python312\\Lib\\http\\client.py', 'PYMODULE'), + ('http.cookiejar', 'C:\\Python312\\Lib\\http\\cookiejar.py', 'PYMODULE'), + ('http.server', 'C:\\Python312\\Lib\\http\\server.py', 'PYMODULE'), + ('importlib', 'C:\\Python312\\Lib\\importlib\\__init__.py', 'PYMODULE'), + ('importlib._abc', 'C:\\Python312\\Lib\\importlib\\_abc.py', 'PYMODULE'), + ('importlib._bootstrap', + 'C:\\Python312\\Lib\\importlib\\_bootstrap.py', + 'PYMODULE'), + ('importlib._bootstrap_external', + 'C:\\Python312\\Lib\\importlib\\_bootstrap_external.py', + 'PYMODULE'), + ('importlib.abc', 'C:\\Python312\\Lib\\importlib\\abc.py', 'PYMODULE'), + ('importlib.machinery', + 'C:\\Python312\\Lib\\importlib\\machinery.py', + 'PYMODULE'), + ('importlib.metadata', + 'C:\\Python312\\Lib\\importlib\\metadata\\__init__.py', + 'PYMODULE'), + ('importlib.metadata._adapters', + 'C:\\Python312\\Lib\\importlib\\metadata\\_adapters.py', + 'PYMODULE'), + ('importlib.metadata._collections', + 'C:\\Python312\\Lib\\importlib\\metadata\\_collections.py', + 'PYMODULE'), + ('importlib.metadata._functools', + 'C:\\Python312\\Lib\\importlib\\metadata\\_functools.py', + 'PYMODULE'), + ('importlib.metadata._itertools', + 'C:\\Python312\\Lib\\importlib\\metadata\\_itertools.py', + 'PYMODULE'), + ('importlib.metadata._meta', + 'C:\\Python312\\Lib\\importlib\\metadata\\_meta.py', + 'PYMODULE'), + ('importlib.metadata._text', + 'C:\\Python312\\Lib\\importlib\\metadata\\_text.py', + 'PYMODULE'), + ('importlib.readers', + 'C:\\Python312\\Lib\\importlib\\readers.py', + 'PYMODULE'), + ('importlib.resources', + 'C:\\Python312\\Lib\\importlib\\resources\\__init__.py', + 'PYMODULE'), + ('importlib.resources._adapters', + 'C:\\Python312\\Lib\\importlib\\resources\\_adapters.py', + 'PYMODULE'), + ('importlib.resources._common', + 'C:\\Python312\\Lib\\importlib\\resources\\_common.py', + 'PYMODULE'), + ('importlib.resources._itertools', + 'C:\\Python312\\Lib\\importlib\\resources\\_itertools.py', + 'PYMODULE'), + ('importlib.resources._legacy', + 'C:\\Python312\\Lib\\importlib\\resources\\_legacy.py', + 'PYMODULE'), + ('importlib.resources.abc', + 'C:\\Python312\\Lib\\importlib\\resources\\abc.py', + 'PYMODULE'), + ('importlib.resources.readers', + 'C:\\Python312\\Lib\\importlib\\resources\\readers.py', + 'PYMODULE'), + ('importlib.util', 'C:\\Python312\\Lib\\importlib\\util.py', 'PYMODULE'), + ('inspect', 'C:\\Python312\\Lib\\inspect.py', 'PYMODULE'), + ('ipaddress', 'C:\\Python312\\Lib\\ipaddress.py', 'PYMODULE'), + ('json', 'C:\\Python312\\Lib\\json\\__init__.py', 'PYMODULE'), + ('json.decoder', 'C:\\Python312\\Lib\\json\\decoder.py', 'PYMODULE'), + ('json.encoder', 'C:\\Python312\\Lib\\json\\encoder.py', 'PYMODULE'), + ('json.scanner', 'C:\\Python312\\Lib\\json\\scanner.py', 'PYMODULE'), + ('logging', 'C:\\Python312\\Lib\\logging\\__init__.py', 'PYMODULE'), + ('lzma', 'C:\\Python312\\Lib\\lzma.py', 'PYMODULE'), + ('mimetypes', 'C:\\Python312\\Lib\\mimetypes.py', 'PYMODULE'), + ('multiprocessing', + 'C:\\Python312\\Lib\\multiprocessing\\__init__.py', + 'PYMODULE'), + ('multiprocessing.connection', + 'C:\\Python312\\Lib\\multiprocessing\\connection.py', + 'PYMODULE'), + ('multiprocessing.context', + 'C:\\Python312\\Lib\\multiprocessing\\context.py', + 'PYMODULE'), + ('multiprocessing.dummy', + 'C:\\Python312\\Lib\\multiprocessing\\dummy\\__init__.py', + 'PYMODULE'), + ('multiprocessing.dummy.connection', + 'C:\\Python312\\Lib\\multiprocessing\\dummy\\connection.py', + 'PYMODULE'), + ('multiprocessing.forkserver', + 'C:\\Python312\\Lib\\multiprocessing\\forkserver.py', + 'PYMODULE'), + ('multiprocessing.heap', + 'C:\\Python312\\Lib\\multiprocessing\\heap.py', + 'PYMODULE'), + ('multiprocessing.managers', + 'C:\\Python312\\Lib\\multiprocessing\\managers.py', + 'PYMODULE'), + ('multiprocessing.pool', + 'C:\\Python312\\Lib\\multiprocessing\\pool.py', + 'PYMODULE'), + ('multiprocessing.popen_fork', + 'C:\\Python312\\Lib\\multiprocessing\\popen_fork.py', + 'PYMODULE'), + ('multiprocessing.popen_forkserver', + 'C:\\Python312\\Lib\\multiprocessing\\popen_forkserver.py', + 'PYMODULE'), + ('multiprocessing.popen_spawn_posix', + 'C:\\Python312\\Lib\\multiprocessing\\popen_spawn_posix.py', + 'PYMODULE'), + ('multiprocessing.popen_spawn_win32', + 'C:\\Python312\\Lib\\multiprocessing\\popen_spawn_win32.py', + 'PYMODULE'), + ('multiprocessing.process', + 'C:\\Python312\\Lib\\multiprocessing\\process.py', + 'PYMODULE'), + ('multiprocessing.queues', + 'C:\\Python312\\Lib\\multiprocessing\\queues.py', + 'PYMODULE'), + ('multiprocessing.reduction', + 'C:\\Python312\\Lib\\multiprocessing\\reduction.py', + 'PYMODULE'), + ('multiprocessing.resource_sharer', + 'C:\\Python312\\Lib\\multiprocessing\\resource_sharer.py', + 'PYMODULE'), + ('multiprocessing.resource_tracker', + 'C:\\Python312\\Lib\\multiprocessing\\resource_tracker.py', + 'PYMODULE'), + ('multiprocessing.shared_memory', + 'C:\\Python312\\Lib\\multiprocessing\\shared_memory.py', + 'PYMODULE'), + ('multiprocessing.sharedctypes', + 'C:\\Python312\\Lib\\multiprocessing\\sharedctypes.py', + 'PYMODULE'), + ('multiprocessing.spawn', + 'C:\\Python312\\Lib\\multiprocessing\\spawn.py', + 'PYMODULE'), + ('multiprocessing.synchronize', + 'C:\\Python312\\Lib\\multiprocessing\\synchronize.py', + 'PYMODULE'), + ('multiprocessing.util', + 'C:\\Python312\\Lib\\multiprocessing\\util.py', + 'PYMODULE'), + ('netrc', 'C:\\Python312\\Lib\\netrc.py', 'PYMODULE'), + ('nturl2path', 'C:\\Python312\\Lib\\nturl2path.py', 'PYMODULE'), + ('numbers', 'C:\\Python312\\Lib\\numbers.py', 'PYMODULE'), + ('numpy', + 'C:\\Python312\\Lib\\site-packages\\numpy\\__init__.py', + 'PYMODULE'), + ('numpy.__config__', + 'C:\\Python312\\Lib\\site-packages\\numpy\\__config__.py', + 'PYMODULE'), + ('numpy._distributor_init', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_distributor_init.py', + 'PYMODULE'), + ('numpy._globals', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_globals.py', + 'PYMODULE'), + ('numpy._pytesttester', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_pytesttester.py', + 'PYMODULE'), + ('numpy._typing', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\__init__.py', + 'PYMODULE'), + ('numpy._typing._add_docstring', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_add_docstring.py', + 'PYMODULE'), + ('numpy._typing._array_like', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_array_like.py', + 'PYMODULE'), + ('numpy._typing._char_codes', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_char_codes.py', + 'PYMODULE'), + ('numpy._typing._dtype_like', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_dtype_like.py', + 'PYMODULE'), + ('numpy._typing._nbit', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_nbit.py', + 'PYMODULE'), + ('numpy._typing._nested_sequence', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_nested_sequence.py', + 'PYMODULE'), + ('numpy._typing._scalars', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_scalars.py', + 'PYMODULE'), + ('numpy._typing._shape', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_typing\\_shape.py', + 'PYMODULE'), + ('numpy._utils', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_utils\\__init__.py', + 'PYMODULE'), + ('numpy._utils._convertions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_utils\\_convertions.py', + 'PYMODULE'), + ('numpy._utils._inspect', + 'C:\\Python312\\Lib\\site-packages\\numpy\\_utils\\_inspect.py', + 'PYMODULE'), + ('numpy.array_api', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\__init__.py', + 'PYMODULE'), + ('numpy.array_api._array_object', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_array_object.py', + 'PYMODULE'), + ('numpy.array_api._constants', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_constants.py', + 'PYMODULE'), + ('numpy.array_api._creation_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_creation_functions.py', + 'PYMODULE'), + ('numpy.array_api._data_type_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_data_type_functions.py', + 'PYMODULE'), + ('numpy.array_api._dtypes', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_dtypes.py', + 'PYMODULE'), + ('numpy.array_api._elementwise_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_elementwise_functions.py', + 'PYMODULE'), + ('numpy.array_api._indexing_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_indexing_functions.py', + 'PYMODULE'), + ('numpy.array_api._manipulation_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_manipulation_functions.py', + 'PYMODULE'), + ('numpy.array_api._searching_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_searching_functions.py', + 'PYMODULE'), + ('numpy.array_api._set_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_set_functions.py', + 'PYMODULE'), + ('numpy.array_api._sorting_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_sorting_functions.py', + 'PYMODULE'), + ('numpy.array_api._statistical_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_statistical_functions.py', + 'PYMODULE'), + ('numpy.array_api._typing', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_typing.py', + 'PYMODULE'), + ('numpy.array_api._utility_functions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\_utility_functions.py', + 'PYMODULE'), + ('numpy.array_api.linalg', + 'C:\\Python312\\Lib\\site-packages\\numpy\\array_api\\linalg.py', + 'PYMODULE'), + ('numpy.compat', + 'C:\\Python312\\Lib\\site-packages\\numpy\\compat\\__init__.py', + 'PYMODULE'), + ('numpy.compat.py3k', + 'C:\\Python312\\Lib\\site-packages\\numpy\\compat\\py3k.py', + 'PYMODULE'), + ('numpy.core', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\__init__.py', + 'PYMODULE'), + ('numpy.core._add_newdocs', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_add_newdocs.py', + 'PYMODULE'), + ('numpy.core._add_newdocs_scalars', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_add_newdocs_scalars.py', + 'PYMODULE'), + ('numpy.core._asarray', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_asarray.py', + 'PYMODULE'), + ('numpy.core._dtype', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_dtype.py', + 'PYMODULE'), + ('numpy.core._dtype_ctypes', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_dtype_ctypes.py', + 'PYMODULE'), + ('numpy.core._exceptions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_exceptions.py', + 'PYMODULE'), + ('numpy.core._internal', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_internal.py', + 'PYMODULE'), + ('numpy.core._machar', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_machar.py', + 'PYMODULE'), + ('numpy.core._methods', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_methods.py', + 'PYMODULE'), + ('numpy.core._string_helpers', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_string_helpers.py', + 'PYMODULE'), + ('numpy.core._type_aliases', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_type_aliases.py', + 'PYMODULE'), + ('numpy.core._ufunc_config', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\_ufunc_config.py', + 'PYMODULE'), + ('numpy.core.arrayprint', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\arrayprint.py', + 'PYMODULE'), + ('numpy.core.defchararray', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\defchararray.py', + 'PYMODULE'), + ('numpy.core.einsumfunc', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\einsumfunc.py', + 'PYMODULE'), + ('numpy.core.fromnumeric', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\fromnumeric.py', + 'PYMODULE'), + ('numpy.core.function_base', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\function_base.py', + 'PYMODULE'), + ('numpy.core.getlimits', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\getlimits.py', + 'PYMODULE'), + ('numpy.core.memmap', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\memmap.py', + 'PYMODULE'), + ('numpy.core.multiarray', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\multiarray.py', + 'PYMODULE'), + ('numpy.core.numeric', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\numeric.py', + 'PYMODULE'), + ('numpy.core.numerictypes', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\numerictypes.py', + 'PYMODULE'), + ('numpy.core.overrides', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\overrides.py', + 'PYMODULE'), + ('numpy.core.records', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\records.py', + 'PYMODULE'), + ('numpy.core.shape_base', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\shape_base.py', + 'PYMODULE'), + ('numpy.core.umath', + 'C:\\Python312\\Lib\\site-packages\\numpy\\core\\umath.py', + 'PYMODULE'), + ('numpy.ctypeslib', + 'C:\\Python312\\Lib\\site-packages\\numpy\\ctypeslib.py', + 'PYMODULE'), + ('numpy.dtypes', + 'C:\\Python312\\Lib\\site-packages\\numpy\\dtypes.py', + 'PYMODULE'), + ('numpy.exceptions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\exceptions.py', + 'PYMODULE'), + ('numpy.fft', + 'C:\\Python312\\Lib\\site-packages\\numpy\\fft\\__init__.py', + 'PYMODULE'), + ('numpy.fft._pocketfft', + 'C:\\Python312\\Lib\\site-packages\\numpy\\fft\\_pocketfft.py', + 'PYMODULE'), + ('numpy.fft.helper', + 'C:\\Python312\\Lib\\site-packages\\numpy\\fft\\helper.py', + 'PYMODULE'), + ('numpy.lib', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\__init__.py', + 'PYMODULE'), + ('numpy.lib._datasource', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\_datasource.py', + 'PYMODULE'), + ('numpy.lib._iotools', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\_iotools.py', + 'PYMODULE'), + ('numpy.lib._version', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\_version.py', + 'PYMODULE'), + ('numpy.lib.arraypad', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\arraypad.py', + 'PYMODULE'), + ('numpy.lib.arraysetops', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\arraysetops.py', + 'PYMODULE'), + ('numpy.lib.arrayterator', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\arrayterator.py', + 'PYMODULE'), + ('numpy.lib.format', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\format.py', + 'PYMODULE'), + ('numpy.lib.function_base', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\function_base.py', + 'PYMODULE'), + ('numpy.lib.histograms', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\histograms.py', + 'PYMODULE'), + ('numpy.lib.index_tricks', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\index_tricks.py', + 'PYMODULE'), + ('numpy.lib.mixins', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\mixins.py', + 'PYMODULE'), + ('numpy.lib.nanfunctions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\nanfunctions.py', + 'PYMODULE'), + ('numpy.lib.npyio', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\npyio.py', + 'PYMODULE'), + ('numpy.lib.polynomial', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\polynomial.py', + 'PYMODULE'), + ('numpy.lib.recfunctions', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\recfunctions.py', + 'PYMODULE'), + ('numpy.lib.scimath', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\scimath.py', + 'PYMODULE'), + ('numpy.lib.shape_base', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\shape_base.py', + 'PYMODULE'), + ('numpy.lib.stride_tricks', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\stride_tricks.py', + 'PYMODULE'), + ('numpy.lib.twodim_base', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\twodim_base.py', + 'PYMODULE'), + ('numpy.lib.type_check', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\type_check.py', + 'PYMODULE'), + ('numpy.lib.ufunclike', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\ufunclike.py', + 'PYMODULE'), + ('numpy.lib.utils', + 'C:\\Python312\\Lib\\site-packages\\numpy\\lib\\utils.py', + 'PYMODULE'), + ('numpy.linalg', + 'C:\\Python312\\Lib\\site-packages\\numpy\\linalg\\__init__.py', + 'PYMODULE'), + ('numpy.linalg.linalg', + 'C:\\Python312\\Lib\\site-packages\\numpy\\linalg\\linalg.py', + 'PYMODULE'), + ('numpy.ma', + 'C:\\Python312\\Lib\\site-packages\\numpy\\ma\\__init__.py', + 'PYMODULE'), + ('numpy.ma.core', + 'C:\\Python312\\Lib\\site-packages\\numpy\\ma\\core.py', + 'PYMODULE'), + ('numpy.ma.extras', + 'C:\\Python312\\Lib\\site-packages\\numpy\\ma\\extras.py', + 'PYMODULE'), + ('numpy.ma.mrecords', + 'C:\\Python312\\Lib\\site-packages\\numpy\\ma\\mrecords.py', + 'PYMODULE'), + ('numpy.matrixlib', + 'C:\\Python312\\Lib\\site-packages\\numpy\\matrixlib\\__init__.py', + 'PYMODULE'), + ('numpy.matrixlib.defmatrix', + 'C:\\Python312\\Lib\\site-packages\\numpy\\matrixlib\\defmatrix.py', + 'PYMODULE'), + ('numpy.polynomial', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\__init__.py', + 'PYMODULE'), + ('numpy.polynomial._polybase', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\_polybase.py', + 'PYMODULE'), + ('numpy.polynomial.chebyshev', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\chebyshev.py', + 'PYMODULE'), + ('numpy.polynomial.hermite', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\hermite.py', + 'PYMODULE'), + ('numpy.polynomial.hermite_e', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\hermite_e.py', + 'PYMODULE'), + ('numpy.polynomial.laguerre', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\laguerre.py', + 'PYMODULE'), + ('numpy.polynomial.legendre', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\legendre.py', + 'PYMODULE'), + ('numpy.polynomial.polynomial', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\polynomial.py', + 'PYMODULE'), + ('numpy.polynomial.polyutils', + 'C:\\Python312\\Lib\\site-packages\\numpy\\polynomial\\polyutils.py', + 'PYMODULE'), + ('numpy.random', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\__init__.py', + 'PYMODULE'), + ('numpy.random._pickle', + 'C:\\Python312\\Lib\\site-packages\\numpy\\random\\_pickle.py', + 'PYMODULE'), + ('numpy.testing', + 'C:\\Python312\\Lib\\site-packages\\numpy\\testing\\__init__.py', + 'PYMODULE'), + ('numpy.testing._private', + 'C:\\Python312\\Lib\\site-packages\\numpy\\testing\\_private\\__init__.py', + 'PYMODULE'), + ('numpy.testing._private.extbuild', + 'C:\\Python312\\Lib\\site-packages\\numpy\\testing\\_private\\extbuild.py', + 'PYMODULE'), + ('numpy.testing._private.utils', + 'C:\\Python312\\Lib\\site-packages\\numpy\\testing\\_private\\utils.py', + 'PYMODULE'), + ('numpy.testing.overrides', + 'C:\\Python312\\Lib\\site-packages\\numpy\\testing\\overrides.py', + 'PYMODULE'), + ('numpy.typing', + 'C:\\Python312\\Lib\\site-packages\\numpy\\typing\\__init__.py', + 'PYMODULE'), + ('numpy.version', + 'C:\\Python312\\Lib\\site-packages\\numpy\\version.py', + 'PYMODULE'), + ('opcode', 'C:\\Python312\\Lib\\opcode.py', 'PYMODULE'), + ('pathlib', 'C:\\Python312\\Lib\\pathlib.py', 'PYMODULE'), + ('pdb', 'C:\\Python312\\Lib\\pdb.py', 'PYMODULE'), + ('pickle', 'C:\\Python312\\Lib\\pickle.py', 'PYMODULE'), + ('pkgutil', 'C:\\Python312\\Lib\\pkgutil.py', 'PYMODULE'), + ('platform', 'C:\\Python312\\Lib\\platform.py', 'PYMODULE'), + ('pprint', 'C:\\Python312\\Lib\\pprint.py', 'PYMODULE'), + ('py_compile', 'C:\\Python312\\Lib\\py_compile.py', 'PYMODULE'), + ('pyaudio', + 'C:\\Python312\\Lib\\site-packages\\pyaudio\\__init__.py', + 'PYMODULE'), + ('pydoc', 'C:\\Python312\\Lib\\pydoc.py', 'PYMODULE'), + ('pydoc_data', 'C:\\Python312\\Lib\\pydoc_data\\__init__.py', 'PYMODULE'), + ('pydoc_data.topics', + 'C:\\Python312\\Lib\\pydoc_data\\topics.py', + 'PYMODULE'), + ('queue', 'C:\\Python312\\Lib\\queue.py', 'PYMODULE'), + ('quopri', 'C:\\Python312\\Lib\\quopri.py', 'PYMODULE'), + ('random', 'C:\\Python312\\Lib\\random.py', 'PYMODULE'), + ('runpy', 'C:\\Python312\\Lib\\runpy.py', 'PYMODULE'), + ('secrets', 'C:\\Python312\\Lib\\secrets.py', 'PYMODULE'), + ('selectors', 'C:\\Python312\\Lib\\selectors.py', 'PYMODULE'), + ('shlex', 'C:\\Python312\\Lib\\shlex.py', 'PYMODULE'), + ('shutil', 'C:\\Python312\\Lib\\shutil.py', 'PYMODULE'), + ('signal', 'C:\\Python312\\Lib\\signal.py', 'PYMODULE'), + ('socket', 'C:\\Python312\\Lib\\socket.py', 'PYMODULE'), + ('socketserver', 'C:\\Python312\\Lib\\socketserver.py', 'PYMODULE'), + ('ssl', 'C:\\Python312\\Lib\\ssl.py', 'PYMODULE'), + ('statistics', 'C:\\Python312\\Lib\\statistics.py', 'PYMODULE'), + ('string', 'C:\\Python312\\Lib\\string.py', 'PYMODULE'), + ('stringprep', 'C:\\Python312\\Lib\\stringprep.py', 'PYMODULE'), + ('subprocess', 'C:\\Python312\\Lib\\subprocess.py', 'PYMODULE'), + ('sysconfig', 'C:\\Python312\\Lib\\sysconfig.py', 'PYMODULE'), + ('tarfile', 'C:\\Python312\\Lib\\tarfile.py', 'PYMODULE'), + ('tempfile', 'C:\\Python312\\Lib\\tempfile.py', 'PYMODULE'), + ('textwrap', 'C:\\Python312\\Lib\\textwrap.py', 'PYMODULE'), + ('threading', 'C:\\Python312\\Lib\\threading.py', 'PYMODULE'), + ('token', 'C:\\Python312\\Lib\\token.py', 'PYMODULE'), + ('tokenize', 'C:\\Python312\\Lib\\tokenize.py', 'PYMODULE'), + ('tracemalloc', 'C:\\Python312\\Lib\\tracemalloc.py', 'PYMODULE'), + ('tty', 'C:\\Python312\\Lib\\tty.py', 'PYMODULE'), + ('typing', 'C:\\Python312\\Lib\\typing.py', 'PYMODULE'), + ('unittest', 'C:\\Python312\\Lib\\unittest\\__init__.py', 'PYMODULE'), + ('unittest._log', 'C:\\Python312\\Lib\\unittest\\_log.py', 'PYMODULE'), + ('unittest.async_case', + 'C:\\Python312\\Lib\\unittest\\async_case.py', + 'PYMODULE'), + ('unittest.case', 'C:\\Python312\\Lib\\unittest\\case.py', 'PYMODULE'), + ('unittest.loader', 'C:\\Python312\\Lib\\unittest\\loader.py', 'PYMODULE'), + ('unittest.main', 'C:\\Python312\\Lib\\unittest\\main.py', 'PYMODULE'), + ('unittest.result', 'C:\\Python312\\Lib\\unittest\\result.py', 'PYMODULE'), + ('unittest.runner', 'C:\\Python312\\Lib\\unittest\\runner.py', 'PYMODULE'), + ('unittest.signals', 'C:\\Python312\\Lib\\unittest\\signals.py', 'PYMODULE'), + ('unittest.suite', 'C:\\Python312\\Lib\\unittest\\suite.py', 'PYMODULE'), + ('unittest.util', 'C:\\Python312\\Lib\\unittest\\util.py', 'PYMODULE'), + ('urllib', 'C:\\Python312\\Lib\\urllib\\__init__.py', 'PYMODULE'), + ('urllib.error', 'C:\\Python312\\Lib\\urllib\\error.py', 'PYMODULE'), + ('urllib.parse', 'C:\\Python312\\Lib\\urllib\\parse.py', 'PYMODULE'), + ('urllib.request', 'C:\\Python312\\Lib\\urllib\\request.py', 'PYMODULE'), + ('urllib.response', 'C:\\Python312\\Lib\\urllib\\response.py', 'PYMODULE'), + ('webbrowser', 'C:\\Python312\\Lib\\webbrowser.py', 'PYMODULE'), + ('xml', 'C:\\Python312\\Lib\\xml\\__init__.py', 'PYMODULE'), + ('xml.parsers', 'C:\\Python312\\Lib\\xml\\parsers\\__init__.py', 'PYMODULE'), + ('xml.parsers.expat', + 'C:\\Python312\\Lib\\xml\\parsers\\expat.py', + 'PYMODULE'), + ('xml.sax', 'C:\\Python312\\Lib\\xml\\sax\\__init__.py', 'PYMODULE'), + ('xml.sax._exceptions', + 'C:\\Python312\\Lib\\xml\\sax\\_exceptions.py', + 'PYMODULE'), + ('xml.sax.expatreader', + 'C:\\Python312\\Lib\\xml\\sax\\expatreader.py', + 'PYMODULE'), + ('xml.sax.handler', 'C:\\Python312\\Lib\\xml\\sax\\handler.py', 'PYMODULE'), + ('xml.sax.saxutils', 'C:\\Python312\\Lib\\xml\\sax\\saxutils.py', 'PYMODULE'), + ('xml.sax.xmlreader', + 'C:\\Python312\\Lib\\xml\\sax\\xmlreader.py', + 'PYMODULE'), + ('xmlrpc', 'C:\\Python312\\Lib\\xmlrpc\\__init__.py', 'PYMODULE'), + ('xmlrpc.client', 'C:\\Python312\\Lib\\xmlrpc\\client.py', 'PYMODULE'), + ('yaml', 'C:\\Python312\\Lib\\site-packages\\yaml\\__init__.py', 'PYMODULE'), + ('yaml.composer', + 'C:\\Python312\\Lib\\site-packages\\yaml\\composer.py', + 'PYMODULE'), + ('yaml.constructor', + 'C:\\Python312\\Lib\\site-packages\\yaml\\constructor.py', + 'PYMODULE'), + ('yaml.cyaml', + 'C:\\Python312\\Lib\\site-packages\\yaml\\cyaml.py', + 'PYMODULE'), + ('yaml.dumper', + 'C:\\Python312\\Lib\\site-packages\\yaml\\dumper.py', + 'PYMODULE'), + ('yaml.emitter', + 'C:\\Python312\\Lib\\site-packages\\yaml\\emitter.py', + 'PYMODULE'), + ('yaml.error', + 'C:\\Python312\\Lib\\site-packages\\yaml\\error.py', + 'PYMODULE'), + ('yaml.events', + 'C:\\Python312\\Lib\\site-packages\\yaml\\events.py', + 'PYMODULE'), + ('yaml.loader', + 'C:\\Python312\\Lib\\site-packages\\yaml\\loader.py', + 'PYMODULE'), + ('yaml.nodes', + 'C:\\Python312\\Lib\\site-packages\\yaml\\nodes.py', + 'PYMODULE'), + ('yaml.parser', + 'C:\\Python312\\Lib\\site-packages\\yaml\\parser.py', + 'PYMODULE'), + ('yaml.reader', + 'C:\\Python312\\Lib\\site-packages\\yaml\\reader.py', + 'PYMODULE'), + ('yaml.representer', + 'C:\\Python312\\Lib\\site-packages\\yaml\\representer.py', + 'PYMODULE'), + ('yaml.resolver', + 'C:\\Python312\\Lib\\site-packages\\yaml\\resolver.py', + 'PYMODULE'), + ('yaml.scanner', + 'C:\\Python312\\Lib\\site-packages\\yaml\\scanner.py', + 'PYMODULE'), + ('yaml.serializer', + 'C:\\Python312\\Lib\\site-packages\\yaml\\serializer.py', + 'PYMODULE'), + ('yaml.tokens', + 'C:\\Python312\\Lib\\site-packages\\yaml\\tokens.py', + 'PYMODULE'), + ('zipfile', 'C:\\Python312\\Lib\\zipfile\\__init__.py', 'PYMODULE'), + ('zipfile._path', + 'C:\\Python312\\Lib\\zipfile\\_path\\__init__.py', + 'PYMODULE'), + ('zipfile._path.glob', + 'C:\\Python312\\Lib\\zipfile\\_path\\glob.py', + 'PYMODULE'), + ('zipimport', 'C:\\Python312\\Lib\\zipimport.py', 'PYMODULE')]) diff --git a/build/Sonic/Sonic.pkg b/build/Sonic/Sonic.pkg new file mode 100644 index 0000000..47e0de1 Binary files /dev/null and b/build/Sonic/Sonic.pkg differ diff --git a/build/Sonic/base_library.zip b/build/Sonic/base_library.zip new file mode 100644 index 0000000..4701c8c Binary files /dev/null and b/build/Sonic/base_library.zip differ diff --git a/build/Sonic/localpycs/pyimod01_archive.pyc b/build/Sonic/localpycs/pyimod01_archive.pyc new file mode 100644 index 0000000..b68973d Binary files /dev/null and b/build/Sonic/localpycs/pyimod01_archive.pyc differ diff --git a/build/Sonic/localpycs/pyimod02_importers.pyc b/build/Sonic/localpycs/pyimod02_importers.pyc new file mode 100644 index 0000000..2633c54 Binary files /dev/null and b/build/Sonic/localpycs/pyimod02_importers.pyc differ diff --git a/build/Sonic/localpycs/pyimod03_ctypes.pyc b/build/Sonic/localpycs/pyimod03_ctypes.pyc new file mode 100644 index 0000000..8f3b33d Binary files /dev/null and b/build/Sonic/localpycs/pyimod03_ctypes.pyc differ diff --git a/build/Sonic/localpycs/pyimod04_pywin32.pyc b/build/Sonic/localpycs/pyimod04_pywin32.pyc new file mode 100644 index 0000000..38e97ee Binary files /dev/null and b/build/Sonic/localpycs/pyimod04_pywin32.pyc differ diff --git a/build/Sonic/localpycs/struct.pyc b/build/Sonic/localpycs/struct.pyc new file mode 100644 index 0000000..cb58c97 Binary files /dev/null and b/build/Sonic/localpycs/struct.pyc differ diff --git a/build/Sonic/warn-Sonic.txt b/build/Sonic/warn-Sonic.txt new file mode 100644 index 0000000..0e05ec4 --- /dev/null +++ b/build/Sonic/warn-Sonic.txt @@ -0,0 +1,152 @@ + +This file lists modules PyInstaller was not able to find. This does not +necessarily mean this module is required for running your program. Python and +Python 3rd-party packages include a lot of conditional or optional modules. For +example the module 'ntpath' only exists on Windows, whereas the module +'posixpath' only exists on Posix systems. + +Types if import: +* top-level: imported at the top-level - look at these first +* conditional: imported within an if-statement +* delayed: imported within a function +* optional: imported within a try-except-statement + +IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for + tracking down the missing module yourself. Thanks! + +missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level) +excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level) +missing module named pwd - imported by shutil (delayed, optional), tarfile (optional), pathlib (delayed, optional), subprocess (delayed, conditional, optional), posixpath (delayed, conditional, optional), http.server (delayed, optional), netrc (delayed, conditional), getpass (delayed) +missing module named grp - imported by shutil (delayed, optional), tarfile (optional), pathlib (delayed, optional), subprocess (delayed, conditional, optional) +missing module named posix - imported by shutil (conditional), importlib._bootstrap_external (conditional), os (conditional, optional), posixpath (optional) +missing module named resource - imported by posix (top-level) +missing module named _scproxy - imported by urllib.request (conditional) +missing module named termios - imported by tty (top-level), getpass (optional) +missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level) +missing module named multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.connection (top-level) +missing module named _posixshmem - imported by multiprocessing.resource_tracker (conditional), multiprocessing.shared_memory (conditional) +missing module named _posixsubprocess - imported by subprocess (conditional), multiprocessing.util (delayed) +missing module named multiprocessing.get_context - imported by multiprocessing (top-level), multiprocessing.pool (top-level), multiprocessing.managers (top-level), multiprocessing.sharedctypes (top-level) +missing module named multiprocessing.TimeoutError - imported by multiprocessing (top-level), multiprocessing.pool (top-level) +missing module named fcntl - imported by subprocess (optional) +missing module named multiprocessing.set_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level) +missing module named multiprocessing.get_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level) +missing module named pyimod02_importers - imported by C:\Python312\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed) +missing module named _dummy_thread - imported by numpy.core.arrayprint (optional) +missing module named psutil - imported by numpy.testing._private.utils (delayed, optional) +missing module named readline - imported by cmd (delayed, conditional, optional), code (delayed, conditional, optional), pdb (delayed, optional) +missing module named numpy.core.result_type - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) +missing module named numpy.core.float_ - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) +missing module named numpy.core.number - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) +missing module named numpy.core.object_ - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (delayed) +missing module named numpy.core.max - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) +missing module named numpy.core.all - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (delayed) +missing module named numpy.core.errstate - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (delayed) +missing module named numpy.core.bool_ - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) +missing module named numpy.core.inf - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) +missing module named numpy.core.isnan - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (delayed) +missing module named numpy.core.array2string - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) +missing module named numpy.lib.imag - imported by numpy.lib (delayed), numpy.testing._private.utils (delayed) +missing module named numpy.lib.real - imported by numpy.lib (delayed), numpy.testing._private.utils (delayed) +missing module named numpy.lib.iscomplexobj - imported by numpy.lib (delayed), numpy.testing._private.utils (delayed) +missing module named numpy.core.signbit - imported by numpy.core (delayed), numpy.testing._private.utils (delayed) +missing module named numpy.core.isscalar - imported by numpy.core (delayed), numpy.testing._private.utils (delayed), numpy.lib.polynomial (top-level) +missing module named numpy.core.array - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (top-level), numpy.lib.polynomial (top-level) +missing module named numpy.core.isnat - imported by numpy.core (top-level), numpy.testing._private.utils (top-level) +missing module named numpy.core.ndarray - imported by numpy.core (top-level), numpy.testing._private.utils (top-level), numpy.lib.utils (top-level) +missing module named numpy.core.array_repr - imported by numpy.core (top-level), numpy.testing._private.utils (top-level) +missing module named numpy.core.arange - imported by numpy.core (top-level), numpy.testing._private.utils (top-level), numpy.fft.helper (top-level) +missing module named numpy.core.empty - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (top-level), numpy.fft.helper (top-level) +missing module named numpy.core.float32 - imported by numpy.core (top-level), numpy.testing._private.utils (top-level) +missing module named numpy.core.intp - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.testing._private.utils (top-level) +missing module named vms_lib - imported by platform (delayed, optional) +missing module named 'java.lang' - imported by platform (delayed, optional) +missing module named java - imported by platform (delayed) +missing module named _winreg - imported by platform (delayed, optional) +missing module named asyncio.DefaultEventLoopPolicy - imported by asyncio (delayed, conditional), asyncio.events (delayed, conditional) +missing module named numpy.core.linspace - imported by numpy.core (top-level), numpy.lib.index_tricks (top-level) +missing module named numpy.core.iinfo - imported by numpy.core (top-level), numpy.lib.twodim_base (top-level) +missing module named numpy.core.transpose - imported by numpy.core (top-level), numpy.lib.function_base (top-level) +missing module named numpy.core.asarray - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.lib.utils (top-level), numpy.fft._pocketfft (top-level), numpy.fft.helper (top-level) +missing module named numpy.core.integer - imported by numpy.core (top-level), numpy.fft.helper (top-level) +missing module named numpy.core.sqrt - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.fft._pocketfft (top-level) +missing module named numpy.core.conjugate - imported by numpy.core (top-level), numpy.fft._pocketfft (top-level) +missing module named numpy.core.swapaxes - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.fft._pocketfft (top-level) +missing module named numpy.core.zeros - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.fft._pocketfft (top-level) +missing module named numpy._typing._ufunc - imported by numpy._typing (conditional) +missing module named numpy.core.reciprocal - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.sort - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.argsort - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.sign - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.count_nonzero - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.divide - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.matmul - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.asanyarray - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.atleast_2d - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.prod - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.amax - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.amin - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.moveaxis - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.geterrobj - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.finfo - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.lib.polynomial (top-level) +missing module named numpy.core.isfinite - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.sum - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.multiply - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.add - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.dot - imported by numpy.core (top-level), numpy.linalg.linalg (top-level), numpy.lib.polynomial (top-level) +missing module named numpy.core.Inf - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.newaxis - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.complexfloating - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.inexact - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.cdouble - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.csingle - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.double - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.single - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.intc - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named numpy.core.empty_like - imported by numpy.core (top-level), numpy.linalg.linalg (top-level) +missing module named threadpoolctl - imported by numpy.lib.utils (delayed, optional) +missing module named numpy.core.ufunc - imported by numpy.core (top-level), numpy.lib.utils (top-level) +missing module named numpy.core.ones - imported by numpy.core (top-level), numpy.lib.polynomial (top-level) +missing module named numpy.core.hstack - imported by numpy.core (top-level), numpy.lib.polynomial (top-level) +missing module named numpy.core.atleast_1d - imported by numpy.core (top-level), numpy.lib.polynomial (top-level) +missing module named numpy.core.atleast_3d - imported by numpy.core (top-level), numpy.lib.shape_base (top-level) +missing module named numpy.core.vstack - imported by numpy.core (top-level), numpy.lib.shape_base (top-level) +missing module named pickle5 - imported by numpy.compat.py3k (optional) +missing module named numpy.eye - imported by numpy (delayed), numpy.core.numeric (delayed) +missing module named numpy.recarray - imported by numpy (top-level), numpy.lib.recfunctions (top-level), numpy.ma.mrecords (top-level) +missing module named numpy.expand_dims - imported by numpy (top-level), numpy.ma.core (top-level) +missing module named numpy.array - imported by numpy (top-level), numpy.ma.core (top-level), numpy.ma.extras (top-level), numpy.ma.mrecords (top-level) +missing module named numpy.iscomplexobj - imported by numpy (top-level), numpy.ma.core (top-level) +missing module named numpy.amin - imported by numpy (top-level), numpy.ma.core (top-level) +missing module named numpy.amax - imported by numpy (top-level), numpy.ma.core (top-level) +missing module named numpy.isinf - imported by numpy (top-level), numpy.testing._private.utils (top-level) +missing module named numpy.isnan - imported by numpy (top-level), numpy.testing._private.utils (top-level) +missing module named numpy.isfinite - imported by numpy (top-level), numpy.testing._private.utils (top-level) +missing module named numpy.float64 - imported by numpy (top-level), numpy.array_api._typing (top-level) +missing module named numpy.float32 - imported by numpy (top-level), numpy.array_api._typing (top-level) +missing module named numpy.uint64 - imported by numpy (top-level), numpy.array_api._typing (top-level) +missing module named numpy.uint32 - imported by numpy (top-level), numpy.array_api._typing (top-level) +missing module named numpy.uint16 - imported by numpy (top-level), numpy.array_api._typing (top-level) +missing module named numpy.uint8 - imported by numpy (top-level), numpy.array_api._typing (top-level) +missing module named numpy.int64 - imported by numpy (top-level), numpy.array_api._typing (top-level) +missing module named numpy.int32 - imported by numpy (top-level), numpy.array_api._typing (top-level) +missing module named numpy.int16 - imported by numpy (top-level), numpy.array_api._typing (top-level) +missing module named numpy.int8 - imported by numpy (top-level), numpy.array_api._typing (top-level) +missing module named numpy.bytes_ - imported by numpy (top-level), numpy._typing._array_like (top-level) +missing module named numpy.str_ - imported by numpy (top-level), numpy._typing._array_like (top-level) +missing module named numpy.void - imported by numpy (top-level), numpy._typing._array_like (top-level) +missing module named numpy.object_ - imported by numpy (top-level), numpy._typing._array_like (top-level) +missing module named numpy.datetime64 - imported by numpy (top-level), numpy._typing._array_like (top-level) +missing module named numpy.timedelta64 - imported by numpy (top-level), numpy._typing._array_like (top-level) +missing module named numpy.number - imported by numpy (top-level), numpy._typing._array_like (top-level) +missing module named numpy.complexfloating - imported by numpy (top-level), numpy._typing._array_like (top-level) +missing module named numpy.floating - imported by numpy (top-level), numpy._typing._array_like (top-level) +missing module named numpy.integer - imported by numpy (top-level), numpy._typing._array_like (top-level), numpy.ctypeslib (top-level) +missing module named numpy.unsignedinteger - imported by numpy (top-level), numpy._typing._array_like (top-level) +missing module named numpy.bool_ - imported by numpy (top-level), numpy._typing._array_like (top-level), numpy.ma.core (top-level), numpy.ma.mrecords (top-level) +missing module named numpy.generic - imported by numpy (top-level), numpy._typing._array_like (top-level) +missing module named numpy.dtype - imported by numpy (top-level), numpy._typing._array_like (top-level), numpy.array_api._typing (top-level), numpy.ma.mrecords (top-level), numpy.ctypeslib (top-level) +missing module named numpy.ndarray - imported by numpy (top-level), numpy._typing._array_like (top-level), numpy.ma.core (top-level), numpy.ma.extras (top-level), numpy.lib.recfunctions (top-level), numpy.ma.mrecords (top-level), numpy.ctypeslib (top-level) +missing module named numpy.ufunc - imported by numpy (top-level), numpy._typing (top-level), numpy.testing.overrides (top-level) +missing module named numpy.histogramdd - imported by numpy (delayed), numpy.lib.twodim_base (delayed) +missing module named numpy._distributor_init_local - imported by numpy (optional), numpy._distributor_init (optional) diff --git a/build/Sonic/xref-Sonic.html b/build/Sonic/xref-Sonic.html new file mode 100644 index 0000000..7460581 --- /dev/null +++ b/build/Sonic/xref-Sonic.html @@ -0,0 +1,17297 @@ + + + + + modulegraph cross reference for Sonic.pyw, pyi_rth_inspect.py, pyi_rth_multiprocessing.py, pyi_rth_pkgutil.py, pyi_rth_pyqt5.py + + + +

modulegraph cross reference for Sonic.pyw, pyi_rth_inspect.py, pyi_rth_multiprocessing.py, pyi_rth_pkgutil.py, pyi_rth_pyqt5.py

+ +
+ + Sonic.pyw +Script
+imports: + PyQt5.QtCore + • PyQt5.QtGui + • PyQt5.QtWidgets + • _collections_abc + • _weakrefset + • abc + • codecs + • collections + • collections.abc + • copyreg + • encodings + • encodings.aliases + • encodings.ascii + • encodings.base64_codec + • encodings.big5 + • encodings.big5hkscs + • encodings.bz2_codec + • encodings.charmap + • encodings.cp037 + • encodings.cp1006 + • encodings.cp1026 + • encodings.cp1125 + • encodings.cp1140 + • encodings.cp1250 + • encodings.cp1251 + • encodings.cp1252 + • encodings.cp1253 + • encodings.cp1254 + • encodings.cp1255 + • encodings.cp1256 + • encodings.cp1257 + • encodings.cp1258 + • encodings.cp273 + • encodings.cp424 + • encodings.cp437 + • encodings.cp500 + • encodings.cp720 + • encodings.cp737 + • encodings.cp775 + • encodings.cp850 + • encodings.cp852 + • encodings.cp855 + • encodings.cp856 + • encodings.cp857 + • encodings.cp858 + • encodings.cp860 + • encodings.cp861 + • encodings.cp862 + • encodings.cp863 + • encodings.cp864 + • encodings.cp865 + • encodings.cp866 + • encodings.cp869 + • encodings.cp874 + • encodings.cp875 + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hex_codec + • encodings.hp_roman8 + • encodings.hz + • encodings.idna + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.iso8859_1 + • encodings.iso8859_10 + • encodings.iso8859_11 + • encodings.iso8859_13 + • encodings.iso8859_14 + • encodings.iso8859_15 + • encodings.iso8859_16 + • encodings.iso8859_2 + • encodings.iso8859_3 + • encodings.iso8859_4 + • encodings.iso8859_5 + • encodings.iso8859_6 + • encodings.iso8859_7 + • encodings.iso8859_8 + • encodings.iso8859_9 + • encodings.johab + • encodings.koi8_r + • encodings.koi8_t + • encodings.koi8_u + • encodings.kz1048 + • encodings.latin_1 + • encodings.mac_arabic + • encodings.mac_croatian + • encodings.mac_cyrillic + • encodings.mac_farsi + • encodings.mac_greek + • encodings.mac_iceland + • encodings.mac_latin2 + • encodings.mac_roman + • encodings.mac_romanian + • encodings.mac_turkish + • encodings.mbcs + • encodings.oem + • encodings.palmos + • encodings.ptcp154 + • encodings.punycode + • encodings.quopri_codec + • encodings.raw_unicode_escape + • encodings.rot_13 + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + • encodings.tis_620 + • encodings.undefined + • encodings.unicode_escape + • encodings.utf_16 + • encodings.utf_16_be + • encodings.utf_16_le + • encodings.utf_32 + • encodings.utf_32_be + • encodings.utf_32_le + • encodings.utf_7 + • encodings.utf_8 + • encodings.utf_8_sig + • encodings.uu_codec + • encodings.zlib_codec + • enum + • functools + • genericpath + • heapq + • io + • keyword + • linecache + • locale + • ntpath + • numpy + • operator + • os + • posixpath + • pyaudio + • pyi_rth_inspect.py + • pyi_rth_multiprocessing.py + • pyi_rth_pkgutil.py + • pyi_rth_pyqt5.py + • re + • re._casefix + • re._compiler + • re._constants + • re._parser + • reprlib + • sre_compile + • sre_constants + • sre_parse + • stat + • sys + • traceback + • types + • warnings + • weakref + +
+ +
+ +
+ + pyi_rth_inspect.py +Script
+imports: + inspect + • os + • sys + +
+
+imported by: + Sonic.pyw + +
+ +
+ +
+ + pyi_rth_multiprocessing.py +Script
+imports: + multiprocessing + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + • multiprocessing.popen_spawn_win32 + • multiprocessing.spawn + • os + • subprocess + • sys + • threading + +
+
+imported by: + Sonic.pyw + +
+ +
+ +
+ + pyi_rth_pkgutil.py +Script
+imports: + _pyi_rth_utils + • pathlib + • pkgutil + • pyimod02_importers + • sys + +
+
+imported by: + Sonic.pyw + +
+ +
+ +
+ + pyi_rth_pyqt5.py +Script
+imports: + _pyi_rth_utils + • _pyi_rth_utils.qt + • os + • sys + +
+
+imported by: + Sonic.pyw + +
+ +
+ +
+ + 'java.lang' +MissingModule
+imported by: + platform + +
+ +
+ +
+ + PyQt5 +Package
+imports: + PyQt5.sip + • os + • pkgutil + • sys + +
+
+imported by: + PyQt5.QtCore + • PyQt5.QtGui + • PyQt5.QtWidgets + • PyQt5.sip + +
+ +
+ +
+ + PyQt5.QtCore C:\Python312\Lib\site-packages\PyQt5\QtCore.pyd
+imports: + PyQt5 + +
+
+imported by: + PyQt5.QtGui + • PyQt5.QtWidgets + • Sonic.pyw + +
+ +
+ +
+ + PyQt5.QtGui C:\Python312\Lib\site-packages\PyQt5\QtGui.pyd
+imports: + PyQt5 + • PyQt5.QtCore + +
+
+imported by: + PyQt5.QtWidgets + • Sonic.pyw + +
+ +
+ +
+ + PyQt5.QtWidgets C:\Python312\Lib\site-packages\PyQt5\QtWidgets.pyd
+imports: + PyQt5 + • PyQt5.QtCore + • PyQt5.QtGui + +
+
+imported by: + Sonic.pyw + +
+ +
+ +
+ + PyQt5.sip C:\Python312\Lib\site-packages\PyQt5\sip.cp312-win_amd64.pyd
+imports: + PyQt5 + +
+
+imported by: + PyQt5 + +
+ +
+ +
+ + __future__ +SourceModule
+imported by: + codeop + • doctest + • numpy._typing + • numpy._typing._array_like + • numpy._typing._nested_sequence + • numpy.array_api._array_object + • numpy.array_api._creation_functions + • numpy.array_api._data_type_functions + • numpy.array_api._elementwise_functions + • numpy.array_api._indexing_functions + • numpy.array_api._manipulation_functions + • numpy.array_api._searching_functions + • numpy.array_api._set_functions + • numpy.array_api._sorting_functions + • numpy.array_api._statistical_functions + • numpy.array_api._typing + • numpy.array_api._utility_functions + • numpy.array_api.linalg + • pydoc + +
+ +
+ +
+ + _abc (builtin module)
+imported by: + abc + +
+ +
+ +
+ + _aix_support +SourceModule
+imports: + contextlib + • os + • subprocess + • sys + • sysconfig + +
+
+imported by: + sysconfig + +
+ +
+ +
+ + _ast (builtin module)
+imported by: + ast + +
+ +
+ +
+ + _asyncio C:\Python312\DLLs\_asyncio.pyd
+imported by: + asyncio.events + • asyncio.futures + • asyncio.tasks + +
+ +
+ +
+ + _bisect (builtin module)
+imported by: + bisect + +
+ +
+ +
+ + _blake2 (builtin module)
+imported by: + hashlib + +
+ +
+ +
+ + _bz2 C:\Python312\DLLs\_bz2.pyd
+imported by: + bz2 + +
+ +
+ +
+ + _codecs (builtin module)
+imported by: + codecs + +
+ +
+ +
+ + _codecs_cn (builtin module)
+imported by: + encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hz + +
+ +
+ +
+ + _codecs_hk (builtin module)
+imported by: + encodings.big5hkscs + +
+ +
+ +
+ + _codecs_iso2022 (builtin module)
+imported by: + encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + +
+ +
+ +
+ + _codecs_jp (builtin module)
+imported by: + encodings.cp932 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + +
+ +
+ +
+ + _codecs_kr (builtin module)
+imported by: + encodings.cp949 + • encodings.euc_kr + • encodings.johab + +
+ +
+ +
+ + _codecs_tw (builtin module)
+imported by: + encodings.big5 + • encodings.cp950 + +
+ +
+ +
+ + _collections (builtin module)
+imported by: + collections + • threading + +
+ +
+ +
+ + _collections_abc +SourceModule
+imports: + abc + • sys + • warnings + +
+
+imported by: + Sonic.pyw + • collections + • collections.abc + • contextlib + • locale + • os + • pathlib + • random + • types + • weakref + +
+ +
+ +
+ + _compat_pickle +SourceModule
+imported by: + _pickle + • pickle + +
+ +
+ +
+ + _compression +SourceModule
+imports: + io + • sys + +
+
+imported by: + bz2 + • gzip + • lzma + +
+ +
+ +
+ + _contextvars (builtin module)
+imported by: + contextvars + +
+ +
+ +
+ + _csv (builtin module)
+imported by: + csv + +
+ +
+ +
+ + _ctypes C:\Python312\DLLs\_ctypes.pyd
+imported by: + ctypes + • numpy.core._dtype_ctypes + +
+ +
+ +
+ + _datetime (builtin module)
+imports: + _strptime + • time + +
+
+imported by: + datetime + +
+ +
+ +
+ + _decimal C:\Python312\DLLs\_decimal.pyd
+imported by: + decimal + +
+ +
+ +
+ + _dummy_thread +MissingModule
+imported by: + numpy.core.arrayprint + +
+ +
+ +
+ + _frozen_importlib +ExcludedModule
+imported by: + importlib + • importlib.abc + • zipimport + +
+ +
+ +
+ + _frozen_importlib_external +MissingModule
+imported by: + importlib + • importlib._bootstrap + • importlib.abc + • zipimport + +
+ +
+ +
+ + _functools (builtin module)
+imported by: + functools + +
+ +
+ +
+ + _hashlib C:\Python312\DLLs\_hashlib.pyd
+imported by: + hashlib + • hmac + +
+ +
+ +
+ + _heapq (builtin module)
+imported by: + heapq + +
+ +
+ +
+ + _imp (builtin module)
+imported by: + importlib + • importlib._bootstrap_external + • importlib.util + • sysconfig + • zipimport + +
+ +
+ +
+ + _io (builtin module)
+imported by: + importlib._bootstrap_external + • io + • zipimport + +
+ +
+ +
+ + _json (builtin module)
+imports: + json.decoder + +
+
+imported by: + json.decoder + • json.encoder + • json.scanner + +
+ +
+ +
+ + _locale (builtin module)
+imported by: + locale + +
+ +
+ +
+ + _lzma C:\Python312\DLLs\_lzma.pyd
+imported by: + lzma + +
+ +
+ +
+ + _md5 (builtin module)
+imported by: + hashlib + +
+ +
+ +
+ + _multibytecodec (builtin module)
+imported by: + encodings.big5 + • encodings.big5hkscs + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hz + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.johab + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + +
+ +
+ +
+ + _multiprocessing C:\Python312\DLLs\_multiprocessing.pyd
+imported by: + multiprocessing.connection + • multiprocessing.queues + • multiprocessing.resource_tracker + • multiprocessing.synchronize + +
+ +
+ +
+ + _opcode (builtin module)
+imported by: + opcode + +
+ +
+ +
+ + _operator (builtin module)
+imported by: + hmac + • operator + +
+ +
+ +
+ + _overlapped C:\Python312\DLLs\_overlapped.pyd
+imported by: + asyncio.windows_events + +
+ +
+ +
+ + _pickle (builtin module)
+imports: + _compat_pickle + • codecs + • copyreg + +
+
+imported by: + pickle + +
+ +
+ +
+ + _posixshmem +MissingModule
+imported by: + multiprocessing.resource_tracker + • multiprocessing.shared_memory + +
+ +
+ +
+ + _posixsubprocess +MissingModule
+imports: + gc + +
+
+imported by: + multiprocessing.util + • subprocess + +
+ +
+ +
+ + _py_abc +SourceModule
+imports: + _weakrefset + +
+
+imported by: + abc + +
+ +
+ +
+ + _pydatetime +SourceModule
+imports: + _strptime + • math + • operator + • sys + • time + • warnings + +
+
+imported by: + datetime + +
+ +
+ +
+ + _pydecimal +SourceModule
+imports: + collections + • contextvars + • itertools + • locale + • math + • numbers + • re + • sys + +
+
+imported by: + decimal + +
+ +
+ +
+ + _pyi_rth_utils +Package
+imports: + _pyi_rth_utils.qt + • os + • sys + +
+
+imported by: + _pyi_rth_utils.qt + • pyi_rth_pkgutil.py + • pyi_rth_pyqt5.py + +
+ +
+ +
+ + _pyi_rth_utils.qt +SourceModule
+imports: + _pyi_rth_utils + • atexit + • importlib + • os + +
+
+imported by: + _pyi_rth_utils + • pyi_rth_pyqt5.py + +
+ +
+ +
+ + _queue C:\Python312\DLLs\_queue.pyd
+imported by: + queue + +
+ +
+ +
+ + _random (builtin module)
+imported by: + random + +
+ +
+ +
+ + _scproxy +MissingModule
+imported by: + urllib.request + +
+ +
+ +
+ + _sha1 (builtin module)
+imported by: + hashlib + +
+ +
+ +
+ + _sha2 (builtin module)
+imported by: + hashlib + • random + +
+ +
+ +
+ + _sha3 (builtin module)
+imported by: + hashlib + +
+ +
+ +
+ + _signal (builtin module)
+imported by: + signal + +
+ +
+ +
+ + _socket C:\Python312\DLLs\_socket.pyd
+imported by: + socket + +
+ +
+ +
+ + _sre (builtin module)
+imports: + copy + • re + +
+
+imported by: + re + • re._compiler + • re._constants + +
+ +
+ +
+ + _ssl C:\Python312\DLLs\_ssl.pyd
+imports: + socket + +
+
+imported by: + ssl + +
+ +
+ +
+ + _stat (builtin module)
+imported by: + stat + +
+ +
+ +
+ + _statistics (builtin module)
+imported by: + statistics + +
+ +
+ +
+ + _string (builtin module)
+imported by: + string + +
+ +
+ +
+ + _strptime +SourceModule
+imports: + _thread + • calendar + • datetime + • locale + • re + • time + +
+
+imported by: + _datetime + • _pydatetime + • time + +
+ +
+ +
+ + _struct (builtin module)
+imported by: + struct + +
+ +
+ +
+ + _thread (builtin module)
+imported by: + _strptime + • dataclasses + • functools + • numpy.core.arrayprint + • reprlib + • tempfile + • threading + +
+ +
+ +
+ + _threading_local +SourceModule
+imports: + contextlib + • threading + • weakref + +
+
+imported by: + threading + +
+ +
+ +
+ + _tokenize (builtin module)
+imported by: + tokenize + +
+ +
+ +
+ + _tracemalloc (builtin module)
+imported by: + tracemalloc + +
+ +
+ +
+ + _typing (builtin module)
+imported by: + typing + +
+ +
+ +
+ + _warnings (builtin module)
+imported by: + importlib._bootstrap_external + • warnings + • zipimport + +
+ +
+ +
+ + _weakref (builtin module)
+imported by: + _weakrefset + • collections + • weakref + • xml.sax.expatreader + +
+ +
+ +
+ + _weakrefset +SourceModule
+imports: + _weakref + • types + +
+
+imported by: + Sonic.pyw + • _py_abc + • multiprocessing.process + • threading + • weakref + +
+ +
+ +
+ + _winapi (builtin module)
+imported by: + asyncio.windows_events + • asyncio.windows_utils + • encodings + • mimetypes + • multiprocessing.connection + • multiprocessing.heap + • multiprocessing.popen_spawn_win32 + • multiprocessing.reduction + • multiprocessing.shared_memory + • multiprocessing.spawn + • ntpath + • shutil + • subprocess + +
+ +
+ +
+ + _winreg +MissingModule
+imported by: + platform + +
+ +
+ +
+ + _wmi C:\Python312\DLLs\_wmi.pyd
+imported by: + platform + +
+ +
+ +
+ + abc +SourceModule
+imports: + _abc + • _py_abc + +
+
+imported by: + Sonic.pyw + • _collections_abc + • contextlib + • dataclasses + • email._policybase + • functools + • importlib._abc + • importlib.abc + • importlib.metadata + • importlib.resources.abc + • inspect + • io + • multiprocessing.reduction + • numbers + • numpy.polynomial._polybase + • os + • selectors + • typing + +
+ +
+ +
+ + argparse +SourceModule
+imports: + copy + • gettext + • os + • re + • shutil + • sys + • textwrap + • warnings + +
+
+imported by: + ast + • calendar + • code + • dis + • doctest + • gzip + • http.server + • inspect + • py_compile + • tarfile + • tokenize + • unittest.main + • zipfile + +
+ +
+ +
+ + array (builtin module)
+imported by: + multiprocessing.dummy + • multiprocessing.managers + • multiprocessing.reduction + • socket + +
+ +
+ +
+ + ast +SourceModule
+imports: + _ast + • argparse + • collections + • contextlib + • enum + • inspect + • re + • sys + • warnings + +
+
+imported by: + inspect + • numpy.core._internal + • numpy.lib.utils + • numpy.matrixlib.defmatrix + • traceback + +
+ +
+ +
+ + asyncio +Package
+imports: + asyncio + • asyncio.DefaultEventLoopPolicy + • asyncio.base_events + • asyncio.base_futures + • asyncio.base_subprocess + • asyncio.base_tasks + • asyncio.constants + • asyncio.coroutines + • asyncio.events + • asyncio.exceptions + • asyncio.format_helpers + • asyncio.futures + • asyncio.locks + • asyncio.mixins + • asyncio.proactor_events + • asyncio.protocols + • asyncio.queues + • asyncio.runners + • asyncio.selector_events + • asyncio.sslproto + • asyncio.staggered + • asyncio.streams + • asyncio.subprocess + • asyncio.taskgroups + • asyncio.tasks + • asyncio.threads + • asyncio.timeouts + • asyncio.transports + • asyncio.trsock + • asyncio.unix_events + • asyncio.windows_events + • asyncio.windows_utils + • sys + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.base_futures + • asyncio.base_subprocess + • asyncio.base_tasks + • asyncio.constants + • asyncio.coroutines + • asyncio.events + • asyncio.exceptions + • asyncio.format_helpers + • asyncio.futures + • asyncio.locks + • asyncio.log + • asyncio.mixins + • asyncio.proactor_events + • asyncio.protocols + • asyncio.queues + • asyncio.runners + • asyncio.selector_events + • asyncio.sslproto + • asyncio.staggered + • asyncio.streams + • asyncio.subprocess + • asyncio.taskgroups + • asyncio.tasks + • asyncio.threads + • asyncio.timeouts + • asyncio.transports + • asyncio.trsock + • asyncio.unix_events + • asyncio.windows_events + • asyncio.windows_utils + • unittest.async_case + +
+ +
+ +
+ + asyncio.DefaultEventLoopPolicy +MissingModule
+imported by: + asyncio + • asyncio.events + +
+ +
+ +
+ + asyncio.base_events +SourceModule
+imports: + asyncio + • asyncio.constants + • asyncio.coroutines + • asyncio.events + • asyncio.exceptions + • asyncio.futures + • asyncio.log + • asyncio.protocols + • asyncio.sslproto + • asyncio.staggered + • asyncio.tasks + • asyncio.transports + • asyncio.trsock + • collections + • collections.abc + • concurrent.futures + • errno + • functools + • heapq + • itertools + • os + • socket + • ssl + • stat + • subprocess + • sys + • threading + • time + • traceback + • warnings + • weakref + +
+
+imported by: + asyncio + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.unix_events + +
+ +
+ +
+ + asyncio.base_futures +SourceModule
+imports: + asyncio + • asyncio.format_helpers + • reprlib + +
+
+imported by: + asyncio + • asyncio.base_tasks + • asyncio.futures + +
+ +
+ +
+ + asyncio.base_subprocess +SourceModule
+imports: + asyncio + • asyncio.log + • asyncio.protocols + • asyncio.transports + • collections + • subprocess + • warnings + +
+
+imported by: + asyncio + • asyncio.unix_events + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.base_tasks +SourceModule
+imports: + asyncio + • asyncio.base_futures + • asyncio.coroutines + • linecache + • reprlib + • traceback + +
+
+imported by: + asyncio + • asyncio.tasks + +
+ +
+ +
+ + asyncio.constants +SourceModule
+imports: + asyncio + • enum + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.format_helpers + • asyncio.proactor_events + • asyncio.runners + • asyncio.selector_events + • asyncio.sslproto + • asyncio.unix_events + +
+ +
+ +
+ + asyncio.coroutines +SourceModule
+imports: + asyncio + • collections.abc + • inspect + • os + • sys + • types + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.base_tasks + • asyncio.runners + • asyncio.streams + • asyncio.tasks + • asyncio.unix_events + +
+ +
+ +
+ + asyncio.events +SourceModule
+imports: + _asyncio + • asyncio + • asyncio.DefaultEventLoopPolicy + • asyncio.format_helpers + • contextvars + • os + • signal + • socket + • subprocess + • sys + • threading + • warnings + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.futures + • asyncio.mixins + • asyncio.runners + • asyncio.selector_events + • asyncio.staggered + • asyncio.streams + • asyncio.subprocess + • asyncio.taskgroups + • asyncio.tasks + • asyncio.threads + • asyncio.timeouts + • asyncio.unix_events + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.exceptions +SourceModule
+imports: + asyncio + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.futures + • asyncio.locks + • asyncio.proactor_events + • asyncio.runners + • asyncio.sslproto + • asyncio.staggered + • asyncio.streams + • asyncio.taskgroups + • asyncio.tasks + • asyncio.timeouts + • asyncio.unix_events + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.format_helpers +SourceModule
+imports: + asyncio + • asyncio.constants + • functools + • inspect + • reprlib + • sys + • traceback + +
+
+imported by: + asyncio + • asyncio.base_futures + • asyncio.events + • asyncio.futures + • asyncio.streams + +
+ +
+ +
+ + asyncio.futures +SourceModule
+imports: + _asyncio + • asyncio + • asyncio.base_futures + • asyncio.events + • asyncio.exceptions + • asyncio.format_helpers + • concurrent.futures + • contextvars + • logging + • sys + • types + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.tasks + • asyncio.unix_events + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.locks +SourceModule
+imports: + asyncio + • asyncio.exceptions + • asyncio.mixins + • collections + • enum + +
+
+imported by: + asyncio + • asyncio.queues + • asyncio.staggered + +
+ +
+ +
+ + asyncio.log +SourceModule
+imports: + asyncio + • logging + +
+
+imported by: + asyncio.base_events + • asyncio.base_subprocess + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.sslproto + • asyncio.streams + • asyncio.subprocess + • asyncio.unix_events + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.mixins +SourceModule
+imports: + asyncio + • asyncio.events + • threading + +
+
+imported by: + asyncio + • asyncio.locks + • asyncio.queues + +
+ +
+ +
+ + asyncio.proactor_events +SourceModule
+imports: + asyncio + • asyncio.base_events + • asyncio.constants + • asyncio.exceptions + • asyncio.futures + • asyncio.log + • asyncio.protocols + • asyncio.sslproto + • asyncio.transports + • asyncio.trsock + • collections + • io + • os + • signal + • socket + • threading + • warnings + +
+
+imported by: + asyncio + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.protocols +SourceModule
+imports: + asyncio + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.base_subprocess + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.sslproto + • asyncio.streams + • asyncio.subprocess + +
+ +
+ +
+ + asyncio.queues +SourceModule
+imports: + asyncio + • asyncio.locks + • asyncio.mixins + • collections + • heapq + • types + +
+
+imported by: + asyncio + • asyncio.tasks + +
+ +
+ +
+ + asyncio.runners +SourceModule
+imports: + asyncio + • asyncio.constants + • asyncio.coroutines + • asyncio.events + • asyncio.exceptions + • asyncio.tasks + • contextvars + • enum + • functools + • signal + • threading + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.selector_events +SourceModule
+imports: + asyncio + • asyncio.base_events + • asyncio.constants + • asyncio.events + • asyncio.futures + • asyncio.log + • asyncio.protocols + • asyncio.sslproto + • asyncio.transports + • asyncio.trsock + • collections + • errno + • functools + • itertools + • os + • selectors + • socket + • ssl + • warnings + • weakref + +
+
+imported by: + asyncio + • asyncio.unix_events + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.sslproto +SourceModule
+imports: + asyncio + • asyncio.constants + • asyncio.exceptions + • asyncio.log + • asyncio.protocols + • asyncio.transports + • collections + • enum + • ssl + • warnings + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.proactor_events + • asyncio.selector_events + +
+ +
+ +
+ + asyncio.staggered +SourceModule
+imports: + asyncio + • asyncio.events + • asyncio.exceptions + • asyncio.locks + • asyncio.tasks + • contextlib + • typing + +
+
+imported by: + asyncio + • asyncio.base_events + +
+ +
+ +
+ + asyncio.streams +SourceModule
+imports: + asyncio + • asyncio.coroutines + • asyncio.events + • asyncio.exceptions + • asyncio.format_helpers + • asyncio.log + • asyncio.protocols + • asyncio.tasks + • collections + • socket + • sys + • warnings + • weakref + +
+
+imported by: + asyncio + • asyncio.subprocess + +
+ +
+ +
+ + asyncio.subprocess +SourceModule
+imports: + asyncio + • asyncio.events + • asyncio.log + • asyncio.protocols + • asyncio.streams + • asyncio.tasks + • subprocess + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.taskgroups +SourceModule
+imports: + asyncio + • asyncio.events + • asyncio.exceptions + • asyncio.tasks + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.tasks +SourceModule
+imports: + _asyncio + • asyncio + • asyncio.base_tasks + • asyncio.coroutines + • asyncio.events + • asyncio.exceptions + • asyncio.futures + • asyncio.queues + • asyncio.timeouts + • concurrent.futures + • contextvars + • functools + • inspect + • itertools + • types + • warnings + • weakref + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.runners + • asyncio.staggered + • asyncio.streams + • asyncio.subprocess + • asyncio.taskgroups + • asyncio.timeouts + • asyncio.unix_events + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.threads +SourceModule
+imports: + asyncio + • asyncio.events + • contextvars + • functools + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.timeouts +SourceModule
+imports: + asyncio + • asyncio.events + • asyncio.exceptions + • asyncio.tasks + • enum + • types + • typing + +
+
+imported by: + asyncio + • asyncio.tasks + +
+ +
+ +
+ + asyncio.transports +SourceModule
+imports: + asyncio + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.base_subprocess + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.sslproto + • asyncio.unix_events + +
+ +
+ +
+ + asyncio.trsock +SourceModule
+imports: + asyncio + • socket + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.proactor_events + • asyncio.selector_events + +
+ +
+ +
+ + asyncio.unix_events +SourceModule
+imports: + asyncio + • asyncio.base_events + • asyncio.base_subprocess + • asyncio.constants + • asyncio.coroutines + • asyncio.events + • asyncio.exceptions + • asyncio.futures + • asyncio.log + • asyncio.selector_events + • asyncio.tasks + • asyncio.transports + • errno + • io + • itertools + • os + • selectors + • signal + • socket + • stat + • subprocess + • sys + • threading + • warnings + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.windows_events +SourceModule
+imports: + _overlapped + • _winapi + • asyncio + • asyncio.base_subprocess + • asyncio.events + • asyncio.exceptions + • asyncio.futures + • asyncio.log + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.tasks + • asyncio.windows_utils + • errno + • math + • msvcrt + • socket + • struct + • sys + • time + • weakref + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.windows_utils +SourceModule
+imports: + _winapi + • asyncio + • itertools + • msvcrt + • os + • subprocess + • sys + • tempfile + • warnings + +
+
+imported by: + asyncio + • asyncio.windows_events + +
+ +
+ +
+ + atexit (builtin module)
+imported by: + _pyi_rth_utils.qt + • logging + • multiprocessing.util + • weakref + +
+ +
+ +
+ + base64 +SourceModule
+imports: + binascii + • getopt + • re + • struct + • sys + +
+
+imported by: + email._encoded_words + • email.base64mime + • email.encoders + • encodings.base64_codec + • http.server + • secrets + • ssl + • urllib.request + • xmlrpc.client + • yaml.constructor + • yaml.representer + +
+ +
+ +
+ + bdb +SourceModule
+imports: + fnmatch + • inspect + • linecache + • os + • reprlib + • sys + +
+
+imported by: + pdb + +
+ +
+ +
+ + binascii (builtin module)
+imported by: + base64 + • email._encoded_words + • email.base64mime + • email.contentmanager + • email.header + • email.message + • encodings.hex_codec + • encodings.uu_codec + • http.server + • quopri + • yaml.constructor + • zipfile + +
+ +
+ +
+ + bisect +SourceModule
+imports: + _bisect + +
+
+imported by: + multiprocessing.heap + • random + • statistics + • urllib.request + +
+ +
+ +
+ + builtins (builtin module)
+imported by: + bz2 + • codecs + • doctest + • enum + • gettext + • gzip + • inspect + • locale + • lzma + • numpy + • numpy.core.numeric + • numpy.core.numerictypes + • numpy.lib.function_base + • numpy.ma.core + • operator + • pydoc + • reprlib + • subprocess + • tarfile + • tokenize + • warnings + +
+ +
+ +
+ + bz2 +SourceModule
+imports: + _bz2 + • _compression + • builtins + • io + • os + +
+
+imported by: + encodings.bz2_codec + • numpy.lib._datasource + • shutil + • tarfile + • zipfile + +
+ +
+ +
+ + calendar +SourceModule
+imports: + argparse + • datetime + • enum + • itertools + • locale + • sys + • warnings + +
+
+imported by: + _strptime + • email._parseaddr + • http.cookiejar + • ssl + +
+ +
+ +
+ + cmd +SourceModule
+imports: + readline + • string + • sys + +
+
+imported by: + pdb + +
+ +
+ +
+ + code +SourceModule
+imports: + argparse + • codeop + • readline + • sys + • traceback + +
+
+imported by: + pdb + +
+ +
+ +
+ + codecs +SourceModule
+imports: + _codecs + • builtins + • encodings + • sys + +
+
+imported by: + Sonic.pyw + • _pickle + • encodings + • encodings.ascii + • encodings.base64_codec + • encodings.big5 + • encodings.big5hkscs + • encodings.bz2_codec + • encodings.charmap + • encodings.cp037 + • encodings.cp1006 + • encodings.cp1026 + • encodings.cp1125 + • encodings.cp1140 + • encodings.cp1250 + • encodings.cp1251 + • encodings.cp1252 + • encodings.cp1253 + • encodings.cp1254 + • encodings.cp1255 + • encodings.cp1256 + • encodings.cp1257 + • encodings.cp1258 + • encodings.cp273 + • encodings.cp424 + • encodings.cp437 + • encodings.cp500 + • encodings.cp720 + • encodings.cp737 + • encodings.cp775 + • encodings.cp850 + • encodings.cp852 + • encodings.cp855 + • encodings.cp856 + • encodings.cp857 + • encodings.cp858 + • encodings.cp860 + • encodings.cp861 + • encodings.cp862 + • encodings.cp863 + • encodings.cp864 + • encodings.cp865 + • encodings.cp866 + • encodings.cp869 + • encodings.cp874 + • encodings.cp875 + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hex_codec + • encodings.hp_roman8 + • encodings.hz + • encodings.idna + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.iso8859_1 + • encodings.iso8859_10 + • encodings.iso8859_11 + • encodings.iso8859_13 + • encodings.iso8859_14 + • encodings.iso8859_15 + • encodings.iso8859_16 + • encodings.iso8859_2 + • encodings.iso8859_3 + • encodings.iso8859_4 + • encodings.iso8859_5 + • encodings.iso8859_6 + • encodings.iso8859_7 + • encodings.iso8859_8 + • encodings.iso8859_9 + • encodings.johab + • encodings.koi8_r + • encodings.koi8_t + • encodings.koi8_u + • encodings.kz1048 + • encodings.latin_1 + • encodings.mac_arabic + • encodings.mac_croatian + • encodings.mac_cyrillic + • encodings.mac_farsi + • encodings.mac_greek + • encodings.mac_iceland + • encodings.mac_latin2 + • encodings.mac_roman + • encodings.mac_romanian + • encodings.mac_turkish + • encodings.mbcs + • encodings.oem + • encodings.palmos + • encodings.ptcp154 + • encodings.punycode + • encodings.quopri_codec + • encodings.raw_unicode_escape + • encodings.rot_13 + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + • encodings.tis_620 + • encodings.undefined + • encodings.unicode_escape + • encodings.utf_16 + • encodings.utf_16_be + • encodings.utf_16_le + • encodings.utf_32 + • encodings.utf_32_be + • encodings.utf_32_le + • encodings.utf_7 + • encodings.utf_8 + • encodings.utf_8_sig + • encodings.uu_codec + • encodings.zlib_codec + • json + • pickle + • tokenize + • xml.sax.saxutils + • yaml.reader + +
+ +
+ +
+ + codeop +SourceModule
+imports: + __future__ + • warnings + +
+
+imported by: + code + +
+ +
+ +
+ + collections +Package
+imports: + _collections + • _collections_abc + • _weakref + • copy + • heapq + • itertools + • keyword + • operator + • reprlib + • sys + +
+
+imported by: + Sonic.pyw + • _pydecimal + • ast + • asyncio.base_events + • asyncio.base_subprocess + • asyncio.locks + • asyncio.proactor_events + • asyncio.queues + • asyncio.selector_events + • asyncio.sslproto + • asyncio.streams + • collections.abc + • concurrent.futures._base + • contextlib + • difflib + • dis + • doctest + • email.feedparser + • functools + • importlib.metadata + • importlib.metadata._collections + • importlib.resources.readers + • inspect + • multiprocessing.heap + • multiprocessing.pool + • multiprocessing.queues + • numpy.core.overrides + • numpy.core.records + • pkgutil + • platform + • pprint + • pydoc + • queue + • selectors + • shlex + • shutil + • ssl + • statistics + • string + • threading + • tokenize + • typing + • unittest._log + • unittest.case + • unittest.util + • urllib.parse + • yaml.representer + +
+ +
+ +
+ + collections.abc +SourceModule
+imports: + _collections_abc + • collections + +
+
+imported by: + Sonic.pyw + • asyncio.base_events + • asyncio.coroutines + • http.client + • inspect + • logging + • numpy._typing._array_like + • numpy._typing._dtype_like + • numpy._typing._nested_sequence + • numpy._typing._shape + • numpy.array_api._creation_functions + • numpy.array_api._data_type_functions + • numpy.array_api._typing + • numpy.core._ufunc_config + • numpy.lib.function_base + • numpy.lib.npyio + • selectors + • traceback + • tracemalloc + • typing + • yaml.constructor + +
+ +
+ +
+ + concurrent +Package
+imported by: + concurrent.futures + +
+ +
+ +
+ + concurrent.futures +Package
+imports: + concurrent + • concurrent.futures._base + • concurrent.futures.process + • concurrent.futures.thread + +
+
+imported by: + asyncio.base_events + • asyncio.futures + • asyncio.tasks + • concurrent.futures._base + • concurrent.futures.process + • concurrent.futures.thread + +
+ +
+ +
+ + concurrent.futures._base +SourceModule
+imports: + collections + • concurrent.futures + • logging + • threading + • time + • types + +
+
+imported by: + concurrent.futures + • concurrent.futures.process + • concurrent.futures.thread + +
+ +
+ +
+ + concurrent.futures.process +SourceModule
+imports: + concurrent.futures + • concurrent.futures._base + • functools + • itertools + • multiprocessing + • multiprocessing.connection + • multiprocessing.queues + • multiprocessing.synchronize + • os + • queue + • sys + • threading + • traceback + • weakref + +
+
+imported by: + concurrent.futures + +
+ +
+ +
+ + concurrent.futures.thread +SourceModule
+imports: + concurrent.futures + • concurrent.futures._base + • itertools + • os + • queue + • threading + • types + • weakref + +
+
+imported by: + concurrent.futures + +
+ +
+ +
+ + contextlib +SourceModule
+imports: + _collections_abc + • abc + • collections + • functools + • os + • sys + • types + +
+
+imported by: + _aix_support + • _threading_local + • ast + • asyncio.staggered + • getpass + • glob + • http.server + • importlib.metadata + • importlib.resources._adapters + • importlib.resources._common + • numpy.core._methods + • numpy.core._ufunc_config + • numpy.core.arrayprint + • numpy.core.memmap + • numpy.core.records + • numpy.lib.histograms + • numpy.lib.npyio + • numpy.testing._private.utils + • subprocess + • traceback + • typing + • unittest.case + • urllib.request + • zipfile._path + +
+ +
+ +
+ + contextvars +SourceModule
+imports: + _contextvars + +
+
+imported by: + _pydecimal + • asyncio.events + • asyncio.futures + • asyncio.runners + • asyncio.tasks + • asyncio.threads + • numpy.core._ufunc_config + • unittest.async_case + +
+ +
+ +
+ + copy +SourceModule
+imports: + copyreg + • types + • weakref + +
+
+imported by: + _sre + • argparse + • collections + • dataclasses + • email.generator + • gettext + • http.cookiejar + • http.server + • numpy.ma.core + • tarfile + • weakref + • webbrowser + +
+ +
+ +
+ + copyreg +SourceModule
+imports: + functools + • operator + +
+
+imported by: + Sonic.pyw + • _pickle + • copy + • multiprocessing.reduction + • numpy.core + • pickle + • re + • typing + • yaml.representer + +
+ +
+ +
+ + csv +SourceModule
+imports: + _csv + • io + • re + • types + +
+
+imported by: + importlib.metadata + +
+ +
+ +
+ + ctypes +Package
+imports: + _ctypes + • ctypes._endian + • nt + • os + • struct + • sys + • types + +
+
+imported by: + ctypes._endian + • multiprocessing.sharedctypes + • numpy.core._dtype_ctypes + • numpy.core._internal + • numpy.ctypeslib + +
+ +
+ +
+ + ctypes._endian +SourceModule
+imports: + ctypes + • sys + +
+
+imported by: + ctypes + +
+ +
+ +
+ + dataclasses +SourceModule
+imports: + _thread + • abc + • copy + • functools + • inspect + • itertools + • keyword + • re + • sys + • types + +
+
+imported by: + numpy.array_api._data_type_functions + • pprint + +
+ +
+ +
+ + datetime +SourceModule
+imports: + _datetime + • _pydatetime + • time + +
+
+imported by: + _strptime + • calendar + • email.utils + • http.cookiejar + • http.server + • xmlrpc.client + • yaml.constructor + • yaml.representer + +
+ +
+ +
+ + decimal +SourceModule
+imports: + _decimal + • _pydecimal + +
+
+imported by: + fractions + • statistics + • xmlrpc.client + +
+ +
+ +
+ + difflib +SourceModule
+imports: + collections + • difflib + • heapq + • re + • types + +
+
+imported by: + difflib + • doctest + • numpy.testing._private.utils + • unittest.case + +
+ +
+ +
+ + dis +SourceModule
+imports: + argparse + • collections + • io + • opcode + • sys + • types + +
+
+imported by: + inspect + • pdb + +
+ +
+ +
+ + doctest +SourceModule
+imports: + __future__ + • argparse + • builtins + • collections + • difflib + • inspect + • io + • linecache + • os + • pdb + • re + • sys + • traceback + • unittest + +
+
+imported by: + numpy.testing._private.utils + +
+ +
+ +
+ + email +Package
+imports: + email._header_value_parser + • email.charset + • email.errors + • email.header + • email.parser + +
+
+imported by: + email._encoded_words + • email._header_value_parser + • email._parseaddr + • email._policybase + • email.base64mime + • email.charset + • email.contentmanager + • email.encoders + • email.errors + • email.feedparser + • email.generator + • email.header + • email.headerregistry + • email.iterators + • email.message + • email.parser + • email.policy + • email.quoprimime + • email.utils + • importlib.metadata + • urllib.request + +
+ +
+ +
+ + email._encoded_words +SourceModule
+imports: + base64 + • binascii + • email + • email.errors + • functools + • re + • string + +
+
+imported by: + email._header_value_parser + • email.message + +
+ +
+ +
+ + email._header_value_parser +SourceModule
+imports: + email + • email._encoded_words + • email.errors + • email.utils + • operator + • re + • string + • sys + • urllib + +
+
+imported by: + email + • email.headerregistry + +
+ +
+ +
+ + email._parseaddr +SourceModule
+imports: + calendar + • email + • time + +
+
+imported by: + email.utils + +
+ +
+ +
+ + email._policybase +SourceModule
+imports: + abc + • email + • email.charset + • email.header + • email.utils + +
+
+imported by: + email.feedparser + • email.message + • email.parser + • email.policy + +
+ +
+ +
+ + email.base64mime +SourceModule
+imports: + base64 + • binascii + • email + +
+
+imported by: + email.charset + • email.header + +
+ +
+ +
+ + email.charset +SourceModule
+imports: + email + • email.base64mime + • email.encoders + • email.errors + • email.quoprimime + • functools + +
+
+imported by: + email + • email._policybase + • email.contentmanager + • email.header + • email.message + • email.utils + +
+ +
+ +
+ + email.contentmanager +SourceModule
+imports: + binascii + • email + • email.charset + • email.errors + • email.message + • email.quoprimime + +
+
+imported by: + email.policy + +
+ +
+ +
+ + email.encoders +SourceModule
+imports: + base64 + • email + • quopri + +
+
+imported by: + email.charset + +
+ +
+ +
+ + email.errors +SourceModule
+imports: + email + +
+
+imported by: + email + • email._encoded_words + • email._header_value_parser + • email.charset + • email.contentmanager + • email.feedparser + • email.header + • email.headerregistry + • email.message + +
+ +
+ +
+ + email.feedparser +SourceModule
+imports: + collections + • email + • email._policybase + • email.errors + • email.message + • io + • re + +
+
+imported by: + email.parser + +
+ +
+ +
+ + email.generator +SourceModule
+imports: + copy + • email + • email.utils + • io + • random + • re + • sys + • time + +
+
+imported by: + email.message + +
+ +
+ +
+ + email.header +SourceModule
+imports: + binascii + • email + • email.base64mime + • email.charset + • email.errors + • email.quoprimime + • re + +
+
+imported by: + email + • email._policybase + +
+ +
+ +
+ + email.headerregistry +SourceModule
+imports: + email + • email._header_value_parser + • email.errors + • email.utils + • types + +
+
+imported by: + email.policy + +
+ +
+ +
+ + email.iterators +SourceModule
+imports: + email + • io + • sys + +
+
+imported by: + email.message + +
+ +
+ +
+ + email.message +SourceModule
+imports: + binascii + • email + • email._encoded_words + • email._policybase + • email.charset + • email.errors + • email.generator + • email.iterators + • email.policy + • email.utils + • io + • quopri + • re + +
+
+imported by: + email.contentmanager + • email.feedparser + • email.policy + • http.client + • importlib.metadata._adapters + • pydoc + +
+ +
+ +
+ + email.parser +SourceModule
+imports: + email + • email._policybase + • email.feedparser + • io + +
+
+imported by: + email + • http.client + +
+ +
+ +
+ + email.policy +SourceModule
+imports: + email + • email._policybase + • email.contentmanager + • email.headerregistry + • email.message + • email.utils + • re + • sys + +
+
+imported by: + email.message + +
+ +
+ +
+ + email.quoprimime +SourceModule
+imports: + email + • re + • string + +
+
+imported by: + email.charset + • email.contentmanager + • email.header + +
+ +
+ +
+ + email.utils +SourceModule
+imports: + datetime + • email + • email._parseaddr + • email.charset + • os + • random + • re + • socket + • time + • urllib.parse + • warnings + +
+
+imported by: + email._header_value_parser + • email._policybase + • email.generator + • email.headerregistry + • email.message + • email.policy + • http.server + • urllib.request + +
+ +
+ +
+ + encodings +Package
+imports: + _winapi + • codecs + • encodings + • encodings.aliases + • encodings.ascii + • encodings.base64_codec + • encodings.big5 + • encodings.big5hkscs + • encodings.bz2_codec + • encodings.charmap + • encodings.cp037 + • encodings.cp1006 + • encodings.cp1026 + • encodings.cp1125 + • encodings.cp1140 + • encodings.cp1250 + • encodings.cp1251 + • encodings.cp1252 + • encodings.cp1253 + • encodings.cp1254 + • encodings.cp1255 + • encodings.cp1256 + • encodings.cp1257 + • encodings.cp1258 + • encodings.cp273 + • encodings.cp424 + • encodings.cp437 + • encodings.cp500 + • encodings.cp720 + • encodings.cp737 + • encodings.cp775 + • encodings.cp850 + • encodings.cp852 + • encodings.cp855 + • encodings.cp856 + • encodings.cp857 + • encodings.cp858 + • encodings.cp860 + • encodings.cp861 + • encodings.cp862 + • encodings.cp863 + • encodings.cp864 + • encodings.cp865 + • encodings.cp866 + • encodings.cp869 + • encodings.cp874 + • encodings.cp875 + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hex_codec + • encodings.hp_roman8 + • encodings.hz + • encodings.idna + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.iso8859_1 + • encodings.iso8859_10 + • encodings.iso8859_11 + • encodings.iso8859_13 + • encodings.iso8859_14 + • encodings.iso8859_15 + • encodings.iso8859_16 + • encodings.iso8859_2 + • encodings.iso8859_3 + • encodings.iso8859_4 + • encodings.iso8859_5 + • encodings.iso8859_6 + • encodings.iso8859_7 + • encodings.iso8859_8 + • encodings.iso8859_9 + • encodings.johab + • encodings.koi8_r + • encodings.koi8_t + • encodings.koi8_u + • encodings.kz1048 + • encodings.latin_1 + • encodings.mac_arabic + • encodings.mac_croatian + • encodings.mac_cyrillic + • encodings.mac_farsi + • encodings.mac_greek + • encodings.mac_iceland + • encodings.mac_latin2 + • encodings.mac_roman + • encodings.mac_romanian + • encodings.mac_turkish + • encodings.mbcs + • encodings.oem + • encodings.palmos + • encodings.ptcp154 + • encodings.punycode + • encodings.quopri_codec + • encodings.raw_unicode_escape + • encodings.rot_13 + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + • encodings.tis_620 + • encodings.undefined + • encodings.unicode_escape + • encodings.utf_16 + • encodings.utf_16_be + • encodings.utf_16_le + • encodings.utf_32 + • encodings.utf_32_be + • encodings.utf_32_le + • encodings.utf_7 + • encodings.utf_8 + • encodings.utf_8_sig + • encodings.uu_codec + • encodings.zlib_codec + • sys + +
+
+imported by: + Sonic.pyw + • codecs + • encodings + • encodings.aliases + • encodings.ascii + • encodings.base64_codec + • encodings.big5 + • encodings.big5hkscs + • encodings.bz2_codec + • encodings.charmap + • encodings.cp037 + • encodings.cp1006 + • encodings.cp1026 + • encodings.cp1125 + • encodings.cp1140 + • encodings.cp1250 + • encodings.cp1251 + • encodings.cp1252 + • encodings.cp1253 + • encodings.cp1254 + • encodings.cp1255 + • encodings.cp1256 + • encodings.cp1257 + • encodings.cp1258 + • encodings.cp273 + • encodings.cp424 + • encodings.cp437 + • encodings.cp500 + • encodings.cp720 + • encodings.cp737 + • encodings.cp775 + • encodings.cp850 + • encodings.cp852 + • encodings.cp855 + • encodings.cp856 + • encodings.cp857 + • encodings.cp858 + • encodings.cp860 + • encodings.cp861 + • encodings.cp862 + • encodings.cp863 + • encodings.cp864 + • encodings.cp865 + • encodings.cp866 + • encodings.cp869 + • encodings.cp874 + • encodings.cp875 + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hex_codec + • encodings.hp_roman8 + • encodings.hz + • encodings.idna + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.iso8859_1 + • encodings.iso8859_10 + • encodings.iso8859_11 + • encodings.iso8859_13 + • encodings.iso8859_14 + • encodings.iso8859_15 + • encodings.iso8859_16 + • encodings.iso8859_2 + • encodings.iso8859_3 + • encodings.iso8859_4 + • encodings.iso8859_5 + • encodings.iso8859_6 + • encodings.iso8859_7 + • encodings.iso8859_8 + • encodings.iso8859_9 + • encodings.johab + • encodings.koi8_r + • encodings.koi8_t + • encodings.koi8_u + • encodings.kz1048 + • encodings.latin_1 + • encodings.mac_arabic + • encodings.mac_croatian + • encodings.mac_cyrillic + • encodings.mac_farsi + • encodings.mac_greek + • encodings.mac_iceland + • encodings.mac_latin2 + • encodings.mac_roman + • encodings.mac_romanian + • encodings.mac_turkish + • encodings.mbcs + • encodings.oem + • encodings.palmos + • encodings.ptcp154 + • encodings.punycode + • encodings.quopri_codec + • encodings.raw_unicode_escape + • encodings.rot_13 + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + • encodings.tis_620 + • encodings.undefined + • encodings.unicode_escape + • encodings.utf_16 + • encodings.utf_16_be + • encodings.utf_16_le + • encodings.utf_32 + • encodings.utf_32_be + • encodings.utf_32_le + • encodings.utf_7 + • encodings.utf_8 + • encodings.utf_8_sig + • encodings.uu_codec + • encodings.zlib_codec + • locale + +
+ +
+ +
+ + encodings.aliases +SourceModule
+imports: + encodings + +
+
+imported by: + Sonic.pyw + • encodings + • locale + +
+ +
+ +
+ + encodings.ascii +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.base64_codec +SourceModule
+imports: + base64 + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.big5 +SourceModule
+imports: + _codecs_tw + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.big5hkscs +SourceModule
+imports: + _codecs_hk + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.bz2_codec +SourceModule
+imports: + bz2 + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.charmap +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp037 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1006 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1026 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1125 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1140 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1250 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1251 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1252 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1253 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1254 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1255 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1256 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1257 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp1258 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp273 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp424 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp437 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp500 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp720 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp737 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp775 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp850 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp852 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp855 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp856 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp857 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp858 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp860 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp861 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp862 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp863 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp864 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp865 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp866 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp869 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp874 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp875 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp932 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp949 +SourceModule
+imports: + _codecs_kr + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.cp950 +SourceModule
+imports: + _codecs_tw + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.euc_jis_2004 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.euc_jisx0213 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.euc_jp +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.euc_kr +SourceModule
+imports: + _codecs_kr + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.gb18030 +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.gb2312 +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.gbk +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.hex_codec +SourceModule
+imports: + binascii + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.hp_roman8 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.hz +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.idna +SourceModule
+imports: + codecs + • encodings + • re + • stringprep + • unicodedata + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso2022_jp +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso2022_jp_1 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso2022_jp_2 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso2022_jp_2004 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso2022_jp_3 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso2022_jp_ext +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso2022_kr +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_1 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_10 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_11 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_13 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_14 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_15 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_16 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_2 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_3 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_4 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_5 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_6 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_7 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_8 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.iso8859_9 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.johab +SourceModule
+imports: + _codecs_kr + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.koi8_r +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.koi8_t +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.koi8_u +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.kz1048 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.latin_1 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.mac_arabic +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.mac_croatian +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.mac_cyrillic +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.mac_farsi +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.mac_greek +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.mac_iceland +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.mac_latin2 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.mac_roman +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.mac_romanian +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.mac_turkish +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.mbcs +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.oem +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.palmos +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.ptcp154 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.punycode +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.quopri_codec +SourceModule
+imports: + codecs + • encodings + • io + • quopri + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.raw_unicode_escape +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.rot_13 +SourceModule
+imports: + codecs + • encodings + • sys + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.shift_jis +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.shift_jis_2004 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.shift_jisx0213 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.tis_620 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.undefined +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.unicode_escape +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.utf_16 +SourceModule
+imports: + codecs + • encodings + • sys + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.utf_16_be +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.utf_16_le +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.utf_32 +SourceModule
+imports: + codecs + • encodings + • sys + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.utf_32_be +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.utf_32_le +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.utf_7 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.utf_8 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.utf_8_sig +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.uu_codec +SourceModule
+imports: + binascii + • codecs + • encodings + • io + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + encodings.zlib_codec +SourceModule
+imports: + codecs + • encodings + • zlib + +
+
+imported by: + Sonic.pyw + • encodings + +
+ +
+ +
+ + enum +SourceModule
+imports: + builtins + • functools + • operator + • sys + • types + • warnings + +
+
+imported by: + Sonic.pyw + • ast + • asyncio.constants + • asyncio.locks + • asyncio.runners + • asyncio.sslproto + • asyncio.timeouts + • calendar + • http + • inspect + • numpy.__config__ + • numpy._globals + • numpy.array_api._array_object + • py_compile + • re + • signal + • socket + • ssl + +
+ +
+ +
+ + errno (builtin module)
+imported by: + asyncio.base_events + • asyncio.selector_events + • asyncio.unix_events + • asyncio.windows_events + • gettext + • gzip + • http.client + • multiprocessing.connection + • multiprocessing.forkserver + • multiprocessing.queues + • multiprocessing.shared_memory + • pathlib + • shutil + • socket + • ssl + • subprocess + • tempfile + • xmlrpc.client + +
+ +
+ +
+ + fcntl +MissingModule
+imported by: + subprocess + +
+ +
+ +
+ + fnmatch +SourceModule
+imports: + functools + • os + • posixpath + • re + +
+
+imported by: + bdb + • glob + • pathlib + • shutil + • tracemalloc + • unittest.loader + • urllib.request + +
+ +
+ +
+ + fractions +SourceModule
+imports: + decimal + • functools + • math + • numbers + • operator + • re + • sys + +
+
+imported by: + statistics + +
+ +
+ +
+ + ftplib +SourceModule
+imports: + netrc + • re + • socket + • ssl + • sys + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + functools +SourceModule
+imports: + _functools + • _thread + • abc + • collections + • reprlib + • types + • typing + • weakref + +
+
+imported by: + Sonic.pyw + • asyncio.base_events + • asyncio.format_helpers + • asyncio.runners + • asyncio.selector_events + • asyncio.tasks + • asyncio.threads + • concurrent.futures.process + • contextlib + • copyreg + • dataclasses + • email._encoded_words + • email.charset + • enum + • fnmatch + • fractions + • importlib.metadata + • importlib.metadata._adapters + • importlib.metadata._functools + • importlib.resources._common + • importlib.resources._legacy + • inspect + • ipaddress + • linecache + • locale + • multiprocessing.reduction + • multiprocessing.shared_memory + • numpy.core.arrayprint + • numpy.core.defchararray + • numpy.core.fromnumeric + • numpy.core.function_base + • numpy.core.multiarray + • numpy.core.numeric + • numpy.core.overrides + • numpy.core.shape_base + • numpy.fft._pocketfft + • numpy.lib.arraysetops + • numpy.lib.arrayterator + • numpy.lib.function_base + • numpy.lib.histograms + • numpy.lib.index_tricks + • numpy.lib.nanfunctions + • numpy.lib.npyio + • numpy.lib.polynomial + • numpy.lib.shape_base + • numpy.lib.twodim_base + • numpy.lib.type_check + • numpy.lib.ufunclike + • numpy.lib.utils + • numpy.linalg.linalg + • numpy.ma.core + • numpy.polynomial.polyutils + • numpy.testing._private.utils + • operator + • pathlib + • pdb + • pickle + • pkgutil + • platform + • re + • statistics + • tempfile + • threading + • tokenize + • tracemalloc + • types + • typing + • unittest.case + • unittest.loader + • unittest.result + • unittest.signals + • urllib.parse + +
+ +
+ +
+ + gc (builtin module)
+imports: + time + +
+
+imported by: + _posixsubprocess + • numpy.testing._private.utils + • weakref + +
+ +
+ +
+ + genericpath +SourceModule
+imports: + os + • stat + +
+
+imported by: + Sonic.pyw + • ntpath + • posixpath + +
+ +
+ +
+ + getopt +SourceModule
+imports: + gettext + • os + • sys + +
+
+imported by: + base64 + • mimetypes + • pdb + • pydoc + • quopri + • webbrowser + +
+ +
+ +
+ + getpass +SourceModule
+imports: + contextlib + • io + • msvcrt + • os + • pwd + • sys + • termios + • warnings + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + gettext +SourceModule
+imports: + builtins + • copy + • errno + • locale + • operator + • os + • re + • struct + • sys + • warnings + +
+
+imported by: + argparse + • getopt + +
+ +
+ +
+ + glob +SourceModule
+imports: + contextlib + • fnmatch + • itertools + • os + • re + • stat + • sys + +
+
+imported by: + pdb + +
+ +
+ +
+ + grp +MissingModule
+imported by: + pathlib + • shutil + • subprocess + • tarfile + +
+ +
+ +
+ + gzip +SourceModule
+imports: + _compression + • argparse + • builtins + • errno + • io + • os + • struct + • sys + • time + • warnings + • zlib + +
+
+imported by: + numpy.lib._datasource + • tarfile + • xmlrpc.client + +
+ +
+ +
+ + hashlib +SourceModule
+imports: + _blake2 + • _hashlib + • _md5 + • _sha1 + • _sha2 + • _sha3 + • logging + +
+
+imported by: + hmac + • random + • urllib.request + +
+ +
+ +
+ + heapq +SourceModule
+imports: + _heapq + +
+
+imported by: + Sonic.pyw + • asyncio.base_events + • asyncio.queues + • collections + • difflib + • queue + +
+ +
+ +
+ + hmac +SourceModule
+imports: + _hashlib + • _operator + • hashlib + • warnings + +
+
+imported by: + multiprocessing.connection + • secrets + +
+ +
+ +
+ + html +Package
+imports: + html.entities + • re + +
+
+imported by: + html.entities + • http.server + +
+ +
+ +
+ + html.entities +SourceModule
+imports: + html + +
+
+imported by: + html + +
+ +
+ +
+ + http +Package
+imports: + enum + +
+
+imported by: + http.client + • http.cookiejar + • http.server + +
+ +
+ +
+ + http.client +SourceModule
+imports: + collections.abc + • email.message + • email.parser + • errno + • http + • io + • re + • socket + • ssl + • sys + • urllib.parse + +
+
+imported by: + http.cookiejar + • http.server + • urllib.request + • xmlrpc.client + +
+ +
+ +
+ + http.cookiejar +SourceModule
+imports: + calendar + • copy + • datetime + • http + • http.client + • io + • logging + • os + • re + • threading + • time + • traceback + • urllib.parse + • urllib.request + • warnings + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + http.server +SourceModule
+imports: + argparse + • base64 + • binascii + • contextlib + • copy + • datetime + • email.utils + • html + • http + • http.client + • io + • itertools + • mimetypes + • os + • posixpath + • pwd + • select + • shutil + • socket + • socketserver + • subprocess + • sys + • time + • urllib.parse + +
+
+imported by: + pydoc + +
+ +
+ +
+ + importlib +Package
+imports: + _frozen_importlib + • _frozen_importlib_external + • _imp + • importlib + • importlib._bootstrap + • importlib._bootstrap_external + • sys + • warnings + +
+
+imported by: + _pyi_rth_utils.qt + • importlib + • importlib._abc + • importlib._bootstrap + • importlib._bootstrap_external + • importlib.abc + • importlib.machinery + • importlib.metadata + • importlib.readers + • importlib.resources + • importlib.resources._common + • importlib.util + • inspect + • pkgutil + +
+ +
+ +
+ + importlib._abc +SourceModule
+imports: + abc + • importlib + • importlib._bootstrap + +
+
+imported by: + importlib.abc + • importlib.util + +
+ +
+ +
+ + importlib._bootstrap +SourceModule
+imports: + _frozen_importlib_external + • importlib + +
+
+imported by: + importlib + • importlib._abc + • importlib.machinery + • importlib.util + • pydoc + +
+ +
+ +
+ + importlib._bootstrap_external +SourceModule
+imports: + _imp + • _io + • _warnings + • importlib + • importlib.metadata + • importlib.readers + • marshal + • nt + • posix + • sys + • tokenize + • winreg + +
+
+imported by: + importlib + • importlib.abc + • importlib.machinery + • importlib.util + • py_compile + • pydoc + +
+ +
+ +
+ + importlib.abc +SourceModule
+imports: + _frozen_importlib + • _frozen_importlib_external + • abc + • importlib + • importlib._abc + • importlib._bootstrap_external + • importlib.machinery + • importlib.resources + • importlib.resources.abc + • warnings + +
+
+imported by: + importlib.metadata + +
+ +
+ +
+ + importlib.machinery +SourceModule
+imports: + importlib + • importlib._bootstrap + • importlib._bootstrap_external + +
+
+imported by: + importlib.abc + • inspect + • numpy.compat.py3k + • pkgutil + • py_compile + • pydoc + • runpy + +
+ +
+ +
+ + importlib.metadata +Package
+imports: + abc + • collections + • contextlib + • csv + • email + • functools + • importlib + • importlib.abc + • importlib.metadata + • importlib.metadata._adapters + • importlib.metadata._collections + • importlib.metadata._functools + • importlib.metadata._itertools + • importlib.metadata._meta + • inspect + • itertools + • operator + • os + • pathlib + • posixpath + • re + • sys + • textwrap + • typing + • warnings + • zipfile + +
+
+imported by: + importlib._bootstrap_external + • importlib.metadata + • importlib.metadata._adapters + • importlib.metadata._collections + • importlib.metadata._functools + • importlib.metadata._itertools + • importlib.metadata._meta + • importlib.metadata._text + +
+ +
+ +
+ + importlib.metadata._adapters +SourceModule
+imports: + email.message + • functools + • importlib.metadata + • importlib.metadata._text + • re + • textwrap + • warnings + +
+
+imported by: + importlib.metadata + +
+ +
+ +
+ + importlib.metadata._collections +SourceModule
+imports: + collections + • importlib.metadata + +
+
+imported by: + importlib.metadata + +
+ +
+ +
+ + importlib.metadata._functools +SourceModule
+imports: + functools + • importlib.metadata + • types + +
+
+imported by: + importlib.metadata + • importlib.metadata._text + +
+ +
+ +
+ + importlib.metadata._itertools +SourceModule
+imports: + importlib.metadata + • itertools + +
+
+imported by: + importlib.metadata + +
+ +
+ +
+ + importlib.metadata._meta +SourceModule
+imports: + importlib.metadata + • typing + +
+
+imported by: + importlib.metadata + +
+ +
+ +
+ + importlib.metadata._text +SourceModule
+imports: + importlib.metadata + • importlib.metadata._functools + • re + +
+
+imported by: + importlib.metadata._adapters + +
+ +
+ +
+ + importlib.readers +SourceModule
+imports: + importlib + • importlib.resources.readers + +
+
+imported by: + importlib._bootstrap_external + • zipimport + +
+ +
+ +
+ + importlib.resources +Package
+imports: + importlib + • importlib.resources + • importlib.resources._common + • importlib.resources._legacy + • importlib.resources.abc + +
+
+imported by: + importlib.abc + • importlib.resources + • importlib.resources._adapters + • importlib.resources._common + • importlib.resources._itertools + • importlib.resources._legacy + • importlib.resources.abc + • importlib.resources.readers + +
+ +
+ +
+ + importlib.resources._adapters +SourceModule
+imports: + contextlib + • importlib.resources + • importlib.resources.abc + • io + +
+
+imported by: + importlib.resources._common + +
+ +
+ +
+ + importlib.resources._common +SourceModule
+imports: + contextlib + • functools + • importlib + • importlib.resources + • importlib.resources._adapters + • importlib.resources.abc + • inspect + • itertools + • os + • pathlib + • tempfile + • types + • typing + • warnings + +
+
+imported by: + importlib.resources + • importlib.resources._legacy + +
+ +
+ +
+ + importlib.resources._itertools +SourceModule
+imports: + importlib.resources + +
+
+imported by: + importlib.resources.readers + +
+ +
+ +
+ + importlib.resources._legacy +SourceModule
+imports: + functools + • importlib.resources + • importlib.resources._common + • os + • pathlib + • types + • typing + • warnings + +
+
+imported by: + importlib.resources + +
+ +
+ +
+ + importlib.resources.abc +SourceModule
+imports: + abc + • importlib.resources + • io + • itertools + • os + • pathlib + • typing + +
+
+imported by: + importlib.abc + • importlib.resources + • importlib.resources._adapters + • importlib.resources._common + • importlib.resources.readers + +
+ +
+ +
+ + importlib.resources.readers +SourceModule
+imports: + collections + • importlib.resources + • importlib.resources._itertools + • importlib.resources.abc + • itertools + • operator + • pathlib + • zipfile + +
+
+imported by: + importlib.readers + +
+ +
+ +
+ + importlib.util +SourceModule
+imports: + _imp + • importlib + • importlib._abc + • importlib._bootstrap + • importlib._bootstrap_external + • sys + • types + +
+
+imported by: + numpy.testing._private.extbuild + • pkgutil + • py_compile + • pydoc + • runpy + • zipfile + +
+ +
+ +
+ + inspect +SourceModule
+imports: + abc + • argparse + • ast + • builtins + • collections + • collections.abc + • dis + • enum + • functools + • importlib + • importlib.machinery + • itertools + • keyword + • linecache + • operator + • os + • re + • sys + • token + • tokenize + • types + +
+
+imported by: + ast + • asyncio.coroutines + • asyncio.format_helpers + • asyncio.tasks + • bdb + • dataclasses + • doctest + • importlib.metadata + • importlib.resources._common + • numpy.lib.utils + • numpy.ma.core + • numpy.testing._private.utils + • pdb + • pkgutil + • pydoc + • pyi_rth_inspect.py + • typing + • unittest.async_case + +
+ +
+ +
+ + io +SourceModule
+imports: + _io + • abc + +
+
+imported by: + Sonic.pyw + • _compression + • asyncio.proactor_events + • asyncio.unix_events + • bz2 + • csv + • dis + • doctest + • email.feedparser + • email.generator + • email.iterators + • email.message + • email.parser + • encodings.quopri_codec + • encodings.uu_codec + • getpass + • gzip + • http.client + • http.cookiejar + • http.server + • importlib.resources._adapters + • importlib.resources.abc + • logging + • lzma + • multiprocessing.connection + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + • multiprocessing.reduction + • numpy.compat.py3k + • numpy.lib._datasource + • numpy.lib.format + • numpy.lib.utils + • numpy.testing._private.utils + • os + • pathlib + • pdb + • pickle + • pprint + • pydoc + • quopri + • runpy + • shlex + • socket + • socketserver + • subprocess + • tarfile + • tempfile + • tokenize + • unittest.result + • urllib.error + • urllib.request + • xml.sax + • xml.sax.saxutils + • xmlrpc.client + • yaml + • zipfile + • zipfile._path + +
+ +
+ +
+ + ipaddress +SourceModule
+imports: + functools + • re + +
+
+imported by: + urllib.parse + +
+ +
+ +
+ + itertools (builtin module)
+imported by: + _pydecimal + • asyncio.base_events + • asyncio.selector_events + • asyncio.tasks + • asyncio.unix_events + • asyncio.windows_utils + • calendar + • collections + • concurrent.futures.process + • concurrent.futures.thread + • dataclasses + • glob + • http.server + • importlib.metadata + • importlib.metadata._itertools + • importlib.resources._common + • importlib.resources.abc + • importlib.resources.readers + • inspect + • multiprocessing.connection + • multiprocessing.pool + • multiprocessing.process + • multiprocessing.util + • numpy.core.einsumfunc + • numpy.core.numeric + • numpy.core.shape_base + • numpy.lib.npyio + • numpy.lib.recfunctions + • numpy.ma.extras + • pickle + • platform + • random + • reprlib + • statistics + • threading + • tokenize + • traceback + • weakref + • zipfile._path + +
+ +
+ +
+ + java +MissingModule
+imported by: + platform + +
+ +
+ +
+ + json +Package
+imports: + codecs + • json.decoder + • json.encoder + • json.scanner + +
+
+imported by: + json.decoder + • json.encoder + • json.scanner + • numpy.__config__ + +
+ +
+ +
+ + json.decoder +SourceModule
+imports: + _json + • json + • json.scanner + • re + +
+
+imported by: + _json + • json + +
+ +
+ +
+ + json.encoder +SourceModule
+imports: + _json + • json + • re + +
+
+imported by: + json + +
+ +
+ +
+ + json.scanner +SourceModule
+imports: + _json + • json + • re + +
+
+imported by: + json + • json.decoder + +
+ +
+ +
+ + keyword +SourceModule
+imported by: + Sonic.pyw + • collections + • dataclasses + • inspect + +
+ +
+ +
+ + linecache +SourceModule
+imports: + functools + • os + • sys + • tokenize + +
+
+imported by: + Sonic.pyw + • asyncio.base_tasks + • bdb + • doctest + • inspect + • pdb + • traceback + • tracemalloc + • warnings + +
+ +
+ +
+ + locale +SourceModule
+imports: + _collections_abc + • _locale + • builtins + • encodings + • encodings.aliases + • functools + • os + • re + • sys + • warnings + +
+
+imported by: + Sonic.pyw + • _pydecimal + • _strptime + • calendar + • gettext + • pyaudio + • subprocess + +
+ +
+ +
+ + logging +Package
+imports: + atexit + • collections.abc + • io + • os + • pickle + • re + • string + • sys + • threading + • time + • traceback + • types + • warnings + • weakref + +
+
+imported by: + asyncio.futures + • asyncio.log + • concurrent.futures._base + • hashlib + • http.cookiejar + • multiprocessing.util + • unittest._log + +
+ +
+ +
+ + lzma +SourceModule
+imports: + _compression + • _lzma + • builtins + • io + • os + +
+
+imported by: + numpy.lib._datasource + • shutil + • tarfile + • zipfile + +
+ +
+ +
+ + marshal (builtin module)
+imported by: + importlib._bootstrap_external + • pkgutil + • zipimport + +
+ +
+ +
+ + math (builtin module)
+imported by: + _pydatetime + • _pydecimal + • asyncio.windows_events + • fractions + • numpy + • numpy.core._machar + • numpy.lib + • numpy.lib.index_tricks + • random + • selectors + • statistics + • urllib.parse + +
+ +
+ +
+ + mimetypes +SourceModule
+imports: + _winapi + • getopt + • os + • posixpath + • sys + • urllib.parse + • winreg + +
+
+imported by: + http.server + • urllib.request + +
+ +
+ +
+ + mmap (builtin module)
+imported by: + multiprocessing.heap + • multiprocessing.shared_memory + • numpy.core.memmap + +
+ +
+ +
+ + msvcrt (builtin module)
+imported by: + asyncio.windows_events + • asyncio.windows_utils + • getpass + • multiprocessing.popen_spawn_win32 + • multiprocessing.spawn + • subprocess + +
+ +
+ +
+ + multiprocessing +Package
+imports: + multiprocessing + • multiprocessing.AuthenticationError + • multiprocessing.BufferTooShort + • multiprocessing.TimeoutError + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.forkserver + • multiprocessing.get_context + • multiprocessing.get_start_method + • multiprocessing.pool + • multiprocessing.process + • multiprocessing.reduction + • multiprocessing.resource_sharer + • multiprocessing.resource_tracker + • multiprocessing.set_start_method + • multiprocessing.shared_memory + • multiprocessing.spawn + • multiprocessing.util + • sys + +
+
+imported by: + concurrent.futures.process + • multiprocessing + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.dummy + • multiprocessing.forkserver + • multiprocessing.heap + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.popen_fork + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + • multiprocessing.popen_spawn_win32 + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.reduction + • multiprocessing.resource_sharer + • multiprocessing.resource_tracker + • multiprocessing.shared_memory + • multiprocessing.sharedctypes + • multiprocessing.spawn + • multiprocessing.synchronize + • multiprocessing.util + • pyi_rth_multiprocessing.py + +
+ +
+ +
+ + multiprocessing.AuthenticationError +MissingModule
+imported by: + multiprocessing + • multiprocessing.connection + +
+ +
+ +
+ + multiprocessing.BufferTooShort +MissingModule
+imported by: + multiprocessing + • multiprocessing.connection + +
+ +
+ +
+ + multiprocessing.TimeoutError +MissingModule
+imported by: + multiprocessing + • multiprocessing.pool + +
+ +
+ +
+ + multiprocessing.connection +SourceModule
+imports: + _multiprocessing + • _winapi + • errno + • hmac + • io + • itertools + • multiprocessing + • multiprocessing.AuthenticationError + • multiprocessing.BufferTooShort + • multiprocessing.context + • multiprocessing.resource_sharer + • multiprocessing.util + • os + • selectors + • socket + • struct + • sys + • tempfile + • time + • xmlrpc.client + +
+
+imported by: + concurrent.futures.process + • multiprocessing + • multiprocessing.context + • multiprocessing.forkserver + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.popen_fork + • multiprocessing.popen_forkserver + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.resource_sharer + +
+ +
+ +
+ + multiprocessing.context +SourceModule
+imports: + multiprocessing + • multiprocessing.connection + • multiprocessing.forkserver + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.popen_fork + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + • multiprocessing.popen_spawn_win32 + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.reduction + • multiprocessing.sharedctypes + • multiprocessing.spawn + • multiprocessing.synchronize + • multiprocessing.util + • os + • sys + • threading + +
+
+imported by: + multiprocessing + • multiprocessing.connection + • multiprocessing.forkserver + • multiprocessing.heap + • multiprocessing.managers + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + • multiprocessing.popen_spawn_win32 + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.reduction + • multiprocessing.resource_sharer + • multiprocessing.sharedctypes + • multiprocessing.spawn + • multiprocessing.synchronize + +
+ +
+ +
+ + multiprocessing.dummy +Package
+imports: + array + • multiprocessing + • multiprocessing.dummy.connection + • multiprocessing.pool + • queue + • sys + • threading + • weakref + +
+
+imported by: + multiprocessing.dummy.connection + • multiprocessing.pool + +
+ +
+ +
+ + multiprocessing.dummy.connection +SourceModule
+imports: + multiprocessing.dummy + • queue + +
+
+imported by: + multiprocessing.dummy + +
+ +
+ +
+ + multiprocessing.forkserver +SourceModule
+imports: + errno + • multiprocessing + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.process + • multiprocessing.resource_tracker + • multiprocessing.spawn + • multiprocessing.util + • os + • selectors + • signal + • socket + • struct + • sys + • threading + • warnings + +
+
+imported by: + multiprocessing + • multiprocessing.context + • multiprocessing.popen_forkserver + • multiprocessing.util + +
+ +
+ +
+ + multiprocessing.get_context +MissingModule
+imported by: + multiprocessing + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.sharedctypes + +
+ +
+ +
+ + multiprocessing.get_start_method +MissingModule
+imported by: + multiprocessing + • multiprocessing.spawn + +
+ +
+ +
+ + multiprocessing.heap +SourceModule
+imports: + _winapi + • bisect + • collections + • mmap + • multiprocessing + • multiprocessing.context + • multiprocessing.util + • os + • sys + • tempfile + • threading + +
+
+imported by: + multiprocessing.sharedctypes + • multiprocessing.synchronize + +
+ +
+ +
+ + multiprocessing.managers +SourceModule
+imports: + array + • multiprocessing + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.get_context + • multiprocessing.pool + • multiprocessing.process + • multiprocessing.resource_tracker + • multiprocessing.shared_memory + • multiprocessing.util + • os + • queue + • signal + • sys + • threading + • time + • traceback + • types + +
+
+imported by: + multiprocessing.context + +
+ +
+ +
+ + multiprocessing.pool +SourceModule
+imports: + collections + • itertools + • multiprocessing + • multiprocessing.TimeoutError + • multiprocessing.connection + • multiprocessing.dummy + • multiprocessing.get_context + • multiprocessing.util + • os + • queue + • threading + • time + • traceback + • types + • warnings + +
+
+imported by: + multiprocessing + • multiprocessing.context + • multiprocessing.dummy + • multiprocessing.managers + +
+ +
+ +
+ + multiprocessing.popen_fork +SourceModule
+imports: + multiprocessing + • multiprocessing.connection + • multiprocessing.util + • os + • signal + +
+
+imported by: + multiprocessing.context + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + +
+ +
+ +
+ + multiprocessing.popen_forkserver +SourceModule
+imports: + io + • multiprocessing + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.forkserver + • multiprocessing.popen_fork + • multiprocessing.spawn + • multiprocessing.util + • os + +
+
+imported by: + multiprocessing.context + • pyi_rth_multiprocessing.py + +
+ +
+ +
+ + multiprocessing.popen_spawn_posix +SourceModule
+imports: + io + • multiprocessing + • multiprocessing.context + • multiprocessing.popen_fork + • multiprocessing.resource_tracker + • multiprocessing.spawn + • multiprocessing.util + • os + +
+
+imported by: + multiprocessing.context + • pyi_rth_multiprocessing.py + +
+ +
+ +
+ + multiprocessing.popen_spawn_win32 +SourceModule
+imports: + _winapi + • msvcrt + • multiprocessing + • multiprocessing.context + • multiprocessing.spawn + • multiprocessing.util + • os + • signal + • sys + +
+
+imported by: + multiprocessing.context + • pyi_rth_multiprocessing.py + +
+ +
+ +
+ + multiprocessing.process +SourceModule
+imports: + _weakrefset + • itertools + • multiprocessing + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.util + • os + • signal + • sys + • threading + • traceback + +
+
+imported by: + multiprocessing + • multiprocessing.context + • multiprocessing.forkserver + • multiprocessing.managers + • multiprocessing.resource_sharer + • multiprocessing.spawn + • multiprocessing.synchronize + • multiprocessing.util + +
+ +
+ +
+ + multiprocessing.queues +SourceModule
+imports: + _multiprocessing + • collections + • errno + • multiprocessing + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.synchronize + • multiprocessing.util + • os + • queue + • sys + • threading + • time + • traceback + • types + • weakref + +
+
+imported by: + concurrent.futures.process + • multiprocessing.context + +
+ +
+ +
+ + multiprocessing.reduction +SourceModule
+imports: + _winapi + • abc + • array + • copyreg + • functools + • io + • multiprocessing + • multiprocessing.context + • multiprocessing.resource_sharer + • os + • pickle + • socket + • sys + +
+
+imported by: + multiprocessing + • multiprocessing.context + +
+ +
+ +
+ + multiprocessing.resource_sharer +SourceModule
+imports: + multiprocessing + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.process + • multiprocessing.util + • os + • signal + • socket + • sys + • threading + +
+
+imported by: + multiprocessing + • multiprocessing.connection + • multiprocessing.reduction + +
+ +
+ +
+ + multiprocessing.resource_tracker +SourceModule
+imports: + _multiprocessing + • _posixshmem + • multiprocessing + • multiprocessing.spawn + • multiprocessing.util + • os + • signal + • sys + • threading + • warnings + +
+
+imported by: + multiprocessing + • multiprocessing.forkserver + • multiprocessing.managers + • multiprocessing.popen_spawn_posix + • multiprocessing.shared_memory + • multiprocessing.spawn + • multiprocessing.synchronize + • multiprocessing.util + +
+ +
+ +
+ + multiprocessing.set_start_method +MissingModule
+imported by: + multiprocessing + • multiprocessing.spawn + +
+ +
+ +
+ + multiprocessing.shared_memory +SourceModule
+imports: + _posixshmem + • _winapi + • errno + • functools + • mmap + • multiprocessing + • multiprocessing.resource_tracker + • os + • secrets + • struct + • types + +
+
+imported by: + multiprocessing + • multiprocessing.managers + +
+ +
+ +
+ + multiprocessing.sharedctypes +SourceModule
+imports: + ctypes + • multiprocessing + • multiprocessing.context + • multiprocessing.get_context + • multiprocessing.heap + • weakref + +
+
+imported by: + multiprocessing.context + +
+ +
+ +
+ + multiprocessing.spawn +SourceModule
+imports: + _winapi + • msvcrt + • multiprocessing + • multiprocessing.context + • multiprocessing.get_start_method + • multiprocessing.process + • multiprocessing.resource_tracker + • multiprocessing.set_start_method + • multiprocessing.util + • os + • runpy + • sys + • types + +
+
+imported by: + multiprocessing + • multiprocessing.context + • multiprocessing.forkserver + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + • multiprocessing.popen_spawn_win32 + • multiprocessing.resource_tracker + • pyi_rth_multiprocessing.py + +
+ +
+ +
+ + multiprocessing.synchronize +SourceModule
+imports: + _multiprocessing + • multiprocessing + • multiprocessing.context + • multiprocessing.heap + • multiprocessing.process + • multiprocessing.resource_tracker + • multiprocessing.util + • struct + • sys + • tempfile + • threading + • time + +
+
+imported by: + concurrent.futures.process + • multiprocessing.context + • multiprocessing.queues + +
+ +
+ +
+ + multiprocessing.util +SourceModule
+imports: + _posixsubprocess + • atexit + • itertools + • logging + • multiprocessing + • multiprocessing.forkserver + • multiprocessing.process + • multiprocessing.resource_tracker + • os + • shutil + • subprocess + • sys + • tempfile + • threading + • traceback + • weakref + +
+
+imported by: + multiprocessing + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.forkserver + • multiprocessing.heap + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.popen_fork + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + • multiprocessing.popen_spawn_win32 + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.resource_sharer + • multiprocessing.resource_tracker + • multiprocessing.spawn + • multiprocessing.synchronize + +
+ +
+ +
+ + netrc +SourceModule
+imports: + os + • pwd + • stat + +
+
+imported by: + ftplib + +
+ +
+ +
+ + nt (builtin module)
+imported by: + ctypes + • importlib._bootstrap_external + • ntpath + • os + • shutil + +
+ +
+ +
+ + ntpath +SourceModule
+imports: + _winapi + • genericpath + • nt + • os + • stat + • string + • sys + +
+
+imported by: + Sonic.pyw + • ntpath + • os + • pathlib + +
+ +
+ +
+ + ntpath +AliasNode
+imports: + ntpath + • os + +
+
+imported by: + numpy.core.memmap + • os + • pkgutil + • py_compile + • sysconfig + • tracemalloc + • unittest.util + +
+ +
+ +
+ + nturl2path +SourceModule
+imports: + string + • urllib.parse + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + numbers +SourceModule
+imports: + abc + +
+
+imported by: + _pydecimal + • fractions + • numpy.core.arrayprint + • numpy.core.numeric + • numpy.core.numerictypes + • numpy.polynomial._polybase + • statistics + +
+ +
+ +
+ + numpy +Package
+imports: + builtins + • math + • numpy + • numpy.__config__ + • numpy._distributor_init + • numpy._distributor_init_local + • numpy._globals + • numpy._pytesttester + • numpy.amax + • numpy.amin + • numpy.array + • numpy.array_api + • numpy.bool_ + • numpy.bytes_ + • numpy.compat + • numpy.complexfloating + • numpy.core + • numpy.core._dtype_ctypes + • numpy.core._multiarray_tests + • numpy.ctypeslib + • numpy.datetime64 + • numpy.dtype + • numpy.dtypes + • numpy.exceptions + • numpy.expand_dims + • numpy.eye + • numpy.fft + • numpy.float32 + • numpy.float64 + • numpy.floating + • numpy.generic + • numpy.histogramdd + • numpy.int16 + • numpy.int32 + • numpy.int64 + • numpy.int8 + • numpy.integer + • numpy.iscomplexobj + • numpy.isfinite + • numpy.isinf + • numpy.isnan + • numpy.lib + • numpy.linalg + • numpy.ma + • numpy.matrixlib + • numpy.ndarray + • numpy.number + • numpy.object_ + • numpy.polynomial + • numpy.random + • numpy.recarray + • numpy.str_ + • numpy.testing + • numpy.timedelta64 + • numpy.ufunc + • numpy.uint16 + • numpy.uint32 + • numpy.uint64 + • numpy.uint8 + • numpy.unsignedinteger + • numpy.version + • numpy.void + • os + • pathlib + • sys + • warnings + +
+
+imported by: + Sonic.pyw + • numpy + • numpy.__config__ + • numpy._distributor_init + • numpy._globals + • numpy._pytesttester + • numpy._typing + • numpy._typing._array_like + • numpy._typing._dtype_like + • numpy._typing._scalars + • numpy._utils + • numpy.array_api + • numpy.array_api._array_object + • numpy.array_api._constants + • numpy.array_api._creation_functions + • numpy.array_api._data_type_functions + • numpy.array_api._dtypes + • numpy.array_api._elementwise_functions + • numpy.array_api._indexing_functions + • numpy.array_api._manipulation_functions + • numpy.array_api._searching_functions + • numpy.array_api._set_functions + • numpy.array_api._sorting_functions + • numpy.array_api._statistical_functions + • numpy.array_api._typing + • numpy.array_api._utility_functions + • numpy.array_api.linalg + • numpy.compat + • numpy.core + • numpy.core._dtype + • numpy.core._dtype_ctypes + • numpy.core._internal + • numpy.core.arrayprint + • numpy.core.defchararray + • numpy.core.fromnumeric + • numpy.core.function_base + • numpy.core.memmap + • numpy.core.numeric + • numpy.ctypeslib + • numpy.dtypes + • numpy.exceptions + • numpy.fft + • numpy.lib + • numpy.lib._iotools + • numpy.lib.arraypad + • numpy.lib.arraysetops + • numpy.lib.format + • numpy.lib.function_base + • numpy.lib.histograms + • numpy.lib.index_tricks + • numpy.lib.nanfunctions + • numpy.lib.npyio + • numpy.lib.recfunctions + • numpy.lib.stride_tricks + • numpy.lib.twodim_base + • numpy.lib.utils + • numpy.linalg + • numpy.linalg.linalg + • numpy.ma + • numpy.ma.core + • numpy.ma.extras + • numpy.ma.mrecords + • numpy.matrixlib + • numpy.polynomial + • numpy.polynomial._polybase + • numpy.polynomial.chebyshev + • numpy.polynomial.hermite + • numpy.polynomial.hermite_e + • numpy.polynomial.laguerre + • numpy.polynomial.legendre + • numpy.polynomial.polynomial + • numpy.polynomial.polyutils + • numpy.random + • numpy.testing + • numpy.testing._private.utils + • numpy.testing.overrides + • numpy.typing + • numpy.version + +
+ +
+ +
+ + numpy.__config__ +SourceModule
+imports: + enum + • json + • numpy + • numpy.core._multiarray_umath + • warnings + • yaml + +
+
+imported by: + numpy + +
+ +
+ +
+ + numpy._distributor_init +SourceModule
+imports: + numpy + • numpy._distributor_init_local + +
+
+imported by: + numpy + +
+ +
+ +
+ + numpy._distributor_init_local +MissingModule
+imported by: + numpy + • numpy._distributor_init + +
+ +
+ +
+ + numpy._globals +SourceModule
+imports: + enum + • numpy + • numpy._utils + +
+
+imported by: + numpy + • numpy.core._methods + +
+ +
+ +
+ + numpy._pytesttester +SourceModule
+imports: + numpy + • numpy.array_api + • numpy.testing + • os + • sys + • warnings + +
+
+imported by: + numpy + • numpy.core + • numpy.fft + • numpy.lib + • numpy.linalg + • numpy.ma + • numpy.matrixlib + • numpy.polynomial + • numpy.random + • numpy.testing + • numpy.typing + +
+ +
+ +
+ + numpy._typing +Package
+imports: + __future__ + • numpy + • numpy._typing._array_like + • numpy._typing._char_codes + • numpy._typing._dtype_like + • numpy._typing._nbit + • numpy._typing._nested_sequence + • numpy._typing._scalars + • numpy._typing._shape + • numpy._typing._ufunc + • numpy._utils + • numpy.ufunc + • typing + +
+
+imported by: + numpy._typing._add_docstring + • numpy._typing._array_like + • numpy._typing._char_codes + • numpy._typing._dtype_like + • numpy._typing._nbit + • numpy._typing._nested_sequence + • numpy._typing._scalars + • numpy._typing._shape + • numpy.linalg.linalg + • numpy.typing + +
+ +
+ +
+ + numpy._typing._add_docstring +SourceModule
+imports: + numpy._typing + • numpy._typing._array_like + • re + • textwrap + +
+
+imported by: + numpy.typing + +
+ +
+ +
+ + numpy._typing._array_like +SourceModule
+imports: + __future__ + • collections.abc + • numpy + • numpy._typing + • numpy._typing._nested_sequence + • numpy.bool_ + • numpy.bytes_ + • numpy.complexfloating + • numpy.datetime64 + • numpy.dtype + • numpy.floating + • numpy.generic + • numpy.integer + • numpy.ndarray + • numpy.number + • numpy.object_ + • numpy.str_ + • numpy.timedelta64 + • numpy.unsignedinteger + • numpy.void + • sys + • typing + +
+
+imported by: + numpy._typing + • numpy._typing._add_docstring + +
+ +
+ +
+ + numpy._typing._char_codes +SourceModule
+imports: + numpy._typing + • typing + +
+
+imported by: + numpy._typing + • numpy._typing._dtype_like + +
+ +
+ +
+ + numpy._typing._dtype_like +SourceModule
+imports: + collections.abc + • numpy + • numpy._typing + • numpy._typing._char_codes + • numpy._typing._shape + • typing + +
+
+imported by: + numpy._typing + +
+ +
+ +
+ + numpy._typing._nbit +SourceModule
+imports: + numpy._typing + • typing + +
+
+imported by: + numpy._typing + +
+ +
+ +
+ + numpy._typing._nested_sequence +SourceModule
+imports: + __future__ + • collections.abc + • numpy._typing + • typing + +
+
+imported by: + numpy._typing + • numpy._typing._array_like + +
+ +
+ +
+ + numpy._typing._scalars +SourceModule
+imports: + numpy + • numpy._typing + • typing + +
+
+imported by: + numpy._typing + +
+ +
+ +
+ + numpy._typing._shape +SourceModule
+imports: + collections.abc + • numpy._typing + • typing + +
+
+imported by: + numpy._typing + • numpy._typing._dtype_like + +
+ +
+ +
+ + numpy._typing._ufunc +MissingModule
+imported by: + numpy._typing + +
+ +
+ +
+ + numpy._utils +Package
+imports: + numpy + • numpy._utils._convertions + +
+
+imported by: + numpy._globals + • numpy._typing + • numpy._utils._convertions + • numpy._utils._inspect + • numpy.compat + • numpy.core._exceptions + • numpy.core._machar + • numpy.core._ufunc_config + • numpy.core.defchararray + • numpy.core.fromnumeric + • numpy.core.getlimits + • numpy.core.memmap + • numpy.core.numerictypes + • numpy.core.overrides + • numpy.core.records + • numpy.lib._datasource + • numpy.lib.function_base + • numpy.lib.index_tricks + • numpy.lib.polynomial + • numpy.lib.type_check + • numpy.lib.utils + • numpy.linalg.linalg + • numpy.matrixlib.defmatrix + +
+ +
+ +
+ + numpy._utils._convertions +SourceModule
+imports: + numpy._utils + +
+
+imported by: + numpy._utils + +
+ +
+ +
+ + numpy._utils._inspect +SourceModule
+imports: + numpy._utils + • types + +
+
+imported by: + numpy.compat + • numpy.core.overrides + +
+ +
+ +
+ + numpy.amax +MissingModule
+imported by: + numpy + • numpy.ma.core + +
+ +
+ +
+ + numpy.amin +MissingModule
+imported by: + numpy + • numpy.ma.core + +
+ +
+ +
+ + numpy.array +MissingModule
+imported by: + numpy + • numpy.ma.core + • numpy.ma.extras + • numpy.ma.mrecords + +
+ +
+ +
+ + numpy.array_api +Package
+imports: + numpy + • numpy.array_api + • numpy.array_api._constants + • numpy.array_api._creation_functions + • numpy.array_api._data_type_functions + • numpy.array_api._dtypes + • numpy.array_api._elementwise_functions + • numpy.array_api._indexing_functions + • numpy.array_api._manipulation_functions + • numpy.array_api._searching_functions + • numpy.array_api._set_functions + • numpy.array_api._sorting_functions + • numpy.array_api._statistical_functions + • numpy.array_api._utility_functions + • numpy.array_api.linalg + • warnings + +
+
+imported by: + numpy + • numpy._pytesttester + • numpy.array_api + • numpy.array_api._array_object + • numpy.array_api._constants + • numpy.array_api._creation_functions + • numpy.array_api._data_type_functions + • numpy.array_api._dtypes + • numpy.array_api._elementwise_functions + • numpy.array_api._indexing_functions + • numpy.array_api._manipulation_functions + • numpy.array_api._searching_functions + • numpy.array_api._set_functions + • numpy.array_api._sorting_functions + • numpy.array_api._statistical_functions + • numpy.array_api._typing + • numpy.array_api._utility_functions + • numpy.array_api.linalg + +
+ +
+ +
+ + numpy.array_api._array_object +SourceModule
+imports: + __future__ + • enum + • numpy + • numpy.array_api + • numpy.array_api._creation_functions + • numpy.array_api._dtypes + • numpy.array_api._elementwise_functions + • numpy.array_api._typing + • numpy.array_api.linalg + • numpy.typing + • operator + • types + • typing + +
+
+imported by: + numpy.array_api._creation_functions + • numpy.array_api._data_type_functions + • numpy.array_api._elementwise_functions + • numpy.array_api._indexing_functions + • numpy.array_api._manipulation_functions + • numpy.array_api._searching_functions + • numpy.array_api._set_functions + • numpy.array_api._sorting_functions + • numpy.array_api._statistical_functions + • numpy.array_api._typing + • numpy.array_api._utility_functions + • numpy.array_api.linalg + +
+ +
+ +
+ + numpy.array_api._constants +SourceModule
+imports: + numpy + • numpy.array_api + +
+
+imported by: + numpy.array_api + +
+ +
+ +
+ + numpy.array_api._creation_functions +SourceModule
+imports: + __future__ + • collections.abc + • numpy + • numpy.array_api + • numpy.array_api._array_object + • numpy.array_api._dtypes + • numpy.array_api._typing + • typing + +
+
+imported by: + numpy.array_api + • numpy.array_api._array_object + +
+ +
+ +
+ + numpy.array_api._data_type_functions +SourceModule
+imports: + __future__ + • collections.abc + • dataclasses + • numpy + • numpy.array_api + • numpy.array_api._array_object + • numpy.array_api._dtypes + • numpy.array_api._typing + • typing + +
+
+imported by: + numpy.array_api + • numpy.array_api._manipulation_functions + +
+ +
+ +
+ + numpy.array_api._dtypes +SourceModule
+imports: + numpy + • numpy.array_api + +
+
+imported by: + numpy.array_api + • numpy.array_api._array_object + • numpy.array_api._creation_functions + • numpy.array_api._data_type_functions + • numpy.array_api._elementwise_functions + • numpy.array_api._indexing_functions + • numpy.array_api._searching_functions + • numpy.array_api._sorting_functions + • numpy.array_api._statistical_functions + • numpy.array_api.linalg + +
+ +
+ +
+ + numpy.array_api._elementwise_functions +SourceModule
+imports: + __future__ + • numpy + • numpy.array_api + • numpy.array_api._array_object + • numpy.array_api._dtypes + +
+
+imported by: + numpy.array_api + • numpy.array_api._array_object + • numpy.array_api.linalg + +
+ +
+ +
+ + numpy.array_api._indexing_functions +SourceModule
+imports: + __future__ + • numpy + • numpy.array_api + • numpy.array_api._array_object + • numpy.array_api._dtypes + +
+
+imported by: + numpy.array_api + +
+ +
+ +
+ + numpy.array_api._manipulation_functions +SourceModule
+imports: + __future__ + • numpy + • numpy.array_api + • numpy.array_api._array_object + • numpy.array_api._data_type_functions + • typing + +
+
+imported by: + numpy.array_api + • numpy.array_api.linalg + +
+ +
+ +
+ + numpy.array_api._searching_functions +SourceModule
+imports: + __future__ + • numpy + • numpy.array_api + • numpy.array_api._array_object + • numpy.array_api._dtypes + • typing + +
+
+imported by: + numpy.array_api + +
+ +
+ +
+ + numpy.array_api._set_functions +SourceModule
+imports: + __future__ + • numpy + • numpy.array_api + • numpy.array_api._array_object + • typing + +
+
+imported by: + numpy.array_api + +
+ +
+ +
+ + numpy.array_api._sorting_functions +SourceModule
+imports: + __future__ + • numpy + • numpy.array_api + • numpy.array_api._array_object + • numpy.array_api._dtypes + +
+
+imported by: + numpy.array_api + +
+ +
+ +
+ + numpy.array_api._statistical_functions +SourceModule
+imports: + __future__ + • numpy + • numpy.array_api + • numpy.array_api._array_object + • numpy.array_api._dtypes + • numpy.array_api._typing + • typing + +
+
+imported by: + numpy.array_api + +
+ +
+ +
+ + numpy.array_api._typing +SourceModule
+imports: + __future__ + • collections.abc + • numpy + • numpy.array_api + • numpy.array_api._array_object + • numpy.dtype + • numpy.float32 + • numpy.float64 + • numpy.int16 + • numpy.int32 + • numpy.int64 + • numpy.int8 + • numpy.uint16 + • numpy.uint32 + • numpy.uint64 + • numpy.uint8 + • sys + • typing + +
+
+imported by: + numpy.array_api._array_object + • numpy.array_api._creation_functions + • numpy.array_api._data_type_functions + • numpy.array_api._statistical_functions + • numpy.array_api.linalg + +
+ +
+ +
+ + numpy.array_api._utility_functions +SourceModule
+imports: + __future__ + • numpy + • numpy.array_api + • numpy.array_api._array_object + • typing + +
+
+imported by: + numpy.array_api + +
+ +
+ +
+ + numpy.array_api.linalg +SourceModule
+imports: + __future__ + • numpy + • numpy.array_api + • numpy.array_api._array_object + • numpy.array_api._dtypes + • numpy.array_api._elementwise_functions + • numpy.array_api._manipulation_functions + • numpy.array_api._typing + • numpy.core.numeric + • numpy.linalg + • numpy.linalg._umath_linalg + • numpy.linalg.linalg + • typing + +
+
+imported by: + numpy.array_api + • numpy.array_api._array_object + +
+ +
+ +
+ + numpy.bool_ +MissingModule
+imported by: + numpy + • numpy._typing._array_like + • numpy.ma.core + • numpy.ma.mrecords + +
+ +
+ +
+ + numpy.bytes_ +MissingModule
+imported by: + numpy + • numpy._typing._array_like + +
+ +
+ +
+ + numpy.compat +Package
+imports: + numpy + • numpy._utils + • numpy._utils._inspect + • numpy.compat + • numpy.compat.py3k + +
+
+imported by: + numpy + • numpy.compat + • numpy.compat.py3k + • numpy.core._methods + • numpy.core._type_aliases + • numpy.core.defchararray + • numpy.core.memmap + • numpy.core.numerictypes + • numpy.core.records + • numpy.lib._iotools + • numpy.lib.format + • numpy.lib.npyio + • numpy.ma.core + +
+ +
+ +
+ + numpy.compat.py3k +SourceModule
+imports: + importlib.machinery + • io + • numpy.compat + • os + • pathlib + • pickle + • pickle5 + • sys + +
+
+imported by: + numpy.compat + +
+ +
+ +
+ + numpy.complexfloating +MissingModule
+imported by: + numpy + • numpy._typing._array_like + +
+ +
+ +
+ + numpy.core +Package
+imports: + copyreg + • numpy + • numpy._pytesttester + • numpy.core + • numpy.core.Inf + • numpy.core._add_newdocs + • numpy.core._add_newdocs_scalars + • numpy.core._asarray + • numpy.core._dtype + • numpy.core._dtype_ctypes + • numpy.core._exceptions + • numpy.core._internal + • numpy.core._machar + • numpy.core._methods + • numpy.core.add + • numpy.core.all + • numpy.core.amax + • numpy.core.amin + • numpy.core.arange + • numpy.core.argsort + • numpy.core.array + • numpy.core.array2string + • numpy.core.array_repr + • numpy.core.asanyarray + • numpy.core.asarray + • numpy.core.atleast_1d + • numpy.core.atleast_2d + • numpy.core.atleast_3d + • numpy.core.bool_ + • numpy.core.cdouble + • numpy.core.complexfloating + • numpy.core.conjugate + • numpy.core.count_nonzero + • numpy.core.csingle + • numpy.core.defchararray + • numpy.core.divide + • numpy.core.dot + • numpy.core.double + • numpy.core.einsumfunc + • numpy.core.empty + • numpy.core.empty_like + • numpy.core.errstate + • numpy.core.finfo + • numpy.core.float32 + • numpy.core.float_ + • numpy.core.fromnumeric + • numpy.core.function_base + • numpy.core.geterrobj + • numpy.core.getlimits + • numpy.core.hstack + • numpy.core.iinfo + • numpy.core.inexact + • numpy.core.inf + • numpy.core.intc + • numpy.core.integer + • numpy.core.intp + • numpy.core.isfinite + • numpy.core.isnan + • numpy.core.isnat + • numpy.core.isscalar + • numpy.core.linspace + • numpy.core.matmul + • numpy.core.max + • numpy.core.memmap + • numpy.core.moveaxis + • numpy.core.multiarray + • numpy.core.multiply + • numpy.core.ndarray + • numpy.core.newaxis + • numpy.core.number + • numpy.core.numeric + • numpy.core.numerictypes + • numpy.core.object_ + • numpy.core.ones + • numpy.core.overrides + • numpy.core.prod + • numpy.core.reciprocal + • numpy.core.records + • numpy.core.result_type + • numpy.core.shape_base + • numpy.core.sign + • numpy.core.signbit + • numpy.core.single + • numpy.core.sort + • numpy.core.sqrt + • numpy.core.sum + • numpy.core.swapaxes + • numpy.core.transpose + • numpy.core.ufunc + • numpy.core.umath + • numpy.core.vstack + • numpy.core.zeros + • numpy.version + • os + • sys + • warnings + +
+
+imported by: + numpy + • numpy.core + • numpy.core._add_newdocs + • numpy.core._add_newdocs_scalars + • numpy.core._asarray + • numpy.core._dtype + • numpy.core._dtype_ctypes + • numpy.core._exceptions + • numpy.core._internal + • numpy.core._machar + • numpy.core._methods + • numpy.core._multiarray_tests + • numpy.core._multiarray_umath + • numpy.core._string_helpers + • numpy.core._type_aliases + • numpy.core._ufunc_config + • numpy.core.arrayprint + • numpy.core.defchararray + • numpy.core.einsumfunc + • numpy.core.fromnumeric + • numpy.core.function_base + • numpy.core.getlimits + • numpy.core.memmap + • numpy.core.multiarray + • numpy.core.numeric + • numpy.core.numerictypes + • numpy.core.overrides + • numpy.core.records + • numpy.core.shape_base + • numpy.core.umath + • numpy.fft._pocketfft + • numpy.fft.helper + • numpy.lib.arraysetops + • numpy.lib.function_base + • numpy.lib.histograms + • numpy.lib.index_tricks + • numpy.lib.mixins + • numpy.lib.nanfunctions + • numpy.lib.npyio + • numpy.lib.polynomial + • numpy.lib.shape_base + • numpy.lib.twodim_base + • numpy.lib.type_check + • numpy.lib.utils + • numpy.linalg.linalg + • numpy.ma.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.Inf +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core._add_newdocs +SourceModule
+imports: + numpy.core + • numpy.core.function_base + • numpy.core.overrides + +
+
+imported by: + numpy.core + +
+ +
+ +
+ + numpy.core._add_newdocs_scalars +SourceModule
+imports: + numpy.core + • numpy.core.function_base + • numpy.core.numerictypes + • os + • sys + +
+
+imported by: + numpy.core + +
+ +
+ +
+ + numpy.core._asarray +SourceModule
+imports: + numpy.core + • numpy.core.multiarray + • numpy.core.overrides + +
+
+imported by: + numpy.core + • numpy.core.numeric + +
+ +
+ +
+ + numpy.core._dtype +SourceModule
+imports: + numpy + • numpy.core + +
+
+imported by: + numpy.core + • numpy.core._type_aliases + • numpy.core.numerictypes + +
+ +
+ +
+ + numpy.core._dtype_ctypes +SourceModule
+imports: + _ctypes + • ctypes + • numpy + • numpy.core + +
+
+imported by: + numpy + • numpy.core + +
+ +
+ +
+ + numpy.core._exceptions +SourceModule
+imports: + numpy._utils + • numpy.core + +
+
+imported by: + numpy.core + • numpy.core._methods + +
+ +
+ +
+ + numpy.core._internal +SourceModule
+imports: + ast + • ctypes + • numpy + • numpy.core + • numpy.core.multiarray + • numpy.exceptions + • re + • sys + • warnings + +
+
+imported by: + numpy.core + • numpy.ctypeslib + +
+ +
+ +
+ + numpy.core._machar +SourceModule
+imports: + math + • numpy._utils + • numpy.core + • numpy.core._ufunc_config + • numpy.core.fromnumeric + +
+
+imported by: + numpy.core + • numpy.core.getlimits + +
+ +
+ +
+ + numpy.core._methods +SourceModule
+imports: + contextlib + • numpy._globals + • numpy.compat + • numpy.core + • numpy.core._exceptions + • numpy.core._ufunc_config + • numpy.core.multiarray + • numpy.core.numerictypes + • numpy.core.umath + • numpy.lib.stride_tricks + • warnings + +
+
+imported by: + numpy.core + • numpy.core.fromnumeric + +
+ +
+ +
+ + numpy.core._multiarray_tests C:\Python312\Lib\site-packages\numpy\core\_multiarray_tests.cp312-win_amd64.pyd
+imports: + numpy.core + +
+
+imported by: + numpy + +
+ +
+ +
+ + numpy.core._multiarray_umath C:\Python312\Lib\site-packages\numpy\core\_multiarray_umath.cp312-win_amd64.pyd
+imports: + numpy.core + +
+
+imported by: + numpy.__config__ + • numpy.core.multiarray + • numpy.core.overrides + • numpy.core.umath + • numpy.lib + • numpy.lib.npyio + • numpy.lib.utils + +
+ +
+ +
+ + numpy.core._string_helpers +SourceModule
+imports: + numpy.core + +
+
+imported by: + numpy.core._type_aliases + • numpy.core.numerictypes + +
+ +
+ +
+ + numpy.core._type_aliases +SourceModule
+imports: + numpy.compat + • numpy.core + • numpy.core._dtype + • numpy.core._string_helpers + • numpy.core.multiarray + +
+
+imported by: + numpy.core.numerictypes + +
+ +
+ +
+ + numpy.core._ufunc_config +SourceModule
+imports: + collections.abc + • contextlib + • contextvars + • numpy._utils + • numpy.core + • numpy.core.umath + +
+
+imported by: + numpy.core._machar + • numpy.core._methods + • numpy.core.numeric + +
+ +
+ +
+ + numpy.core.add +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.all +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.amax +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.amin +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.arange +MissingModule
+imported by: + numpy.core + • numpy.fft.helper + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.argsort +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.array +MissingModule
+imported by: + numpy.core + • numpy.lib.polynomial + • numpy.linalg.linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.array2string +MissingModule
+imported by: + numpy.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.array_repr +MissingModule
+imported by: + numpy.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.arrayprint +SourceModule
+imports: + _dummy_thread + • _thread + • contextlib + • functools + • numbers + • numpy + • numpy.core + • numpy.core.fromnumeric + • numpy.core.multiarray + • numpy.core.numeric + • numpy.core.numerictypes + • numpy.core.overrides + • numpy.core.umath + • operator + • sys + • warnings + +
+
+imported by: + numpy.core.numeric + • numpy.core.records + +
+ +
+ +
+ + numpy.core.asanyarray +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.asarray +MissingModule
+imported by: + numpy.core + • numpy.fft._pocketfft + • numpy.fft.helper + • numpy.lib.utils + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.atleast_1d +MissingModule
+imported by: + numpy.core + • numpy.lib.polynomial + +
+ +
+ +
+ + numpy.core.atleast_2d +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.atleast_3d +MissingModule
+imported by: + numpy.core + • numpy.lib.shape_base + +
+ +
+ +
+ + numpy.core.bool_ +MissingModule
+imported by: + numpy.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.cdouble +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.complexfloating +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.conjugate +MissingModule
+imported by: + numpy.core + • numpy.fft._pocketfft + +
+ +
+ +
+ + numpy.core.count_nonzero +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.csingle +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.defchararray +SourceModule
+imports: + functools + • numpy + • numpy._utils + • numpy.compat + • numpy.core + • numpy.core.multiarray + • numpy.core.numeric + • numpy.core.numerictypes + • numpy.core.overrides + +
+
+imported by: + numpy.core + +
+ +
+ +
+ + numpy.core.divide +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.dot +MissingModule
+imported by: + numpy.core + • numpy.lib.polynomial + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.double +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.einsumfunc +SourceModule
+imports: + itertools + • numpy.core + • numpy.core.multiarray + • numpy.core.numeric + • numpy.core.overrides + • operator + +
+
+imported by: + numpy.core + +
+ +
+ +
+ + numpy.core.empty +MissingModule
+imported by: + numpy.core + • numpy.fft.helper + • numpy.linalg.linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.empty_like +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.errstate +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.finfo +MissingModule
+imported by: + numpy.core + • numpy.lib.polynomial + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.float32 +MissingModule
+imported by: + numpy.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.float_ +MissingModule
+imported by: + numpy.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.fromnumeric +SourceModule
+imports: + functools + • numpy + • numpy._utils + • numpy.core + • numpy.core._methods + • numpy.core.multiarray + • numpy.core.numerictypes + • numpy.core.overrides + • numpy.core.umath + • types + • warnings + +
+
+imported by: + numpy.core + • numpy.core._machar + • numpy.core.arrayprint + • numpy.core.numeric + • numpy.core.shape_base + • numpy.lib.function_base + • numpy.lib.shape_base + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.function_base +SourceModule
+imports: + functools + • numpy + • numpy.core + • numpy.core.multiarray + • numpy.core.numeric + • numpy.core.overrides + • operator + • types + • warnings + +
+
+imported by: + numpy.core + • numpy.core._add_newdocs + • numpy.core._add_newdocs_scalars + • numpy.lib.function_base + +
+ +
+ +
+ + numpy.core.geterrobj +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.getlimits +SourceModule
+imports: + numpy._utils + • numpy.core + • numpy.core._machar + • numpy.core.numeric + • numpy.core.numerictypes + • numpy.core.umath + • warnings + +
+
+imported by: + numpy.core + • numpy.lib.type_check + +
+ +
+ +
+ + numpy.core.hstack +MissingModule
+imported by: + numpy.core + • numpy.lib.polynomial + +
+ +
+ +
+ + numpy.core.iinfo +MissingModule
+imported by: + numpy.core + • numpy.lib.twodim_base + +
+ +
+ +
+ + numpy.core.inexact +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.inf +MissingModule
+imported by: + numpy.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.intc +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.integer +MissingModule
+imported by: + numpy.core + • numpy.fft.helper + +
+ +
+ +
+ + numpy.core.intp +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.isfinite +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.isnan +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.isnat +MissingModule
+imported by: + numpy.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.isscalar +MissingModule
+imported by: + numpy.core + • numpy.lib.polynomial + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.linspace +MissingModule
+imported by: + numpy.core + • numpy.lib.index_tricks + +
+ +
+ +
+ + numpy.core.matmul +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.max +MissingModule
+imported by: + numpy.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.memmap +SourceModule
+imports: + contextlib + • mmap + • ntpath + • numpy + • numpy._utils + • numpy.compat + • numpy.core + • numpy.core.numeric + +
+
+imported by: + numpy.core + +
+ +
+ +
+ + numpy.core.moveaxis +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.multiarray +SourceModule
+imports: + functools + • numpy.core + • numpy.core._multiarray_umath + • numpy.core.overrides + +
+
+imported by: + numpy.core + • numpy.core._asarray + • numpy.core._internal + • numpy.core._methods + • numpy.core._type_aliases + • numpy.core.arrayprint + • numpy.core.defchararray + • numpy.core.einsumfunc + • numpy.core.fromnumeric + • numpy.core.function_base + • numpy.core.numeric + • numpy.core.numerictypes + • numpy.core.shape_base + • numpy.ctypeslib + • numpy.fft._pocketfft + • numpy.lib.function_base + • numpy.lib.index_tricks + • numpy.lib.npyio + • numpy.lib.shape_base + • numpy.linalg.linalg + • numpy.ma.core + • numpy.ma.extras + • numpy.polynomial.chebyshev + • numpy.polynomial.hermite + • numpy.polynomial.hermite_e + • numpy.polynomial.laguerre + • numpy.polynomial.legendre + • numpy.polynomial.polynomial + • numpy.polynomial.polyutils + +
+ +
+ +
+ + numpy.core.multiply +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.ndarray +MissingModule
+imported by: + numpy.core + • numpy.lib.utils + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.newaxis +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.number +MissingModule
+imported by: + numpy.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.numeric +SourceModule
+imports: + builtins + • functools + • itertools + • numbers + • numpy + • numpy.core + • numpy.core._asarray + • numpy.core._ufunc_config + • numpy.core.arrayprint + • numpy.core.fromnumeric + • numpy.core.multiarray + • numpy.core.numerictypes + • numpy.core.overrides + • numpy.core.shape_base + • numpy.core.umath + • numpy.exceptions + • numpy.eye + • operator + • sys + • warnings + +
+
+imported by: + numpy.array_api.linalg + • numpy.core + • numpy.core.arrayprint + • numpy.core.defchararray + • numpy.core.einsumfunc + • numpy.core.function_base + • numpy.core.getlimits + • numpy.core.memmap + • numpy.core.records + • numpy.core.shape_base + • numpy.lib._iotools + • numpy.lib.function_base + • numpy.lib.index_tricks + • numpy.lib.polynomial + • numpy.lib.scimath + • numpy.lib.shape_base + • numpy.lib.stride_tricks + • numpy.lib.twodim_base + • numpy.lib.type_check + • numpy.lib.ufunclike + • numpy.ma.core + • numpy.ma.extras + • numpy.matrixlib.defmatrix + +
+ +
+ +
+ + numpy.core.numerictypes +SourceModule
+imports: + builtins + • numbers + • numpy._utils + • numpy.compat + • numpy.core + • numpy.core._dtype + • numpy.core._string_helpers + • numpy.core._type_aliases + • numpy.core.multiarray + • warnings + +
+
+imported by: + numpy.core + • numpy.core._add_newdocs_scalars + • numpy.core._methods + • numpy.core.arrayprint + • numpy.core.defchararray + • numpy.core.fromnumeric + • numpy.core.getlimits + • numpy.core.numeric + • numpy.core.records + • numpy.lib.function_base + • numpy.lib.index_tricks + • numpy.lib.scimath + • numpy.lib.utils + • numpy.ma.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.object_ +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.ones +MissingModule
+imported by: + numpy.core + • numpy.lib.polynomial + +
+ +
+ +
+ + numpy.core.overrides +SourceModule
+imports: + collections + • functools + • numpy._utils + • numpy._utils._inspect + • numpy.core + • numpy.core._multiarray_umath + • os + +
+
+imported by: + numpy.core + • numpy.core._add_newdocs + • numpy.core._asarray + • numpy.core.arrayprint + • numpy.core.defchararray + • numpy.core.einsumfunc + • numpy.core.fromnumeric + • numpy.core.function_base + • numpy.core.multiarray + • numpy.core.numeric + • numpy.core.shape_base + • numpy.fft._pocketfft + • numpy.fft.helper + • numpy.lib.arraypad + • numpy.lib.arraysetops + • numpy.lib.function_base + • numpy.lib.histograms + • numpy.lib.index_tricks + • numpy.lib.nanfunctions + • numpy.lib.npyio + • numpy.lib.polynomial + • numpy.lib.recfunctions + • numpy.lib.scimath + • numpy.lib.shape_base + • numpy.lib.stride_tricks + • numpy.lib.twodim_base + • numpy.lib.type_check + • numpy.lib.ufunclike + • numpy.linalg.linalg + • numpy.testing.overrides + +
+ +
+ +
+ + numpy.core.prod +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.reciprocal +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.records +SourceModule
+imports: + collections + • contextlib + • numpy._utils + • numpy.compat + • numpy.core + • numpy.core.arrayprint + • numpy.core.numeric + • numpy.core.numerictypes + • warnings + +
+
+imported by: + numpy.core + • numpy.ma.mrecords + +
+ +
+ +
+ + numpy.core.result_type +MissingModule
+imported by: + numpy.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.shape_base +SourceModule
+imports: + functools + • itertools + • numpy.core + • numpy.core.fromnumeric + • numpy.core.multiarray + • numpy.core.numeric + • numpy.core.overrides + • operator + • warnings + +
+
+imported by: + numpy.core + • numpy.core.numeric + • numpy.lib.shape_base + +
+ +
+ +
+ + numpy.core.sign +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.signbit +MissingModule
+imported by: + numpy.core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.core.single +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.sort +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.sqrt +MissingModule
+imported by: + numpy.core + • numpy.fft._pocketfft + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.sum +MissingModule
+imported by: + numpy.core + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.swapaxes +MissingModule
+imported by: + numpy.core + • numpy.fft._pocketfft + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.core.transpose +MissingModule
+imported by: + numpy.core + • numpy.lib.function_base + +
+ +
+ +
+ + numpy.core.ufunc +MissingModule
+imported by: + numpy.core + • numpy.lib.utils + +
+ +
+ +
+ + numpy.core.umath +SourceModule
+imports: + numpy.core + • numpy.core._multiarray_umath + +
+
+imported by: + numpy.core + • numpy.core._methods + • numpy.core._ufunc_config + • numpy.core.arrayprint + • numpy.core.fromnumeric + • numpy.core.getlimits + • numpy.core.numeric + • numpy.lib.function_base + • numpy.lib.mixins + • numpy.ma.core + • numpy.polynomial.polyutils + • numpy.testing.overrides + +
+ +
+ +
+ + numpy.core.vstack +MissingModule
+imported by: + numpy.core + • numpy.lib.shape_base + +
+ +
+ +
+ + numpy.core.zeros +MissingModule
+imported by: + numpy.core + • numpy.fft._pocketfft + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.ctypeslib +SourceModule
+imports: + ctypes + • numpy + • numpy.core._internal + • numpy.core.multiarray + • numpy.dtype + • numpy.integer + • numpy.ndarray + • os + • sys + • sysconfig + +
+
+imported by: + numpy + +
+ +
+ +
+ + numpy.datetime64 +MissingModule
+imported by: + numpy + • numpy._typing._array_like + +
+ +
+ +
+ + numpy.dtype +MissingModule
+imported by: + numpy + • numpy._typing._array_like + • numpy.array_api._typing + • numpy.ctypeslib + • numpy.ma.mrecords + +
+ +
+ +
+ + numpy.dtypes +SourceModule
+imports: + numpy + • numpy.dtypes + +
+
+imported by: + numpy + • numpy.dtypes + +
+ +
+ +
+ + numpy.exceptions +SourceModule
+imports: + numpy + +
+
+imported by: + numpy + • numpy.core._internal + • numpy.core.numeric + +
+ +
+ +
+ + numpy.expand_dims +MissingModule
+imported by: + numpy + • numpy.ma.core + +
+ +
+ +
+ + numpy.eye +MissingModule
+imported by: + numpy + • numpy.core.numeric + +
+ +
+ +
+ + numpy.fft +Package
+imports: + numpy + • numpy._pytesttester + • numpy.fft + • numpy.fft._pocketfft + • numpy.fft._pocketfft_internal + • numpy.fft.helper + +
+
+imported by: + numpy + • numpy.fft + • numpy.fft._pocketfft + • numpy.fft._pocketfft_internal + • numpy.fft.helper + +
+ +
+ +
+ + numpy.fft._pocketfft +SourceModule
+imports: + functools + • numpy.core + • numpy.core.asarray + • numpy.core.conjugate + • numpy.core.multiarray + • numpy.core.overrides + • numpy.core.sqrt + • numpy.core.swapaxes + • numpy.core.zeros + • numpy.fft + • numpy.fft._pocketfft_internal + +
+
+imported by: + numpy.fft + +
+ +
+ +
+ + numpy.fft._pocketfft_internal C:\Python312\Lib\site-packages\numpy\fft\_pocketfft_internal.cp312-win_amd64.pyd
+imports: + numpy.fft + +
+
+imported by: + numpy.fft + • numpy.fft._pocketfft + +
+ +
+ +
+ + numpy.fft.helper +SourceModule
+imports: + numpy.core + • numpy.core.arange + • numpy.core.asarray + • numpy.core.empty + • numpy.core.integer + • numpy.core.overrides + • numpy.fft + +
+
+imported by: + numpy.fft + +
+ +
+ +
+ + numpy.float32 +MissingModule
+imported by: + numpy + • numpy.array_api._typing + +
+ +
+ +
+ + numpy.float64 +MissingModule
+imported by: + numpy + • numpy.array_api._typing + +
+ +
+ +
+ + numpy.floating +MissingModule
+imported by: + numpy + • numpy._typing._array_like + +
+ +
+ +
+ + numpy.generic +MissingModule
+imported by: + numpy + • numpy._typing._array_like + +
+ +
+ +
+ + numpy.histogramdd +MissingModule
+imported by: + numpy + • numpy.lib.twodim_base + +
+ +
+ +
+ + numpy.int16 +MissingModule
+imported by: + numpy + • numpy.array_api._typing + +
+ +
+ +
+ + numpy.int32 +MissingModule
+imported by: + numpy + • numpy.array_api._typing + +
+ +
+ +
+ + numpy.int64 +MissingModule
+imported by: + numpy + • numpy.array_api._typing + +
+ +
+ +
+ + numpy.int8 +MissingModule
+imported by: + numpy + • numpy.array_api._typing + +
+ +
+ +
+ + numpy.integer +MissingModule
+imported by: + numpy + • numpy._typing._array_like + • numpy.ctypeslib + +
+ +
+ +
+ + numpy.iscomplexobj +MissingModule
+imported by: + numpy + • numpy.ma.core + +
+ +
+ +
+ + numpy.isfinite +MissingModule
+imported by: + numpy + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.isinf +MissingModule
+imported by: + numpy + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.isnan +MissingModule
+imported by: + numpy + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.lib +Package
+imports: + math + • numpy + • numpy._pytesttester + • numpy.core._multiarray_umath + • numpy.lib + • numpy.lib._version + • numpy.lib.arraypad + • numpy.lib.arraysetops + • numpy.lib.arrayterator + • numpy.lib.format + • numpy.lib.function_base + • numpy.lib.histograms + • numpy.lib.imag + • numpy.lib.index_tricks + • numpy.lib.iscomplexobj + • numpy.lib.mixins + • numpy.lib.nanfunctions + • numpy.lib.npyio + • numpy.lib.polynomial + • numpy.lib.real + • numpy.lib.recfunctions + • numpy.lib.scimath + • numpy.lib.shape_base + • numpy.lib.stride_tricks + • numpy.lib.twodim_base + • numpy.lib.type_check + • numpy.lib.ufunclike + • numpy.lib.utils + • warnings + +
+
+imported by: + numpy + • numpy.lib + • numpy.lib._datasource + • numpy.lib._iotools + • numpy.lib._version + • numpy.lib.arraypad + • numpy.lib.arraysetops + • numpy.lib.arrayterator + • numpy.lib.format + • numpy.lib.function_base + • numpy.lib.histograms + • numpy.lib.index_tricks + • numpy.lib.mixins + • numpy.lib.nanfunctions + • numpy.lib.npyio + • numpy.lib.polynomial + • numpy.lib.recfunctions + • numpy.lib.scimath + • numpy.lib.shape_base + • numpy.lib.stride_tricks + • numpy.lib.twodim_base + • numpy.lib.type_check + • numpy.lib.ufunclike + • numpy.lib.utils + • numpy.testing._private.utils + • numpy.testing.overrides + +
+ +
+ +
+ + numpy.lib._datasource +SourceModule
+imports: + bz2 + • gzip + • io + • lzma + • numpy._utils + • numpy.lib + • os + • shutil + • tempfile + • urllib.error + • urllib.parse + • urllib.request + +
+
+imported by: + numpy.lib.npyio + +
+ +
+ +
+ + numpy.lib._iotools +SourceModule
+imports: + numpy + • numpy.compat + • numpy.core.numeric + • numpy.lib + +
+
+imported by: + numpy.lib.npyio + • numpy.lib.recfunctions + +
+ +
+ +
+ + numpy.lib._version +SourceModule
+imports: + numpy.lib + • re + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.arraypad +SourceModule
+imports: + numpy + • numpy.core.overrides + • numpy.lib + • numpy.lib.index_tricks + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.arraysetops +SourceModule
+imports: + functools + • numpy + • numpy.core + • numpy.core.overrides + • numpy.lib + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.arrayterator +SourceModule
+imports: + functools + • numpy.lib + • operator + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.format +SourceModule
+imports: + io + • numpy + • numpy.compat + • numpy.lib + • numpy.lib.utils + • struct + • tokenize + • warnings + +
+
+imported by: + numpy.lib + • numpy.lib.npyio + +
+ +
+ +
+ + numpy.lib.function_base +SourceModule
+imports: + builtins + • collections.abc + • functools + • numpy + • numpy._utils + • numpy.core + • numpy.core.fromnumeric + • numpy.core.function_base + • numpy.core.multiarray + • numpy.core.numeric + • numpy.core.numerictypes + • numpy.core.overrides + • numpy.core.transpose + • numpy.core.umath + • numpy.lib + • numpy.lib.histograms + • numpy.lib.twodim_base + • re + • sys + • warnings + +
+
+imported by: + numpy.lib + • numpy.lib.index_tricks + • numpy.lib.nanfunctions + • numpy.lib.polynomial + • numpy.ma.core + • numpy.ma.extras + +
+ +
+ +
+ + numpy.lib.histograms +SourceModule
+imports: + contextlib + • functools + • numpy + • numpy.core + • numpy.core.overrides + • numpy.lib + • operator + • warnings + +
+
+imported by: + numpy.lib + • numpy.lib.function_base + +
+ +
+ +
+ + numpy.lib.imag +MissingModule
+imported by: + numpy.lib + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.lib.index_tricks +SourceModule
+imports: + functools + • math + • numpy + • numpy._utils + • numpy.core + • numpy.core.linspace + • numpy.core.multiarray + • numpy.core.numeric + • numpy.core.numerictypes + • numpy.core.overrides + • numpy.lib + • numpy.lib.function_base + • numpy.lib.stride_tricks + • numpy.matrixlib + • sys + • warnings + +
+
+imported by: + numpy.lib + • numpy.lib.arraypad + • numpy.lib.shape_base + • numpy.ma.extras + +
+ +
+ +
+ + numpy.lib.iscomplexobj +MissingModule
+imported by: + numpy.lib + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.lib.mixins +SourceModule
+imports: + numpy.core + • numpy.core.umath + • numpy.lib + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.nanfunctions +SourceModule
+imports: + functools + • numpy + • numpy.core + • numpy.core.overrides + • numpy.lib + • numpy.lib.function_base + • warnings + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.npyio +SourceModule
+imports: + collections.abc + • contextlib + • functools + • itertools + • numpy + • numpy.compat + • numpy.core + • numpy.core._multiarray_umath + • numpy.core.multiarray + • numpy.core.overrides + • numpy.lib + • numpy.lib._datasource + • numpy.lib._iotools + • numpy.lib.format + • numpy.ma + • numpy.ma.mrecords + • operator + • os + • re + • warnings + • weakref + • zipfile + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.polynomial +SourceModule
+imports: + functools + • numpy._utils + • numpy.core + • numpy.core.array + • numpy.core.atleast_1d + • numpy.core.dot + • numpy.core.finfo + • numpy.core.hstack + • numpy.core.isscalar + • numpy.core.numeric + • numpy.core.ones + • numpy.core.overrides + • numpy.lib + • numpy.lib.function_base + • numpy.lib.twodim_base + • numpy.lib.type_check + • numpy.linalg + • re + • warnings + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.real +MissingModule
+imported by: + numpy.lib + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.lib.recfunctions +SourceModule
+imports: + itertools + • numpy + • numpy.core.overrides + • numpy.lib + • numpy.lib._iotools + • numpy.ma + • numpy.ma.mrecords + • numpy.ndarray + • numpy.recarray + +
+
+imported by: + numpy.lib + • numpy.testing.overrides + +
+ +
+ +
+ + numpy.lib.scimath +SourceModule
+imports: + numpy.core.numeric + • numpy.core.numerictypes + • numpy.core.overrides + • numpy.lib + • numpy.lib.type_check + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.shape_base +SourceModule
+imports: + functools + • numpy.core + • numpy.core.atleast_3d + • numpy.core.fromnumeric + • numpy.core.multiarray + • numpy.core.numeric + • numpy.core.overrides + • numpy.core.shape_base + • numpy.core.vstack + • numpy.lib + • numpy.lib.index_tricks + • numpy.matrixlib.defmatrix + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.stride_tricks +SourceModule
+imports: + numpy + • numpy.core.numeric + • numpy.core.overrides + • numpy.lib + +
+
+imported by: + numpy.core._methods + • numpy.lib + • numpy.lib.index_tricks + • numpy.lib.twodim_base + +
+ +
+ +
+ + numpy.lib.twodim_base +SourceModule
+imports: + functools + • numpy + • numpy.core + • numpy.core.iinfo + • numpy.core.numeric + • numpy.core.overrides + • numpy.histogramdd + • numpy.lib + • numpy.lib.stride_tricks + • operator + +
+
+imported by: + numpy.lib + • numpy.lib.function_base + • numpy.lib.polynomial + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.lib.type_check +SourceModule
+imports: + functools + • numpy._utils + • numpy.core + • numpy.core.getlimits + • numpy.core.numeric + • numpy.core.overrides + • numpy.lib + • numpy.lib.ufunclike + +
+
+imported by: + numpy.lib + • numpy.lib.polynomial + • numpy.lib.scimath + +
+ +
+ +
+ + numpy.lib.ufunclike +SourceModule
+imports: + functools + • numpy.core.numeric + • numpy.core.overrides + • numpy.lib + • warnings + +
+
+imported by: + numpy.lib + • numpy.lib.type_check + +
+ +
+ +
+ + numpy.lib.utils +SourceModule
+imports: + ast + • functools + • inspect + • io + • numpy + • numpy._utils + • numpy.core + • numpy.core._multiarray_umath + • numpy.core.asarray + • numpy.core.ndarray + • numpy.core.numerictypes + • numpy.core.ufunc + • numpy.lib + • os + • platform + • pprint + • pydoc + • re + • sys + • textwrap + • threadpoolctl + • types + • warnings + +
+
+imported by: + numpy.lib + • numpy.lib.format + +
+ +
+ +
+ + numpy.linalg +Package
+imports: + numpy + • numpy._pytesttester + • numpy.linalg + • numpy.linalg._umath_linalg + • numpy.linalg.linalg + +
+
+imported by: + numpy + • numpy.array_api.linalg + • numpy.lib.polynomial + • numpy.linalg + • numpy.linalg._umath_linalg + • numpy.linalg.linalg + • numpy.matrixlib.defmatrix + • numpy.polynomial.chebyshev + • numpy.polynomial.hermite + • numpy.polynomial.hermite_e + • numpy.polynomial.laguerre + • numpy.polynomial.legendre + • numpy.polynomial.polynomial + +
+ +
+ +
+ + numpy.linalg._umath_linalg C:\Python312\Lib\site-packages\numpy\linalg\_umath_linalg.cp312-win_amd64.pyd
+imports: + numpy.linalg + +
+
+imported by: + numpy.array_api.linalg + • numpy.linalg + • numpy.linalg.linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.linalg.linalg +SourceModule
+imports: + functools + • numpy + • numpy._typing + • numpy._utils + • numpy.core + • numpy.core.Inf + • numpy.core.add + • numpy.core.all + • numpy.core.amax + • numpy.core.amin + • numpy.core.argsort + • numpy.core.array + • numpy.core.asanyarray + • numpy.core.asarray + • numpy.core.atleast_2d + • numpy.core.cdouble + • numpy.core.complexfloating + • numpy.core.count_nonzero + • numpy.core.csingle + • numpy.core.divide + • numpy.core.dot + • numpy.core.double + • numpy.core.empty + • numpy.core.empty_like + • numpy.core.errstate + • numpy.core.finfo + • numpy.core.geterrobj + • numpy.core.inexact + • numpy.core.intc + • numpy.core.intp + • numpy.core.isfinite + • numpy.core.isnan + • numpy.core.matmul + • numpy.core.moveaxis + • numpy.core.multiarray + • numpy.core.multiply + • numpy.core.newaxis + • numpy.core.object_ + • numpy.core.overrides + • numpy.core.prod + • numpy.core.reciprocal + • numpy.core.sign + • numpy.core.single + • numpy.core.sort + • numpy.core.sqrt + • numpy.core.sum + • numpy.core.swapaxes + • numpy.core.zeros + • numpy.lib.twodim_base + • numpy.linalg + • numpy.linalg._umath_linalg + • operator + • typing + • warnings + +
+
+imported by: + numpy.array_api.linalg + • numpy.linalg + +
+ +
+ +
+ + numpy.ma +Package
+imports: + numpy + • numpy._pytesttester + • numpy.ma + • numpy.ma.core + • numpy.ma.extras + +
+
+imported by: + numpy + • numpy.lib.npyio + • numpy.lib.recfunctions + • numpy.ma + • numpy.ma.core + • numpy.ma.extras + • numpy.ma.mrecords + +
+ +
+ +
+ + numpy.ma.core +SourceModule
+imports: + builtins + • copy + • functools + • inspect + • numpy + • numpy.amax + • numpy.amin + • numpy.array + • numpy.bool_ + • numpy.compat + • numpy.core + • numpy.core.multiarray + • numpy.core.numeric + • numpy.core.numerictypes + • numpy.core.umath + • numpy.expand_dims + • numpy.iscomplexobj + • numpy.lib.function_base + • numpy.ma + • numpy.ndarray + • operator + • re + • textwrap + • warnings + +
+
+imported by: + numpy.ma + • numpy.ma.extras + +
+ +
+ +
+ + numpy.ma.extras +SourceModule
+imports: + itertools + • numpy + • numpy.array + • numpy.core.multiarray + • numpy.core.numeric + • numpy.lib.function_base + • numpy.lib.index_tricks + • numpy.ma + • numpy.ma.core + • numpy.ndarray + • warnings + +
+
+imported by: + numpy.ma + +
+ +
+ +
+ + numpy.ma.mrecords +SourceModule
+imports: + numpy + • numpy.array + • numpy.bool_ + • numpy.core.records + • numpy.dtype + • numpy.ma + • numpy.ndarray + • numpy.recarray + • warnings + +
+
+imported by: + numpy.lib.npyio + • numpy.lib.recfunctions + +
+ +
+ +
+ + numpy.matrixlib +Package
+imports: + numpy + • numpy._pytesttester + • numpy.matrixlib + • numpy.matrixlib.defmatrix + +
+
+imported by: + numpy + • numpy.lib.index_tricks + • numpy.matrixlib + • numpy.matrixlib.defmatrix + +
+ +
+ +
+ + numpy.matrixlib.defmatrix +SourceModule
+imports: + ast + • numpy._utils + • numpy.core.numeric + • numpy.linalg + • numpy.matrixlib + • sys + • warnings + +
+
+imported by: + numpy.lib.shape_base + • numpy.matrixlib + +
+ +
+ +
+ + numpy.ndarray +MissingModule
+imported by: + numpy + • numpy._typing._array_like + • numpy.ctypeslib + • numpy.lib.recfunctions + • numpy.ma.core + • numpy.ma.extras + • numpy.ma.mrecords + +
+ +
+ +
+ + numpy.number +MissingModule
+imported by: + numpy + • numpy._typing._array_like + +
+ +
+ +
+ + numpy.object_ +MissingModule
+imported by: + numpy + • numpy._typing._array_like + +
+ +
+ +
+ + numpy.polynomial +Package
+imports: + numpy + • numpy._pytesttester + • numpy.polynomial + • numpy.polynomial._polybase + • numpy.polynomial.chebyshev + • numpy.polynomial.hermite + • numpy.polynomial.hermite_e + • numpy.polynomial.laguerre + • numpy.polynomial.legendre + • numpy.polynomial.polynomial + • numpy.polynomial.polyutils + +
+
+imported by: + numpy + • numpy.polynomial + • numpy.polynomial._polybase + • numpy.polynomial.chebyshev + • numpy.polynomial.hermite + • numpy.polynomial.hermite_e + • numpy.polynomial.laguerre + • numpy.polynomial.legendre + • numpy.polynomial.polynomial + • numpy.polynomial.polyutils + +
+ +
+ +
+ + numpy.polynomial._polybase +SourceModule
+imports: + abc + • numbers + • numpy + • numpy.polynomial + • numpy.polynomial.polyutils + • os + +
+
+imported by: + numpy.polynomial + • numpy.polynomial.chebyshev + • numpy.polynomial.hermite + • numpy.polynomial.hermite_e + • numpy.polynomial.laguerre + • numpy.polynomial.legendre + • numpy.polynomial.polynomial + +
+ +
+ +
+ + numpy.polynomial.chebyshev +SourceModule
+imports: + numpy + • numpy.core.multiarray + • numpy.linalg + • numpy.polynomial + • numpy.polynomial._polybase + • numpy.polynomial.polynomial + • numpy.polynomial.polyutils + +
+
+imported by: + numpy.polynomial + +
+ +
+ +
+ + numpy.polynomial.hermite +SourceModule
+imports: + numpy + • numpy.core.multiarray + • numpy.linalg + • numpy.polynomial + • numpy.polynomial._polybase + • numpy.polynomial.polynomial + • numpy.polynomial.polyutils + +
+
+imported by: + numpy.polynomial + +
+ +
+ +
+ + numpy.polynomial.hermite_e +SourceModule
+imports: + numpy + • numpy.core.multiarray + • numpy.linalg + • numpy.polynomial + • numpy.polynomial._polybase + • numpy.polynomial.polynomial + • numpy.polynomial.polyutils + +
+
+imported by: + numpy.polynomial + +
+ +
+ +
+ + numpy.polynomial.laguerre +SourceModule
+imports: + numpy + • numpy.core.multiarray + • numpy.linalg + • numpy.polynomial + • numpy.polynomial._polybase + • numpy.polynomial.polynomial + • numpy.polynomial.polyutils + +
+
+imported by: + numpy.polynomial + +
+ +
+ +
+ + numpy.polynomial.legendre +SourceModule
+imports: + numpy + • numpy.core.multiarray + • numpy.linalg + • numpy.polynomial + • numpy.polynomial._polybase + • numpy.polynomial.polynomial + • numpy.polynomial.polyutils + +
+
+imported by: + numpy.polynomial + +
+ +
+ +
+ + numpy.polynomial.polynomial +SourceModule
+imports: + numpy + • numpy.core.multiarray + • numpy.linalg + • numpy.polynomial + • numpy.polynomial._polybase + • numpy.polynomial.polyutils + +
+
+imported by: + numpy.polynomial + • numpy.polynomial.chebyshev + • numpy.polynomial.hermite + • numpy.polynomial.hermite_e + • numpy.polynomial.laguerre + • numpy.polynomial.legendre + +
+ +
+ +
+ + numpy.polynomial.polyutils +SourceModule
+imports: + functools + • numpy + • numpy.core.multiarray + • numpy.core.umath + • numpy.polynomial + • operator + • warnings + +
+
+imported by: + numpy.polynomial + • numpy.polynomial._polybase + • numpy.polynomial.chebyshev + • numpy.polynomial.hermite + • numpy.polynomial.hermite_e + • numpy.polynomial.laguerre + • numpy.polynomial.legendre + • numpy.polynomial.polynomial + +
+ +
+ +
+ + numpy.random +Package
+imports: + numpy + • numpy._pytesttester + • numpy.random + • numpy.random._bounded_integers + • numpy.random._common + • numpy.random._generator + • numpy.random._mt19937 + • numpy.random._pcg64 + • numpy.random._philox + • numpy.random._pickle + • numpy.random._sfc64 + • numpy.random.bit_generator + • numpy.random.mtrand + +
+
+imported by: + numpy + • numpy.random + • numpy.random._bounded_integers + • numpy.random._common + • numpy.random._generator + • numpy.random._mt19937 + • numpy.random._pcg64 + • numpy.random._philox + • numpy.random._pickle + • numpy.random._sfc64 + • numpy.random.bit_generator + • numpy.random.mtrand + +
+ +
+ +
+ + numpy.random._bounded_integers C:\Python312\Lib\site-packages\numpy\random\_bounded_integers.cp312-win_amd64.pyd
+imports: + numpy.random + +
+
+imported by: + numpy.random + +
+ +
+ +
+ + numpy.random._common C:\Python312\Lib\site-packages\numpy\random\_common.cp312-win_amd64.pyd
+imports: + numpy.random + +
+
+imported by: + numpy.random + +
+ +
+ +
+ + numpy.random._generator C:\Python312\Lib\site-packages\numpy\random\_generator.cp312-win_amd64.pyd
+imports: + numpy.random + +
+
+imported by: + numpy.random + • numpy.random._pickle + +
+ +
+ +
+ + numpy.random._mt19937 C:\Python312\Lib\site-packages\numpy\random\_mt19937.cp312-win_amd64.pyd
+imports: + numpy.random + +
+
+imported by: + numpy.random + • numpy.random._pickle + +
+ +
+ +
+ + numpy.random._pcg64 C:\Python312\Lib\site-packages\numpy\random\_pcg64.cp312-win_amd64.pyd
+imports: + numpy.random + +
+
+imported by: + numpy.random + • numpy.random._pickle + +
+ +
+ +
+ + numpy.random._philox C:\Python312\Lib\site-packages\numpy\random\_philox.cp312-win_amd64.pyd
+imports: + numpy.random + +
+
+imported by: + numpy.random + • numpy.random._pickle + +
+ +
+ +
+ + numpy.random._pickle +SourceModule
+imports: + numpy.random + • numpy.random._generator + • numpy.random._mt19937 + • numpy.random._pcg64 + • numpy.random._philox + • numpy.random._sfc64 + • numpy.random.mtrand + +
+
+imported by: + numpy.random + +
+ +
+ +
+ + numpy.random._sfc64 C:\Python312\Lib\site-packages\numpy\random\_sfc64.cp312-win_amd64.pyd
+imports: + numpy.random + +
+
+imported by: + numpy.random + • numpy.random._pickle + +
+ +
+ +
+ + numpy.random.bit_generator C:\Python312\Lib\site-packages\numpy\random\bit_generator.cp312-win_amd64.pyd
+imports: + numpy.random + +
+
+imported by: + numpy.random + +
+ +
+ +
+ + numpy.random.mtrand C:\Python312\Lib\site-packages\numpy\random\mtrand.cp312-win_amd64.pyd
+imports: + numpy.random + +
+
+imported by: + numpy.random + • numpy.random._pickle + +
+ +
+ +
+ + numpy.recarray +MissingModule
+imported by: + numpy + • numpy.lib.recfunctions + • numpy.ma.mrecords + +
+ +
+ +
+ + numpy.str_ +MissingModule
+imported by: + numpy + • numpy._typing._array_like + +
+ +
+ +
+ + numpy.testing +Package
+imports: + numpy + • numpy._pytesttester + • numpy.testing + • numpy.testing._private + • numpy.testing._private.extbuild + • numpy.testing._private.utils + • numpy.testing.overrides + • unittest + +
+
+imported by: + numpy + • numpy._pytesttester + • numpy.testing + • numpy.testing._private + • numpy.testing.overrides + +
+ +
+ +
+ + numpy.testing._private +Package
+imports: + numpy.testing + • numpy.testing._private.extbuild + +
+
+imported by: + numpy.testing + • numpy.testing._private.extbuild + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy.testing._private.extbuild +SourceModule
+imports: + importlib.util + • numpy.testing._private + • os + • pathlib + • subprocess + • sys + • sysconfig + • textwrap + +
+
+imported by: + numpy.testing + • numpy.testing._private + +
+ +
+ +
+ + numpy.testing._private.utils +SourceModule
+imports: + contextlib + • difflib + • doctest + • functools + • gc + • inspect + • io + • numpy + • numpy.core + • numpy.core.all + • numpy.core.arange + • numpy.core.array + • numpy.core.array2string + • numpy.core.array_repr + • numpy.core.bool_ + • numpy.core.empty + • numpy.core.errstate + • numpy.core.float32 + • numpy.core.float_ + • numpy.core.fromnumeric + • numpy.core.inf + • numpy.core.intp + • numpy.core.isnan + • numpy.core.isnat + • numpy.core.isscalar + • numpy.core.max + • numpy.core.ndarray + • numpy.core.number + • numpy.core.numerictypes + • numpy.core.object_ + • numpy.core.result_type + • numpy.core.signbit + • numpy.isfinite + • numpy.isinf + • numpy.isnan + • numpy.lib + • numpy.lib.imag + • numpy.lib.iscomplexobj + • numpy.lib.real + • numpy.linalg._umath_linalg + • numpy.testing._private + • operator + • os + • platform + • pprint + • psutil + • re + • shutil + • subprocess + • sys + • sysconfig + • tempfile + • time + • traceback + • unittest + • unittest.case + • warnings + • win32pdh + +
+
+imported by: + numpy.testing + +
+ +
+ +
+ + numpy.testing.overrides +SourceModule
+imports: + numpy + • numpy.core.overrides + • numpy.core.umath + • numpy.lib + • numpy.lib.recfunctions + • numpy.testing + • numpy.ufunc + +
+
+imported by: + numpy.testing + +
+ +
+ +
+ + numpy.timedelta64 +MissingModule
+imported by: + numpy + • numpy._typing._array_like + +
+ +
+ +
+ + numpy.typing +Package
+imports: + numpy + • numpy._pytesttester + • numpy._typing + • numpy._typing._add_docstring + +
+
+imported by: + numpy.array_api._array_object + +
+ +
+ +
+ + numpy.ufunc +MissingModule
+imported by: + numpy + • numpy._typing + • numpy.testing.overrides + +
+ +
+ +
+ + numpy.uint16 +MissingModule
+imported by: + numpy + • numpy.array_api._typing + +
+ +
+ +
+ + numpy.uint32 +MissingModule
+imported by: + numpy + • numpy.array_api._typing + +
+ +
+ +
+ + numpy.uint64 +MissingModule
+imported by: + numpy + • numpy.array_api._typing + +
+ +
+ +
+ + numpy.uint8 +MissingModule
+imported by: + numpy + • numpy.array_api._typing + +
+ +
+ +
+ + numpy.unsignedinteger +MissingModule
+imported by: + numpy + • numpy._typing._array_like + +
+ +
+ +
+ + numpy.version +SourceModule
+imports: + numpy + +
+
+imported by: + numpy + • numpy.core + +
+ +
+ +
+ + numpy.void +MissingModule
+imported by: + numpy + • numpy._typing._array_like + +
+ +
+ +
+ + opcode +SourceModule
+imports: + _opcode + +
+
+imported by: + dis + +
+ +
+ +
+ + operator +SourceModule
+imports: + _operator + • builtins + • functools + +
+
+imported by: + Sonic.pyw + • _pydatetime + • collections + • copyreg + • email._header_value_parser + • enum + • fractions + • gettext + • importlib.metadata + • importlib.resources.readers + • inspect + • numpy.array_api._array_object + • numpy.core.arrayprint + • numpy.core.einsumfunc + • numpy.core.function_base + • numpy.core.numeric + • numpy.core.shape_base + • numpy.lib.arrayterator + • numpy.lib.histograms + • numpy.lib.npyio + • numpy.lib.twodim_base + • numpy.linalg.linalg + • numpy.ma.core + • numpy.polynomial.polyutils + • numpy.testing._private.utils + • random + • statistics + • typing + +
+ +
+ +
+ + os +SourceModule
+imports: + _collections_abc + • abc + • io + • nt + • ntpath + • ntpath + • posix + • posixpath + • stat + • subprocess + • sys + • warnings + +
+
+imported by: + PyQt5 + • Sonic.pyw + • _aix_support + • _pyi_rth_utils + • _pyi_rth_utils.qt + • argparse + • asyncio.base_events + • asyncio.coroutines + • asyncio.events + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.unix_events + • asyncio.windows_utils + • bdb + • bz2 + • concurrent.futures.process + • concurrent.futures.thread + • contextlib + • ctypes + • doctest + • email.utils + • fnmatch + • genericpath + • getopt + • getpass + • gettext + • glob + • gzip + • http.cookiejar + • http.server + • importlib.metadata + • importlib.resources._common + • importlib.resources._legacy + • importlib.resources.abc + • inspect + • linecache + • locale + • logging + • lzma + • mimetypes + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.forkserver + • multiprocessing.heap + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.popen_fork + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + • multiprocessing.popen_spawn_win32 + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.reduction + • multiprocessing.resource_sharer + • multiprocessing.resource_tracker + • multiprocessing.shared_memory + • multiprocessing.spawn + • multiprocessing.util + • netrc + • ntpath + • ntpath + • numpy + • numpy._pytesttester + • numpy.compat.py3k + • numpy.core + • numpy.core._add_newdocs_scalars + • numpy.core.overrides + • numpy.ctypeslib + • numpy.lib._datasource + • numpy.lib.npyio + • numpy.lib.utils + • numpy.polynomial._polybase + • numpy.testing._private.extbuild + • numpy.testing._private.utils + • pathlib + • pdb + • pkgutil + • platform + • posixpath + • py_compile + • pydoc + • pyi_rth_inspect.py + • pyi_rth_multiprocessing.py + • pyi_rth_pyqt5.py + • random + • runpy + • shlex + • shutil + • socket + • socketserver + • ssl + • subprocess + • sysconfig + • tarfile + • tempfile + • threading + • unittest.loader + • unittest.main + • urllib.request + • webbrowser + • xml.sax + • xml.sax.saxutils + • zipfile + +
+ +
+ +
+ + pathlib +SourceModule
+imports: + _collections_abc + • errno + • fnmatch + • functools + • grp + • io + • ntpath + • os + • posixpath + • pwd + • re + • stat + • sys + • urllib.parse + • warnings + +
+
+imported by: + importlib.metadata + • importlib.resources._common + • importlib.resources._legacy + • importlib.resources.abc + • importlib.resources.readers + • numpy + • numpy.compat.py3k + • numpy.testing._private.extbuild + • pyi_rth_pkgutil.py + • zipfile._path + +
+ +
+ +
+ + pdb +SourceModule
+imports: + bdb + • cmd + • code + • dis + • functools + • getopt + • glob + • inspect + • io + • linecache + • os + • pdb + • pprint + • pydoc + • re + • readline + • runpy + • shlex + • signal + • sys + • token + • tokenize + • traceback + • typing + +
+
+imported by: + doctest + • pdb + +
+ +
+ +
+ + pickle +SourceModule
+imports: + _compat_pickle + • _pickle + • codecs + • copyreg + • functools + • io + • itertools + • pprint + • re + • struct + • sys + • types + +
+
+imported by: + logging + • multiprocessing.reduction + • numpy.compat.py3k + • tracemalloc + +
+ +
+ +
+ + pickle5 +MissingModule
+imported by: + numpy.compat.py3k + +
+ +
+ +
+ + pkgutil +SourceModule
+imports: + collections + • functools + • importlib + • importlib.machinery + • importlib.util + • inspect + • marshal + • ntpath + • os + • re + • sys + • types + • warnings + • zipimport + +
+
+imported by: + PyQt5 + • pydoc + • pyi_rth_pkgutil.py + • runpy + +
+ +
+ +
+ + platform +SourceModule
+imports: + 'java.lang' + • _winreg + • _wmi + • collections + • functools + • itertools + • java + • os + • re + • socket + • struct + • subprocess + • sys + • vms_lib + • winreg + +
+
+imported by: + numpy.lib.utils + • numpy.testing._private.utils + • pydoc + +
+ +
+ +
+ + posix +MissingModule
+imports: + resource + +
+
+imported by: + importlib._bootstrap_external + • os + • posixpath + • shutil + +
+ +
+ +
+ + posixpath +SourceModule
+imports: + genericpath + • os + • posix + • pwd + • re + • stat + • sys + +
+
+imported by: + Sonic.pyw + • fnmatch + • http.server + • importlib.metadata + • mimetypes + • os + • pathlib + • zipfile._path + +
+ +
+ +
+ + pprint +SourceModule
+imports: + collections + • dataclasses + • io + • re + • sys + • types + +
+
+imported by: + numpy.lib.utils + • numpy.testing._private.utils + • pdb + • pickle + • sysconfig + • unittest.case + +
+ +
+ +
+ + psutil +MissingModule
+imported by: + numpy.testing._private.utils + +
+ +
+ +
+ + pwd +MissingModule
+imported by: + getpass + • http.server + • netrc + • pathlib + • posixpath + • shutil + • subprocess + • tarfile + +
+ +
+ +
+ + py_compile +SourceModule
+imports: + argparse + • enum + • importlib._bootstrap_external + • importlib.machinery + • importlib.util + • ntpath + • os + • sys + • traceback + +
+
+imported by: + zipfile + +
+ +
+ +
+ + pyaudio +Package
+imports: + locale + • pyaudio._portaudio + • warnings + +
+
+imported by: + Sonic.pyw + • pyaudio._portaudio + +
+ +
+ +
+ + pyaudio._portaudio C:\Python312\Lib\site-packages\pyaudio\_portaudio.cp312-win_amd64.pyd
+imports: + pyaudio + +
+
+imported by: + pyaudio + +
+ +
+ +
+ + pydoc +SourceModule
+imports: + __future__ + • builtins + • collections + • email.message + • getopt + • http.server + • importlib._bootstrap + • importlib._bootstrap_external + • importlib.machinery + • importlib.util + • inspect + • io + • os + • pkgutil + • platform + • pydoc_data.topics + • re + • reprlib + • select + • subprocess + • sys + • sysconfig + • tempfile + • textwrap + • threading + • time + • tokenize + • traceback + • tty + • urllib.parse + • warnings + • webbrowser + +
+
+imported by: + numpy.lib.utils + • pdb + +
+ +
+ +
+ + pydoc_data +Package
+imported by: + pydoc_data.topics + +
+ +
+ +
+ + pydoc_data.topics +SourceModule
+imports: + pydoc_data + +
+
+imported by: + pydoc + +
+ +
+ +
+ + pyexpat C:\Python312\DLLs\pyexpat.pyd
+imported by: + xml.parsers.expat + +
+ +
+ +
+ + pyimod02_importers +MissingModule
+imported by: + pyi_rth_pkgutil.py + +
+ +
+ +
+ + queue +SourceModule
+imports: + _queue + • collections + • heapq + • threading + • time + • types + +
+
+imported by: + concurrent.futures.process + • concurrent.futures.thread + • multiprocessing.dummy + • multiprocessing.dummy.connection + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.queues + +
+ +
+ +
+ + quopri +SourceModule
+imports: + binascii + • getopt + • io + • sys + +
+
+imported by: + email.encoders + • email.message + • encodings.quopri_codec + +
+ +
+ +
+ + random +SourceModule
+imports: + _collections_abc + • _random + • _sha2 + • bisect + • hashlib + • itertools + • math + • operator + • os + • statistics + • time + • warnings + +
+
+imported by: + email.generator + • email.utils + • secrets + • statistics + • tempfile + +
+ +
+ +
+ + re +Package
+imports: + _sre + • copyreg + • enum + • functools + • re + • re._compiler + • re._constants + • re._parser + • warnings + +
+
+imported by: + Sonic.pyw + • _pydecimal + • _sre + • _strptime + • argparse + • ast + • base64 + • csv + • dataclasses + • difflib + • doctest + • email._encoded_words + • email._header_value_parser + • email.feedparser + • email.generator + • email.header + • email.message + • email.policy + • email.quoprimime + • email.utils + • encodings.idna + • fnmatch + • fractions + • ftplib + • gettext + • glob + • html + • http.client + • http.cookiejar + • importlib.metadata + • importlib.metadata._adapters + • importlib.metadata._text + • inspect + • ipaddress + • json.decoder + • json.encoder + • json.scanner + • locale + • logging + • numpy._typing._add_docstring + • numpy.core._internal + • numpy.lib._version + • numpy.lib.function_base + • numpy.lib.npyio + • numpy.lib.polynomial + • numpy.lib.utils + • numpy.ma.core + • numpy.testing._private.utils + • pathlib + • pdb + • pickle + • pkgutil + • platform + • posixpath + • pprint + • pydoc + • re + • re._casefix + • re._compiler + • re._constants + • re._parser + • shlex + • sre_compile + • sre_constants + • sre_parse + • string + • sysconfig + • tarfile + • textwrap + • tokenize + • typing + • unittest.case + • unittest.loader + • urllib.parse + • urllib.request + • warnings + • yaml.constructor + • yaml.reader + • yaml.resolver + • zipfile._path + • zipfile._path.glob + +
+ +
+ +
+ + re._casefix +SourceModule
+imports: + re + +
+
+imported by: + Sonic.pyw + • re._compiler + +
+ +
+ +
+ + re._compiler +SourceModule
+imports: + _sre + • re + • re._casefix + • re._constants + • re._parser + • sys + +
+
+imported by: + Sonic.pyw + • re + • sre_compile + +
+ +
+ +
+ + re._constants +SourceModule
+imports: + _sre + • re + +
+
+imported by: + Sonic.pyw + • re + • re._compiler + • re._parser + • sre_constants + +
+ +
+ +
+ + re._parser +SourceModule
+imports: + re + • re._constants + • unicodedata + • warnings + +
+
+imported by: + Sonic.pyw + • re + • re._compiler + • sre_parse + +
+ +
+ +
+ + readline +MissingModule
+imported by: + cmd + • code + • pdb + +
+ +
+ +
+ + reprlib +SourceModule
+imports: + _thread + • builtins + • itertools + +
+
+imported by: + Sonic.pyw + • asyncio.base_futures + • asyncio.base_tasks + • asyncio.format_helpers + • bdb + • collections + • functools + • pydoc + +
+ +
+ +
+ + resource +MissingModule
+imported by: + posix + +
+ +
+ +
+ + runpy +SourceModule
+imports: + importlib.machinery + • importlib.util + • io + • os + • pkgutil + • sys + • warnings + +
+
+imported by: + multiprocessing.spawn + • pdb + +
+ +
+ +
+ + secrets +SourceModule
+imports: + base64 + • hmac + • random + +
+
+imported by: + multiprocessing.shared_memory + +
+ +
+ +
+ + select C:\Python312\DLLs\select.pyd
+imported by: + http.server + • pydoc + • selectors + • subprocess + +
+ +
+ +
+ + selectors +SourceModule
+imports: + abc + • collections + • collections.abc + • math + • select + • sys + +
+
+imported by: + asyncio.selector_events + • asyncio.unix_events + • multiprocessing.connection + • multiprocessing.forkserver + • socket + • socketserver + • subprocess + +
+ +
+ +
+ + shlex +SourceModule
+imports: + collections + • io + • os + • re + • sys + +
+
+imported by: + pdb + • webbrowser + +
+ +
+ +
+ + shutil +SourceModule
+imports: + _winapi + • bz2 + • collections + • errno + • fnmatch + • grp + • lzma + • nt + • os + • posix + • pwd + • stat + • sys + • tarfile + • warnings + • zipfile + • zlib + +
+
+imported by: + argparse + • http.server + • multiprocessing.util + • numpy.lib._datasource + • numpy.testing._private.utils + • tarfile + • tempfile + • webbrowser + • zipfile + +
+ +
+ +
+ + signal +SourceModule
+imports: + _signal + • enum + +
+
+imported by: + asyncio.events + • asyncio.proactor_events + • asyncio.runners + • asyncio.unix_events + • multiprocessing.forkserver + • multiprocessing.managers + • multiprocessing.popen_fork + • multiprocessing.popen_spawn_win32 + • multiprocessing.process + • multiprocessing.resource_sharer + • multiprocessing.resource_tracker + • pdb + • subprocess + • unittest.signals + +
+ +
+ +
+ + socket +SourceModule
+imports: + _socket + • array + • enum + • errno + • io + • os + • selectors + • sys + +
+
+imported by: + _ssl + • asyncio.base_events + • asyncio.events + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.streams + • asyncio.trsock + • asyncio.unix_events + • asyncio.windows_events + • email.utils + • ftplib + • http.client + • http.server + • multiprocessing.connection + • multiprocessing.forkserver + • multiprocessing.reduction + • multiprocessing.resource_sharer + • platform + • socketserver + • ssl + • urllib.request + +
+ +
+ +
+ + socketserver +SourceModule
+imports: + io + • os + • selectors + • socket + • sys + • threading + • time + • traceback + +
+
+imported by: + http.server + +
+ +
+ +
+ + sre_compile +SourceModule
+imports: + re + • re._compiler + • warnings + +
+
+imported by: + Sonic.pyw + +
+ +
+ +
+ + sre_constants +SourceModule
+imports: + re + • re._constants + • warnings + +
+
+imported by: + Sonic.pyw + +
+ +
+ +
+ + sre_parse +SourceModule
+imports: + re + • re._parser + • warnings + +
+
+imported by: + Sonic.pyw + +
+ +
+ +
+ + ssl +SourceModule
+imports: + _ssl + • base64 + • calendar + • collections + • enum + • errno + • os + • socket + • sys + • time + • warnings + +
+
+imported by: + asyncio.base_events + • asyncio.selector_events + • asyncio.sslproto + • ftplib + • http.client + • urllib.request + +
+ +
+ +
+ + stat +SourceModule
+imports: + _stat + +
+
+imported by: + Sonic.pyw + • asyncio.base_events + • asyncio.unix_events + • genericpath + • glob + • netrc + • ntpath + • os + • pathlib + • posixpath + • shutil + • tarfile + • zipfile + +
+ +
+ +
+ + statistics +SourceModule
+imports: + _statistics + • bisect + • collections + • decimal + • fractions + • functools + • itertools + • math + • numbers + • operator + • random + • sys + +
+
+imported by: + random + +
+ +
+ +
+ + string +SourceModule
+imports: + _string + • collections + • re + +
+
+imported by: + cmd + • email._encoded_words + • email._header_value_parser + • email.quoprimime + • logging + • ntpath + • nturl2path + • urllib.request + +
+ +
+ +
+ + stringprep +SourceModule
+imports: + unicodedata + +
+
+imported by: + encodings.idna + +
+ +
+ +
+ + struct +SourceModule
+imports: + _struct + +
+
+imported by: + asyncio.windows_events + • base64 + • ctypes + • gettext + • gzip + • multiprocessing.connection + • multiprocessing.forkserver + • multiprocessing.shared_memory + • multiprocessing.synchronize + • numpy.lib.format + • pickle + • platform + • tarfile + • zipfile + +
+ +
+ +
+ + subprocess +SourceModule
+imports: + _posixsubprocess + • _winapi + • builtins + • contextlib + • errno + • fcntl + • grp + • io + • locale + • msvcrt + • os + • pwd + • select + • selectors + • signal + • sys + • threading + • time + • types + • warnings + +
+
+imported by: + _aix_support + • asyncio.base_events + • asyncio.base_subprocess + • asyncio.events + • asyncio.subprocess + • asyncio.unix_events + • asyncio.windows_utils + • http.server + • multiprocessing.util + • numpy.testing._private.extbuild + • numpy.testing._private.utils + • os + • platform + • pydoc + • pyi_rth_multiprocessing.py + • webbrowser + +
+ +
+ +
+ + sys (builtin module)
+imported by: + PyQt5 + • Sonic.pyw + • _aix_support + • _collections_abc + • _compression + • _pydatetime + • _pydecimal + • _pyi_rth_utils + • argparse + • ast + • asyncio + • asyncio.base_events + • asyncio.coroutines + • asyncio.events + • asyncio.format_helpers + • asyncio.futures + • asyncio.streams + • asyncio.unix_events + • asyncio.windows_events + • asyncio.windows_utils + • base64 + • bdb + • calendar + • cmd + • code + • codecs + • collections + • concurrent.futures.process + • contextlib + • ctypes + • ctypes._endian + • dataclasses + • dis + • doctest + • email._header_value_parser + • email.generator + • email.iterators + • email.policy + • encodings + • encodings.rot_13 + • encodings.utf_16 + • encodings.utf_32 + • enum + • fractions + • ftplib + • getopt + • getpass + • gettext + • glob + • gzip + • http.client + • http.server + • importlib + • importlib._bootstrap_external + • importlib.metadata + • importlib.util + • inspect + • linecache + • locale + • logging + • mimetypes + • multiprocessing + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.dummy + • multiprocessing.forkserver + • multiprocessing.heap + • multiprocessing.managers + • multiprocessing.popen_spawn_win32 + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.reduction + • multiprocessing.resource_sharer + • multiprocessing.resource_tracker + • multiprocessing.spawn + • multiprocessing.synchronize + • multiprocessing.util + • ntpath + • numpy + • numpy._pytesttester + • numpy._typing._array_like + • numpy.array_api._typing + • numpy.compat.py3k + • numpy.core + • numpy.core._add_newdocs_scalars + • numpy.core._internal + • numpy.core.arrayprint + • numpy.core.numeric + • numpy.ctypeslib + • numpy.lib.function_base + • numpy.lib.index_tricks + • numpy.lib.utils + • numpy.matrixlib.defmatrix + • numpy.testing._private.extbuild + • numpy.testing._private.utils + • os + • pathlib + • pdb + • pickle + • pkgutil + • platform + • posixpath + • pprint + • py_compile + • pydoc + • pyi_rth_inspect.py + • pyi_rth_multiprocessing.py + • pyi_rth_pkgutil.py + • pyi_rth_pyqt5.py + • quopri + • re._compiler + • runpy + • selectors + • shlex + • shutil + • socket + • socketserver + • ssl + • statistics + • subprocess + • sysconfig + • tarfile + • tempfile + • threading + • tokenize + • traceback + • types + • typing + • unittest.case + • unittest.loader + • unittest.main + • unittest.result + • unittest.runner + • unittest.suite + • urllib.request + • warnings + • weakref + • webbrowser + • xml.parsers.expat + • xml.sax + • xml.sax.saxutils + • xmlrpc.client + • yaml.constructor + • zipfile + • zipimport + +
+ +
+ +
+ + sysconfig +SourceModule
+imports: + _aix_support + • _imp + • ntpath + • os + • pprint + • re + • sys + • threading + • types + • warnings + +
+
+imported by: + _aix_support + • numpy.ctypeslib + • numpy.testing._private.extbuild + • numpy.testing._private.utils + • pydoc + +
+ +
+ +
+ + tarfile +SourceModule
+imports: + argparse + • builtins + • bz2 + • copy + • grp + • gzip + • io + • lzma + • os + • pwd + • re + • shutil + • stat + • struct + • sys + • time + • warnings + • zlib + +
+
+imported by: + shutil + +
+ +
+ +
+ + tempfile +SourceModule
+imports: + _thread + • errno + • functools + • io + • os + • random + • shutil + • sys + • types + • warnings + • weakref + +
+
+imported by: + asyncio.windows_utils + • importlib.resources._common + • multiprocessing.connection + • multiprocessing.heap + • multiprocessing.synchronize + • multiprocessing.util + • numpy.lib._datasource + • numpy.testing._private.utils + • pydoc + • urllib.request + • urllib.response + +
+ +
+ +
+ + termios +MissingModule
+imported by: + getpass + • tty + +
+ +
+ +
+ + textwrap +SourceModule
+imports: + re + +
+
+imported by: + argparse + • importlib.metadata + • importlib.metadata._adapters + • numpy._typing._add_docstring + • numpy.lib.utils + • numpy.ma.core + • numpy.testing._private.extbuild + • pydoc + • traceback + +
+ +
+ +
+ + threading +SourceModule
+imports: + _collections + • _thread + • _threading_local + • _weakrefset + • collections + • functools + • itertools + • os + • sys + • time + • traceback + • warnings + +
+
+imported by: + _threading_local + • asyncio.base_events + • asyncio.events + • asyncio.mixins + • asyncio.proactor_events + • asyncio.runners + • asyncio.unix_events + • concurrent.futures._base + • concurrent.futures.process + • concurrent.futures.thread + • http.cookiejar + • logging + • multiprocessing.context + • multiprocessing.dummy + • multiprocessing.forkserver + • multiprocessing.heap + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.resource_sharer + • multiprocessing.resource_tracker + • multiprocessing.synchronize + • multiprocessing.util + • pydoc + • pyi_rth_multiprocessing.py + • queue + • socketserver + • subprocess + • sysconfig + • webbrowser + • zipfile + +
+ +
+ +
+ + threadpoolctl +MissingModule
+imported by: + numpy.lib.utils + +
+ +
+ +
+ + time (builtin module)
+imports: + _strptime + +
+
+imported by: + _datetime + • _pydatetime + • _strptime + • asyncio.base_events + • asyncio.windows_events + • concurrent.futures._base + • datetime + • email._parseaddr + • email.generator + • email.utils + • gc + • gzip + • http.cookiejar + • http.server + • logging + • multiprocessing.connection + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.queues + • multiprocessing.synchronize + • numpy.testing._private.utils + • pydoc + • queue + • random + • socketserver + • ssl + • subprocess + • tarfile + • threading + • unittest.case + • unittest.runner + • urllib.request + • xmlrpc.client + • zipfile + • zipimport + +
+ +
+ +
+ + token +SourceModule
+imported by: + inspect + • pdb + • tokenize + +
+ +
+ +
+ + tokenize +SourceModule
+imports: + _tokenize + • argparse + • builtins + • codecs + • collections + • functools + • io + • itertools + • re + • sys + • token + +
+
+imported by: + importlib._bootstrap_external + • inspect + • linecache + • numpy.lib.format + • pdb + • pydoc + +
+ +
+ +
+ + traceback +SourceModule
+imports: + ast + • collections.abc + • contextlib + • itertools + • linecache + • sys + • textwrap + • unicodedata + +
+
+imported by: + Sonic.pyw + • asyncio.base_events + • asyncio.base_tasks + • asyncio.format_helpers + • code + • concurrent.futures.process + • doctest + • http.cookiejar + • logging + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.util + • numpy.testing._private.utils + • pdb + • py_compile + • pydoc + • socketserver + • threading + • unittest.case + • unittest.loader + • unittest.result + • warnings + +
+ +
+ +
+ + tracemalloc +SourceModule
+imports: + _tracemalloc + • collections.abc + • fnmatch + • functools + • linecache + • ntpath + • pickle + +
+
+imported by: + warnings + +
+ +
+ +
+ + tty +SourceModule
+imports: + termios + +
+
+imported by: + pydoc + +
+ +
+ +
+ + types +SourceModule
+imports: + _collections_abc + • functools + • sys + +
+
+imported by: + Sonic.pyw + • _weakrefset + • asyncio.coroutines + • asyncio.futures + • asyncio.queues + • asyncio.tasks + • asyncio.timeouts + • concurrent.futures._base + • concurrent.futures.thread + • contextlib + • copy + • csv + • ctypes + • dataclasses + • difflib + • dis + • email.headerregistry + • enum + • functools + • importlib.metadata._functools + • importlib.resources._common + • importlib.resources._legacy + • importlib.util + • inspect + • logging + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.queues + • multiprocessing.shared_memory + • multiprocessing.spawn + • numpy._utils._inspect + • numpy.array_api._array_object + • numpy.core.fromnumeric + • numpy.core.function_base + • numpy.lib.utils + • pickle + • pkgutil + • pprint + • queue + • subprocess + • sysconfig + • tempfile + • typing + • unittest.case + • unittest.loader + • urllib.parse + • yaml.constructor + • yaml.representer + +
+ +
+ +
+ + typing +SourceModule
+imports: + _typing + • abc + • collections + • collections.abc + • contextlib + • copyreg + • functools + • inspect + • operator + • re + • sys + • types + • warnings + +
+
+imported by: + asyncio.staggered + • asyncio.timeouts + • functools + • importlib.metadata + • importlib.metadata._meta + • importlib.resources._common + • importlib.resources._legacy + • importlib.resources.abc + • numpy._typing + • numpy._typing._array_like + • numpy._typing._char_codes + • numpy._typing._dtype_like + • numpy._typing._nbit + • numpy._typing._nested_sequence + • numpy._typing._scalars + • numpy._typing._shape + • numpy.array_api._array_object + • numpy.array_api._creation_functions + • numpy.array_api._data_type_functions + • numpy.array_api._manipulation_functions + • numpy.array_api._searching_functions + • numpy.array_api._set_functions + • numpy.array_api._statistical_functions + • numpy.array_api._typing + • numpy.array_api._utility_functions + • numpy.array_api.linalg + • numpy.linalg.linalg + • pdb + +
+ +
+ +
+ + unicodedata C:\Python312\DLLs\unicodedata.pyd
+imported by: + encodings.idna + • re._parser + • stringprep + • traceback + • urllib.parse + +
+ +
+ +
+ + unittest +Package
+imports: + unittest + • unittest.async_case + • unittest.case + • unittest.loader + • unittest.main + • unittest.result + • unittest.runner + • unittest.signals + • unittest.suite + • unittest.util + +
+
+imported by: + doctest + • numpy.testing + • numpy.testing._private.utils + • unittest + • unittest._log + • unittest.async_case + • unittest.case + • unittest.loader + • unittest.main + • unittest.result + • unittest.runner + • unittest.signals + • unittest.suite + • unittest.util + +
+ +
+ +
+ + unittest._log +SourceModule
+imports: + collections + • logging + • unittest + • unittest.case + +
+
+imported by: + unittest.case + +
+ +
+ +
+ + unittest.async_case +SourceModule
+imports: + asyncio + • contextvars + • inspect + • unittest + • unittest.case + • warnings + +
+
+imported by: + unittest + +
+ +
+ +
+ + unittest.case +SourceModule
+imports: + collections + • contextlib + • difflib + • functools + • pprint + • re + • sys + • time + • traceback + • types + • unittest + • unittest._log + • unittest.result + • unittest.util + • warnings + +
+
+imported by: + numpy.testing._private.utils + • unittest + • unittest._log + • unittest.async_case + • unittest.loader + • unittest.runner + • unittest.suite + +
+ +
+ +
+ + unittest.loader +SourceModule
+imports: + fnmatch + • functools + • os + • re + • sys + • traceback + • types + • unittest + • unittest.case + • unittest.suite + • unittest.util + • warnings + +
+
+imported by: + unittest + • unittest.main + +
+ +
+ +
+ + unittest.main +SourceModule
+imports: + argparse + • os + • sys + • unittest + • unittest.loader + • unittest.runner + • unittest.signals + • warnings + +
+
+imported by: + unittest + +
+ +
+ +
+ + unittest.result +SourceModule
+imports: + functools + • io + • sys + • traceback + • unittest + • unittest.util + +
+
+imported by: + unittest + • unittest.case + • unittest.runner + +
+ +
+ +
+ + unittest.runner +SourceModule
+imports: + sys + • time + • unittest + • unittest.case + • unittest.result + • unittest.signals + • warnings + +
+
+imported by: + unittest + • unittest.main + +
+ +
+ +
+ + unittest.signals +SourceModule
+imports: + functools + • signal + • unittest + • weakref + +
+
+imported by: + unittest + • unittest.main + • unittest.runner + +
+ +
+ +
+ + unittest.suite +SourceModule
+imports: + sys + • unittest + • unittest.case + • unittest.util + +
+
+imported by: + unittest + • unittest.loader + +
+ +
+ +
+ + unittest.util +SourceModule
+imports: + collections + • ntpath + • unittest + +
+
+imported by: + unittest + • unittest.case + • unittest.loader + • unittest.result + • unittest.suite + +
+ +
+ +
+ + urllib +Package
+imported by: + email._header_value_parser + • urllib.error + • urllib.parse + • urllib.request + • urllib.response + +
+ +
+ +
+ + urllib.error +SourceModule
+imports: + io + • urllib + • urllib.response + +
+
+imported by: + numpy.lib._datasource + • urllib.request + +
+ +
+ +
+ + urllib.parse +SourceModule
+imports: + collections + • functools + • ipaddress + • math + • re + • types + • unicodedata + • urllib + • warnings + +
+
+imported by: + email.utils + • http.client + • http.cookiejar + • http.server + • mimetypes + • nturl2path + • numpy.lib._datasource + • pathlib + • pydoc + • urllib.request + • xml.sax.saxutils + • xmlrpc.client + +
+ +
+ +
+ + urllib.request +SourceModule
+imports: + _scproxy + • base64 + • bisect + • contextlib + • email + • email.utils + • fnmatch + • ftplib + • getpass + • hashlib + • http.client + • http.cookiejar + • io + • mimetypes + • nturl2path + • os + • re + • socket + • ssl + • string + • sys + • tempfile + • time + • urllib + • urllib.error + • urllib.parse + • urllib.response + • warnings + • winreg + +
+
+imported by: + http.cookiejar + • numpy.lib._datasource + • xml.sax.saxutils + +
+ +
+ +
+ + urllib.response +SourceModule
+imports: + tempfile + • urllib + +
+
+imported by: + urllib.error + • urllib.request + +
+ +
+ +
+ + vms_lib +MissingModule
+imported by: + platform + +
+ +
+ +
+ + warnings +SourceModule
+imports: + _warnings + • builtins + • linecache + • re + • sys + • traceback + • tracemalloc + +
+
+imported by: + Sonic.pyw + • _collections_abc + • _pydatetime + • argparse + • ast + • asyncio.base_events + • asyncio.base_subprocess + • asyncio.events + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.sslproto + • asyncio.streams + • asyncio.tasks + • asyncio.unix_events + • asyncio.windows_utils + • calendar + • codeop + • email.utils + • enum + • getpass + • gettext + • gzip + • hmac + • http.cookiejar + • importlib + • importlib.abc + • importlib.metadata + • importlib.metadata._adapters + • importlib.resources._common + • importlib.resources._legacy + • locale + • logging + • multiprocessing.forkserver + • multiprocessing.pool + • multiprocessing.resource_tracker + • numpy + • numpy.__config__ + • numpy._pytesttester + • numpy.array_api + • numpy.core + • numpy.core._internal + • numpy.core._methods + • numpy.core.arrayprint + • numpy.core.fromnumeric + • numpy.core.function_base + • numpy.core.getlimits + • numpy.core.numeric + • numpy.core.numerictypes + • numpy.core.records + • numpy.core.shape_base + • numpy.lib + • numpy.lib.format + • numpy.lib.function_base + • numpy.lib.histograms + • numpy.lib.index_tricks + • numpy.lib.nanfunctions + • numpy.lib.npyio + • numpy.lib.polynomial + • numpy.lib.ufunclike + • numpy.lib.utils + • numpy.linalg.linalg + • numpy.ma.core + • numpy.ma.extras + • numpy.ma.mrecords + • numpy.matrixlib.defmatrix + • numpy.polynomial.polyutils + • numpy.testing._private.utils + • os + • pathlib + • pkgutil + • pyaudio + • pydoc + • random + • re + • re._parser + • runpy + • shutil + • sre_compile + • sre_constants + • sre_parse + • ssl + • subprocess + • sysconfig + • tarfile + • tempfile + • threading + • typing + • unittest.async_case + • unittest.case + • unittest.loader + • unittest.main + • unittest.runner + • urllib.parse + • urllib.request + • webbrowser + • zipfile + +
+ +
+ +
+ + weakref +SourceModule
+imports: + _collections_abc + • _weakref + • _weakrefset + • atexit + • copy + • gc + • itertools + • sys + +
+
+imported by: + Sonic.pyw + • _threading_local + • asyncio.base_events + • asyncio.selector_events + • asyncio.streams + • asyncio.tasks + • asyncio.windows_events + • concurrent.futures.process + • concurrent.futures.thread + • copy + • functools + • logging + • multiprocessing.dummy + • multiprocessing.queues + • multiprocessing.sharedctypes + • multiprocessing.util + • numpy.lib.npyio + • tempfile + • unittest.signals + • xml.sax.expatreader + +
+ +
+ +
+ + webbrowser +SourceModule
+imports: + copy + • getopt + • os + • shlex + • shutil + • subprocess + • sys + • threading + • warnings + +
+
+imported by: + pydoc + +
+ +
+ +
+ + win32pdh C:\Python312\Lib\site-packages\win32\win32pdh.pyd
+imported by: + numpy.testing._private.utils + +
+ +
+ +
+ + winreg (builtin module)
+imported by: + importlib._bootstrap_external + • mimetypes + • platform + • urllib.request + +
+ +
+ +
+ + xml +Package
+imports: + xml.sax.expatreader + • xml.sax.xmlreader + +
+
+imported by: + xml.parsers + • xml.sax + +
+ +
+ +
+ + xml.parsers +Package
+imports: + xml + • xml.parsers.expat + +
+
+imported by: + xml.parsers.expat + • xml.sax.expatreader + • xmlrpc.client + +
+ +
+ +
+ + xml.parsers.expat +SourceModule
+imports: + pyexpat + • sys + • xml.parsers + +
+
+imported by: + xml.parsers + • xml.sax.expatreader + • xmlrpc.client + +
+ +
+ +
+ + xml.sax +Package
+imports: + io + • os + • sys + • xml + • xml.sax + • xml.sax._exceptions + • xml.sax.expatreader + • xml.sax.handler + • xml.sax.saxutils + • xml.sax.xmlreader + +
+
+imported by: + xml.sax + • xml.sax._exceptions + • xml.sax.expatreader + • xml.sax.handler + • xml.sax.saxutils + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax._exceptions +SourceModule
+imports: + xml.sax + +
+
+imported by: + xml.sax + • xml.sax.expatreader + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax.expatreader +SourceModule
+imports: + _weakref + • weakref + • xml.parsers + • xml.parsers.expat + • xml.sax + • xml.sax._exceptions + • xml.sax.handler + • xml.sax.saxutils + • xml.sax.xmlreader + +
+
+imported by: + xml + • xml.sax + +
+ +
+ +
+ + xml.sax.handler +SourceModule
+imports: + xml.sax + +
+
+imported by: + xml.sax + • xml.sax.expatreader + • xml.sax.saxutils + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax.saxutils +SourceModule
+imports: + codecs + • io + • os + • sys + • urllib.parse + • urllib.request + • xml.sax + • xml.sax.handler + • xml.sax.xmlreader + +
+
+imported by: + xml.sax + • xml.sax.expatreader + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax.xmlreader +SourceModule
+imports: + xml.sax + • xml.sax._exceptions + • xml.sax.handler + • xml.sax.saxutils + +
+
+imported by: + xml + • xml.sax + • xml.sax.expatreader + • xml.sax.saxutils + +
+ +
+ +
+ + xmlrpc +Package
+imported by: + xmlrpc.client + +
+ +
+ +
+ + xmlrpc.client +SourceModule
+imports: + base64 + • datetime + • decimal + • errno + • gzip + • http.client + • io + • sys + • time + • urllib.parse + • xml.parsers + • xml.parsers.expat + • xmlrpc + +
+
+imported by: + multiprocessing.connection + +
+ +
+ +
+ + yaml +Package
+imports: + io + • yaml.cyaml + • yaml.dumper + • yaml.error + • yaml.events + • yaml.loader + • yaml.nodes + • yaml.tokens + +
+
+imported by: + numpy.__config__ + • yaml._yaml + • yaml.composer + • yaml.constructor + • yaml.cyaml + • yaml.dumper + • yaml.emitter + • yaml.error + • yaml.events + • yaml.loader + • yaml.nodes + • yaml.parser + • yaml.reader + • yaml.representer + • yaml.resolver + • yaml.scanner + • yaml.serializer + • yaml.tokens + +
+ +
+ +
+ + yaml._yaml C:\Python312\Lib\site-packages\yaml\_yaml.cp312-win_amd64.pyd
+imports: + yaml + +
+
+imported by: + yaml.cyaml + +
+ +
+ +
+ + yaml.composer +SourceModule
+imports: + yaml + • yaml.error + • yaml.events + • yaml.nodes + +
+
+imported by: + yaml.loader + +
+ +
+ +
+ + yaml.constructor +SourceModule
+imports: + base64 + • binascii + • collections.abc + • datetime + • re + • sys + • types + • yaml + • yaml.error + • yaml.nodes + +
+
+imported by: + yaml.cyaml + • yaml.loader + +
+ +
+ +
+ + yaml.cyaml +SourceModule
+imports: + yaml + • yaml._yaml + • yaml.constructor + • yaml.representer + • yaml.resolver + • yaml.serializer + +
+
+imported by: + yaml + +
+ +
+ +
+ + yaml.dumper +SourceModule
+imports: + yaml + • yaml.emitter + • yaml.representer + • yaml.resolver + • yaml.serializer + +
+
+imported by: + yaml + +
+ +
+ +
+ + yaml.emitter +SourceModule
+imports: + yaml + • yaml.error + • yaml.events + +
+
+imported by: + yaml.dumper + +
+ +
+ +
+ + yaml.error +SourceModule
+imports: + yaml + +
+
+imported by: + yaml + • yaml.composer + • yaml.constructor + • yaml.emitter + • yaml.parser + • yaml.reader + • yaml.representer + • yaml.resolver + • yaml.scanner + • yaml.serializer + +
+ +
+ +
+ + yaml.events +SourceModule
+imports: + yaml + +
+
+imported by: + yaml + • yaml.composer + • yaml.emitter + • yaml.parser + • yaml.serializer + +
+ +
+ +
+ + yaml.loader +SourceModule
+imports: + yaml + • yaml.composer + • yaml.constructor + • yaml.parser + • yaml.reader + • yaml.resolver + • yaml.scanner + +
+
+imported by: + yaml + +
+ +
+ +
+ + yaml.nodes +SourceModule
+imports: + yaml + +
+
+imported by: + yaml + • yaml.composer + • yaml.constructor + • yaml.representer + • yaml.resolver + • yaml.serializer + +
+ +
+ +
+ + yaml.parser +SourceModule
+imports: + yaml + • yaml.error + • yaml.events + • yaml.scanner + • yaml.tokens + +
+
+imported by: + yaml.loader + +
+ +
+ +
+ + yaml.reader +SourceModule
+imports: + codecs + • re + • yaml + • yaml.error + +
+
+imported by: + yaml.loader + +
+ +
+ +
+ + yaml.representer +SourceModule
+imports: + base64 + • collections + • copyreg + • datetime + • types + • yaml + • yaml.error + • yaml.nodes + +
+
+imported by: + yaml.cyaml + • yaml.dumper + +
+ +
+ +
+ + yaml.resolver +SourceModule
+imports: + re + • yaml + • yaml.error + • yaml.nodes + +
+
+imported by: + yaml.cyaml + • yaml.dumper + • yaml.loader + +
+ +
+ +
+ + yaml.scanner +SourceModule
+imports: + yaml + • yaml.error + • yaml.tokens + +
+
+imported by: + yaml.loader + • yaml.parser + +
+ +
+ +
+ + yaml.serializer +SourceModule
+imports: + yaml + • yaml.error + • yaml.events + • yaml.nodes + +
+
+imported by: + yaml.cyaml + • yaml.dumper + +
+ +
+ +
+ + yaml.tokens +SourceModule
+imports: + yaml + +
+
+imported by: + yaml + • yaml.parser + • yaml.scanner + +
+ +
+ +
+ + zipfile +Package
+imports: + argparse + • binascii + • bz2 + • importlib.util + • io + • lzma + • os + • py_compile + • shutil + • stat + • struct + • sys + • threading + • time + • warnings + • zipfile._path + • zlib + +
+
+imported by: + importlib.metadata + • importlib.resources.readers + • numpy.lib.npyio + • shutil + • zipfile._path + +
+ +
+ +
+ + zipfile._path +Package
+imports: + contextlib + • io + • itertools + • pathlib + • posixpath + • re + • zipfile + • zipfile._path.glob + +
+
+imported by: + zipfile + • zipfile._path.glob + +
+ +
+ +
+ + zipfile._path.glob +SourceModule
+imports: + re + • zipfile._path + +
+
+imported by: + zipfile._path + +
+ +
+ +
+ + zipimport +SourceModule
+imports: + _frozen_importlib + • _frozen_importlib_external + • _imp + • _io + • _warnings + • importlib.readers + • marshal + • sys + • time + • zlib + +
+
+imported by: + pkgutil + +
+ +
+ +
+ + zlib (builtin module)
+imported by: + encodings.zlib_codec + • gzip + • shutil + • tarfile + • zipfile + • zipimport + +
+ +
+ + + diff --git a/dist/.gitattributes b/dist/.gitattributes new file mode 100644 index 0000000..84d7ffb --- /dev/null +++ b/dist/.gitattributes @@ -0,0 +1 @@ +dist/Sonic.exe filter=lfs diff=lfs merge=lfs -text diff --git a/dist/Sonic.exe b/dist/Sonic.exe new file mode 100644 index 0000000..5b0fde9 --- /dev/null +++ b/dist/Sonic.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db87aa339fc164e6965f19fe53a0cbbf1da8f06d72874c24d39f00c23a186295 +size 54179132 diff --git a/icon/Sonic2no (10).ico b/icon/Sonic2no (10).ico new file mode 100644 index 0000000..a010eac Binary files /dev/null and b/icon/Sonic2no (10).ico differ diff --git a/icon/Sonic2no (6).ico b/icon/Sonic2no (6).ico new file mode 100644 index 0000000..1f0eed4 Binary files /dev/null and b/icon/Sonic2no (6).ico differ diff --git a/icon/Sonic2no (7).ico b/icon/Sonic2no (7).ico new file mode 100644 index 0000000..b828fc4 Binary files /dev/null and b/icon/Sonic2no (7).ico differ diff --git a/icon/Sonic2no (9).ico b/icon/Sonic2no (9).ico new file mode 100644 index 0000000..6b2f0ea Binary files /dev/null and b/icon/Sonic2no (9).ico differ diff --git a/icon/Sonic2no25.ico b/icon/Sonic2no25.ico new file mode 100644 index 0000000..85c97e9 Binary files /dev/null and b/icon/Sonic2no25.ico differ diff --git a/icon/holder b/icon/holder new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/icon/holder @@ -0,0 +1 @@ +