trcc-linux 2.0.1__tar.gz → 3.0.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/PKG-INFO +44 -8
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/README.md +32 -5
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/pyproject.toml +10 -4
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/__init__.py +3 -5
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/__version__.py +26 -1
- trcc_linux-3.0.5/src/trcc/api.py +207 -0
- trcc_linux-3.0.5/src/trcc/cli.py +2328 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/conf.py +4 -5
- trcc_linux-3.0.5/src/trcc/core/__init__.py +27 -0
- trcc_linux-3.0.5/src/trcc/core/controllers.py +752 -0
- trcc_linux-3.0.5/src/trcc/core/models.py +643 -0
- trcc_linux-2.0.1/src/trcc/paths.py → trcc_linux-3.0.5/src/trcc/data_repository.py +51 -89
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/dc_config.py +3 -3
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/dc_parser.py +8 -92
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/dc_writer.py +7 -44
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/debug_report.py +27 -20
- trcc_linux-3.0.5/src/trcc/device_bulk.py +263 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/device_detector.py +10 -10
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/device_factory.py +1 -1
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/device_hid.py +7 -46
- trcc_linux-2.0.1/src/trcc/driver_lcd.py → trcc_linux-3.0.5/src/trcc/device_lcd.py +22 -15
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/device_led.py +1 -1
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/device_led_hr10.py +4 -24
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/device_scsi.py +31 -27
- trcc_linux-3.0.5/src/trcc/doctor.py +299 -0
- trcc_linux-3.0.5/src/trcc/font_resolver.py +106 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/media_player.py +36 -104
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/assets.py +2 -2
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/base.py +11 -11
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/eyedropper.py +4 -4
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/qt_app_mvc.py +102 -58
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/screen_capture.py +4 -4
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_about.py +19 -10
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_activity_sidebar.py +5 -5
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_color_wheel.py +4 -4
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_device.py +9 -7
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_image_cut.py +6 -6
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_info_module.py +3 -3
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_led_control.py +34 -18
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_preview.py +5 -4
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_screen_led.py +4 -4
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_sensor_picker.py +5 -5
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_seven_segment.py +3 -3
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_system_info.py +17 -13
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_theme_local.py +12 -8
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_theme_mask.py +4 -4
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_theme_setting.py +78 -31
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_theme_web.py +5 -10
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/uc_video_cut.py +9 -9
- trcc_linux-3.0.5/src/trcc/services/__init__.py +27 -0
- trcc_linux-3.0.5/src/trcc/services/device.py +233 -0
- trcc_linux-3.0.5/src/trcc/services/display.py +545 -0
- trcc_linux-3.0.5/src/trcc/services/image.py +129 -0
- trcc_linux-3.0.5/src/trcc/services/led.py +434 -0
- trcc_linux-3.0.5/src/trcc/services/media.py +201 -0
- trcc_linux-3.0.5/src/trcc/services/overlay.py +391 -0
- trcc_linux-2.0.1/src/trcc/system_info.py → trcc_linux-3.0.5/src/trcc/services/system.py +177 -217
- trcc_linux-3.0.5/src/trcc/services/theme.py +490 -0
- trcc_linux-2.0.1/src/trcc/sysinfo_config.py → trcc_linux-3.0.5/src/trcc/system_config.py +8 -3
- trcc_linux-3.0.5/src/trcc/system_info.py +33 -0
- trcc_linux-2.0.1/src/trcc/sensor_enumerator.py → trcc_linux-3.0.5/src/trcc/system_sensors.py +136 -23
- trcc_linux-2.0.1/src/trcc/cloud_downloader.py → trcc_linux-3.0.5/src/trcc/theme_cloud.py +1 -1
- trcc_linux-3.0.5/src/trcc/theme_downloader.py +255 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/hid_testing/test_device_factory.py +43 -69
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/hid_testing/test_led_controller.py +319 -317
- trcc_linux-3.0.5/tests/test_api.py +245 -0
- trcc_linux-3.0.5/tests/test_architecture.py +451 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_cli.py +1052 -147
- trcc_linux-3.0.5/tests/test_controllers.py +1280 -0
- trcc_linux-2.0.1/tests/test_paths.py → trcc_linux-3.0.5/tests/test_data_repository.py +119 -153
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_dc_parser.py +1 -3
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_dc_writer.py +2 -3
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_debug_report.py +5 -6
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_device_bulk.py +166 -53
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_device_detector.py +8 -8
- trcc_linux-3.0.5/tests/test_device_implementations.py +230 -0
- trcc_linux-2.0.1/tests/test_driver_lcd.py → trcc_linux-3.0.5/tests/test_device_lcd.py +42 -69
- trcc_linux-2.0.1/tests/test_device_kvm_led.py → trcc_linux-3.0.5/tests/test_device_led_kvm.py +1 -1
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_device_scsi.py +7 -9
- trcc_linux-3.0.5/tests/test_doctor.py +228 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_hr10_display.py +6 -4
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_integration.py +110 -154
- trcc_linux-3.0.5/tests/test_media_player.py +348 -0
- trcc_linux-3.0.5/tests/test_models.py +144 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_overlay_renderer.py +10 -10
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_qt_base.py +13 -13
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_qt_widgets.py +10 -2
- trcc_linux-3.0.5/tests/test_services.py +416 -0
- trcc_linux-2.0.1/tests/test_sysinfo_config.py → trcc_linux-3.0.5/tests/test_system_config.py +5 -5
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_system_info.py +66 -67
- trcc_linux-2.0.1/tests/test_sensor_enumerator.py → trcc_linux-3.0.5/tests/test_system_sensors.py +79 -79
- trcc_linux-2.0.1/tests/test_cloud_downloader.py → trcc_linux-3.0.5/tests/test_theme_cloud.py +17 -17
- trcc_linux-3.0.5/tests/test_theme_downloader.py +332 -0
- trcc_linux-2.0.1/src/trcc/cli.py +0 -1275
- trcc_linux-2.0.1/src/trcc/constants.py +0 -69
- trcc_linux-2.0.1/src/trcc/core/__init__.py +0 -58
- trcc_linux-2.0.1/src/trcc/core/controllers.py +0 -1599
- trcc_linux-2.0.1/src/trcc/core/models.py +0 -1126
- trcc_linux-2.0.1/src/trcc/device_base.py +0 -26
- trcc_linux-2.0.1/src/trcc/device_bulk.py +0 -194
- trcc_linux-2.0.1/src/trcc/device_implementations.py +0 -136
- trcc_linux-2.0.1/src/trcc/overlay_renderer.py +0 -376
- trcc_linux-2.0.1/src/trcc/theme_downloader.py +0 -515
- trcc_linux-2.0.1/src/trcc/theme_io.py +0 -338
- trcc_linux-2.0.1/tests/test_controllers.py +0 -2133
- trcc_linux-2.0.1/tests/test_device_implementations.py +0 -274
- trcc_linux-2.0.1/tests/test_media_player.py +0 -517
- trcc_linux-2.0.1/tests/test_models.py +0 -773
- trcc_linux-2.0.1/tests/test_theme_downloader.py +0 -816
- trcc_linux-2.0.1/tests/test_theme_io.py +0 -303
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/.gitignore +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/LICENSE +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/__main__.py +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/345/205/263/344/272/216d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/345/205/263/344/272/216e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/345/205/263/344/272/216en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/345/205/263/344/272/216f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/345/205/263/344/272/216p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/345/205/263/344/272/216r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/345/205/263/344/272/216tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/345/205/263/344/272/216x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A2/344/270/213/346/213/211/346/241/206/345/272/225/345/233/276.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A2/344/270/213/346/213/211/346/241/206/351/200/211/346/213/251/346/235/241.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A2/344/270/213/346/213/211/351/200/211/346/213/251/346/241/206.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/206/205/345/256/271d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/206/205/345/256/271e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/206/205/345/256/271en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/206/205/345/256/271f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/206/205/345/256/271p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/206/205/345/256/271r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/206/205/345/256/271tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/206/205/345/256/271x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271/351/201/256/347/275/251.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xy.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyd.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xye.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyen.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyf.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyp.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyr.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xytc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyx.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yx.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxd.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxe.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxen.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxf.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxp.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxr.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxtc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxx.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0CZTV.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0CZTVd.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0CZTVe.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0CZTVen.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0CZTVf.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0CZTVp.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0CZTVr.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0CZTVtc.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0CZTVx.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/346/222/255/346/224/276/345/231/250/346/216/247/345/210/266.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2762X.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2764X.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/2510.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/257/274/345/207/272/346/211/200/346/234/211/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/273/232/345/212/250/346/235/241/345/272/225/345/233/276.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/346/273/232/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/233/264/346/222/255/350/247/206/351/242/221/350/275/275/345/205/245.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251320320/345/234/206.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251360360/345/234/206.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251480480/345/234/206.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/234/350/211/262/346/273/221/345/212/250/345/235/227.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/242/234/350/211/262/351/200/211/346/213/251/345/234/210.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/binary_reader.py +0 -0
- /trcc_linux-2.0.1/src/trcc/device_kvm_led.py → /trcc_linux-3.0.5/src/trcc/device_led_kvm.py +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/constants.py +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/README.md +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/__init__.py +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/hid_testing/__init__.py +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/hid_testing/conftest.py +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/hid_testing/test_device_hid.py +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/hid_testing/test_device_led.py +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/run_tests.py +0 -0
- {trcc_linux-2.0.1 → trcc_linux-3.0.5}/tests/test_qt_constants.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.0.5
|
|
4
4
|
Summary: Linux implementation of Thermalright LCD Control Center
|
|
5
5
|
Project-URL: Homepage, https://github.com/Lexonight1/thermalright-trcc-linux
|
|
6
6
|
Project-URL: Documentation, https://github.com/Lexonight1/thermalright-trcc-linux#readme
|
|
@@ -26,20 +26,29 @@ Requires-Python: >=3.9
|
|
|
26
26
|
Requires-Dist: numpy>=1.24.0
|
|
27
27
|
Requires-Dist: pillow>=10.0.0
|
|
28
28
|
Requires-Dist: psutil>=5.9.0
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist: pyqt6>=6.5.0
|
|
29
|
+
Requires-Dist: pyside6>=6.5.0
|
|
31
30
|
Requires-Dist: pyusb>=1.2.0
|
|
31
|
+
Requires-Dist: typer>=0.9.0
|
|
32
32
|
Provides-Extra: all
|
|
33
33
|
Requires-Dist: dbus-python>=1.3.0; extra == 'all'
|
|
34
|
+
Requires-Dist: fastapi>=0.100; extra == 'all'
|
|
34
35
|
Requires-Dist: hidapi>=0.14.0; extra == 'all'
|
|
36
|
+
Requires-Dist: httpx>=0.24.0; extra == 'all'
|
|
35
37
|
Requires-Dist: nvidia-ml-py>=11.0.0; extra == 'all'
|
|
36
38
|
Requires-Dist: pygobject>=3.42.0; extra == 'all'
|
|
37
39
|
Requires-Dist: pytest-cov>=4.0.0; extra == 'all'
|
|
38
40
|
Requires-Dist: pytest>=7.0.0; extra == 'all'
|
|
41
|
+
Requires-Dist: python-multipart>=0.0.6; extra == 'all'
|
|
39
42
|
Requires-Dist: ruff>=0.4.0; extra == 'all'
|
|
43
|
+
Requires-Dist: uvicorn[standard]>=0.20; extra == 'all'
|
|
44
|
+
Provides-Extra: api
|
|
45
|
+
Requires-Dist: fastapi>=0.100; extra == 'api'
|
|
46
|
+
Requires-Dist: uvicorn[standard]>=0.20; extra == 'api'
|
|
40
47
|
Provides-Extra: dev
|
|
48
|
+
Requires-Dist: httpx>=0.24.0; extra == 'dev'
|
|
41
49
|
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
|
|
42
50
|
Requires-Dist: pytest>=7.0.0; extra == 'dev'
|
|
51
|
+
Requires-Dist: python-multipart>=0.0.6; extra == 'dev'
|
|
43
52
|
Requires-Dist: ruff>=0.4.0; extra == 'dev'
|
|
44
53
|
Provides-Extra: hid
|
|
45
54
|
Requires-Dist: hidapi>=0.14.0; extra == 'hid'
|
|
@@ -87,9 +96,13 @@ Run `lsusb` to find your USB ID (`xxxx:xxxx` after `ID`), then match it below.
|
|
|
87
96
|
| USB ID | Devices |
|
|
88
97
|
|--------|---------|
|
|
89
98
|
| `87CD:70DB` | FROZEN HORIZON PRO, FROZEN MAGIC PRO, FROZEN VISION V2, CORE VISION, ELITE VISION, AK120, AX120, PA120 DIGITAL, Wonder Vision |
|
|
90
|
-
| `87AD:70DB` | GrandVision 360 AIO |
|
|
91
99
|
| `0416:5406` | LC1, LC2, LC3, LC5 (AIO pump heads) |
|
|
92
|
-
| `0402:3922` | FROZEN WARFRAME, FROZEN WARFRAME SE |
|
|
100
|
+
| `0402:3922` | FROZEN WARFRAME, FROZEN WARFRAME 360, FROZEN WARFRAME SE |
|
|
101
|
+
|
|
102
|
+
**Bulk USB devices** — raw USB protocol:
|
|
103
|
+
| USB ID | Devices |
|
|
104
|
+
|--------|---------|
|
|
105
|
+
| `87AD:70DB` | GrandVision 360 AIO, Mjolnir Vision 360 |
|
|
93
106
|
|
|
94
107
|
**HID LCD devices** — auto-detected, needs hardware testers:
|
|
95
108
|
| USB ID | Devices |
|
|
@@ -209,9 +222,10 @@ environment.systemPackages = with pkgs; [
|
|
|
209
222
|
services.udev.extraRules = ''
|
|
210
223
|
# SCSI LCD devices
|
|
211
224
|
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="87cd", ATTRS{idProduct}=="70db", MODE="0666"
|
|
212
|
-
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="87ad", ATTRS{idProduct}=="70db", MODE="0666"
|
|
213
225
|
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="5406", MODE="0666"
|
|
214
226
|
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="0402", ATTRS{idProduct}=="3922", MODE="0666"
|
|
227
|
+
# Bulk USB devices
|
|
228
|
+
SUBSYSTEM=="usb", ATTR{idVendor}=="87ad", ATTR{idProduct}=="70db", MODE="0666"
|
|
215
229
|
# HID LCD/LED devices
|
|
216
230
|
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="5302", MODE="0666"
|
|
217
231
|
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0418", ATTRS{idProduct}=="5303", MODE="0666"
|
|
@@ -230,12 +244,24 @@ pip install --break-system-packages trcc-linux && trcc install-desktop
|
|
|
230
244
|
trcc gui # Launch GUI
|
|
231
245
|
trcc detect # Show connected devices
|
|
232
246
|
trcc send image.png # Send image to LCD
|
|
233
|
-
trcc
|
|
247
|
+
trcc color "#ff0000" # Fill LCD with solid color
|
|
248
|
+
trcc brightness 2 # Set brightness (1=25%, 2=50%, 3=100%)
|
|
249
|
+
trcc rotation 90 # Rotate display (0/90/180/270)
|
|
250
|
+
trcc theme-list # List available themes
|
|
251
|
+
trcc theme-load NAME # Load a theme by name
|
|
252
|
+
trcc overlay # Render and send overlay
|
|
253
|
+
trcc screencast # Live screen capture to LCD
|
|
254
|
+
trcc video clip.mp4 # Play video on LCD
|
|
255
|
+
trcc led-color "#00ff00" # Set LED color
|
|
256
|
+
trcc led-mode breathing # Set LED effect mode
|
|
257
|
+
trcc serve # Start REST API server
|
|
258
|
+
trcc doctor # Check system dependencies
|
|
259
|
+
trcc report # Generate diagnostic report
|
|
234
260
|
trcc setup-udev # Install udev rules
|
|
235
261
|
trcc install-desktop # Install app menu entry and icon
|
|
236
262
|
```
|
|
237
263
|
|
|
238
|
-
See the **[CLI Reference](doc/CLI_REFERENCE.md)** for all
|
|
264
|
+
See the **[CLI Reference](doc/CLI_REFERENCE.md)** for all 36 commands, options, and troubleshooting.
|
|
239
265
|
|
|
240
266
|
## Documentation
|
|
241
267
|
|
|
@@ -262,6 +288,16 @@ A big thanks to everyone who has contributed to this project:
|
|
|
262
288
|
- **[PantherX12max](https://github.com/PantherX12max)** — Trofeo Vision LCD hardware testing
|
|
263
289
|
- **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** — AX120 Digital hardware testing & USB descriptor dumps
|
|
264
290
|
- **[Xentrino](https://github.com/Xentrino)** — Peerless Assassin 120 Digital ARGB White hardware testing
|
|
291
|
+
- **[Pikarz](https://github.com/Pikarz)** — Mjolnir Vision 360 bulk protocol testing
|
|
292
|
+
- **[bipobuilt](https://github.com/bipobuilt)** — GrandVision 360 AIO bulk protocol testing
|
|
293
|
+
- **[cadeon](https://github.com/cadeon)** — GrandVision 360 AIO bulk protocol testing
|
|
294
|
+
- **[michael-spinelli](https://github.com/michael-spinelli)** — Assassin Spirit 120 Vision ARGB HID testing
|
|
295
|
+
- **[gizbo](https://github.com/gizbo)** — FROZEN WARFRAME SCSI color bug report
|
|
296
|
+
- **[hexskrew](https://github.com/hexskrew)** — Assassin X 120R Digital ARGB HID testing
|
|
297
|
+
- **[Rizzzolo](https://github.com/Rizzzolo)** — Phantom Spirit 120 Digital EVO hardware testing
|
|
298
|
+
- **[apj202-ops](https://github.com/apj202-ops)** — Frozen Warframe SE HID testing
|
|
299
|
+
- **[Edoardo-Rossi-EOS](https://github.com/Edoardo-Rossi-EOS)** — Frozen Warframe 360 HID testing
|
|
300
|
+
- **[edoargo1996](https://github.com/edoargo1996)** — Frozen Warframe 360 HID testing
|
|
265
301
|
|
|
266
302
|
## License
|
|
267
303
|
|
|
@@ -35,9 +35,13 @@ Run `lsusb` to find your USB ID (`xxxx:xxxx` after `ID`), then match it below.
|
|
|
35
35
|
| USB ID | Devices |
|
|
36
36
|
|--------|---------|
|
|
37
37
|
| `87CD:70DB` | FROZEN HORIZON PRO, FROZEN MAGIC PRO, FROZEN VISION V2, CORE VISION, ELITE VISION, AK120, AX120, PA120 DIGITAL, Wonder Vision |
|
|
38
|
-
| `87AD:70DB` | GrandVision 360 AIO |
|
|
39
38
|
| `0416:5406` | LC1, LC2, LC3, LC5 (AIO pump heads) |
|
|
40
|
-
| `0402:3922` | FROZEN WARFRAME, FROZEN WARFRAME SE |
|
|
39
|
+
| `0402:3922` | FROZEN WARFRAME, FROZEN WARFRAME 360, FROZEN WARFRAME SE |
|
|
40
|
+
|
|
41
|
+
**Bulk USB devices** — raw USB protocol:
|
|
42
|
+
| USB ID | Devices |
|
|
43
|
+
|--------|---------|
|
|
44
|
+
| `87AD:70DB` | GrandVision 360 AIO, Mjolnir Vision 360 |
|
|
41
45
|
|
|
42
46
|
**HID LCD devices** — auto-detected, needs hardware testers:
|
|
43
47
|
| USB ID | Devices |
|
|
@@ -157,9 +161,10 @@ environment.systemPackages = with pkgs; [
|
|
|
157
161
|
services.udev.extraRules = ''
|
|
158
162
|
# SCSI LCD devices
|
|
159
163
|
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="87cd", ATTRS{idProduct}=="70db", MODE="0666"
|
|
160
|
-
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="87ad", ATTRS{idProduct}=="70db", MODE="0666"
|
|
161
164
|
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="5406", MODE="0666"
|
|
162
165
|
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="0402", ATTRS{idProduct}=="3922", MODE="0666"
|
|
166
|
+
# Bulk USB devices
|
|
167
|
+
SUBSYSTEM=="usb", ATTR{idVendor}=="87ad", ATTR{idProduct}=="70db", MODE="0666"
|
|
163
168
|
# HID LCD/LED devices
|
|
164
169
|
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="5302", MODE="0666"
|
|
165
170
|
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0418", ATTRS{idProduct}=="5303", MODE="0666"
|
|
@@ -178,12 +183,24 @@ pip install --break-system-packages trcc-linux && trcc install-desktop
|
|
|
178
183
|
trcc gui # Launch GUI
|
|
179
184
|
trcc detect # Show connected devices
|
|
180
185
|
trcc send image.png # Send image to LCD
|
|
181
|
-
trcc
|
|
186
|
+
trcc color "#ff0000" # Fill LCD with solid color
|
|
187
|
+
trcc brightness 2 # Set brightness (1=25%, 2=50%, 3=100%)
|
|
188
|
+
trcc rotation 90 # Rotate display (0/90/180/270)
|
|
189
|
+
trcc theme-list # List available themes
|
|
190
|
+
trcc theme-load NAME # Load a theme by name
|
|
191
|
+
trcc overlay # Render and send overlay
|
|
192
|
+
trcc screencast # Live screen capture to LCD
|
|
193
|
+
trcc video clip.mp4 # Play video on LCD
|
|
194
|
+
trcc led-color "#00ff00" # Set LED color
|
|
195
|
+
trcc led-mode breathing # Set LED effect mode
|
|
196
|
+
trcc serve # Start REST API server
|
|
197
|
+
trcc doctor # Check system dependencies
|
|
198
|
+
trcc report # Generate diagnostic report
|
|
182
199
|
trcc setup-udev # Install udev rules
|
|
183
200
|
trcc install-desktop # Install app menu entry and icon
|
|
184
201
|
```
|
|
185
202
|
|
|
186
|
-
See the **[CLI Reference](doc/CLI_REFERENCE.md)** for all
|
|
203
|
+
See the **[CLI Reference](doc/CLI_REFERENCE.md)** for all 36 commands, options, and troubleshooting.
|
|
187
204
|
|
|
188
205
|
## Documentation
|
|
189
206
|
|
|
@@ -210,6 +227,16 @@ A big thanks to everyone who has contributed to this project:
|
|
|
210
227
|
- **[PantherX12max](https://github.com/PantherX12max)** — Trofeo Vision LCD hardware testing
|
|
211
228
|
- **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** — AX120 Digital hardware testing & USB descriptor dumps
|
|
212
229
|
- **[Xentrino](https://github.com/Xentrino)** — Peerless Assassin 120 Digital ARGB White hardware testing
|
|
230
|
+
- **[Pikarz](https://github.com/Pikarz)** — Mjolnir Vision 360 bulk protocol testing
|
|
231
|
+
- **[bipobuilt](https://github.com/bipobuilt)** — GrandVision 360 AIO bulk protocol testing
|
|
232
|
+
- **[cadeon](https://github.com/cadeon)** — GrandVision 360 AIO bulk protocol testing
|
|
233
|
+
- **[michael-spinelli](https://github.com/michael-spinelli)** — Assassin Spirit 120 Vision ARGB HID testing
|
|
234
|
+
- **[gizbo](https://github.com/gizbo)** — FROZEN WARFRAME SCSI color bug report
|
|
235
|
+
- **[hexskrew](https://github.com/hexskrew)** — Assassin X 120R Digital ARGB HID testing
|
|
236
|
+
- **[Rizzzolo](https://github.com/Rizzzolo)** — Phantom Spirit 120 Digital EVO hardware testing
|
|
237
|
+
- **[apj202-ops](https://github.com/apj202-ops)** — Frozen Warframe SE HID testing
|
|
238
|
+
- **[Edoardo-Rossi-EOS](https://github.com/Edoardo-Rossi-EOS)** — Frozen Warframe 360 HID testing
|
|
239
|
+
- **[edoargo1996](https://github.com/edoargo1996)** — Frozen Warframe 360 HID testing
|
|
213
240
|
|
|
214
241
|
## License
|
|
215
242
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "trcc-linux"
|
|
7
|
-
version = "
|
|
7
|
+
version = "3.0.5"
|
|
8
8
|
description = "Linux implementation of Thermalright LCD Control Center"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "GPL-3.0-or-later"
|
|
@@ -29,12 +29,12 @@ classifiers = [
|
|
|
29
29
|
]
|
|
30
30
|
|
|
31
31
|
dependencies = [
|
|
32
|
-
"
|
|
32
|
+
"PySide6>=6.5.0",
|
|
33
33
|
"Pillow>=10.0.0",
|
|
34
34
|
"numpy>=1.24.0",
|
|
35
35
|
"psutil>=5.9.0",
|
|
36
|
-
"py7zr>=0.20.0",
|
|
37
36
|
"pyusb>=1.2.0",
|
|
37
|
+
"typer>=0.9.0",
|
|
38
38
|
]
|
|
39
39
|
|
|
40
40
|
[project.optional-dependencies]
|
|
@@ -48,13 +48,19 @@ wayland = [
|
|
|
48
48
|
hid = [
|
|
49
49
|
"hidapi>=0.14.0",
|
|
50
50
|
]
|
|
51
|
+
api = [
|
|
52
|
+
"fastapi>=0.100",
|
|
53
|
+
"uvicorn[standard]>=0.20",
|
|
54
|
+
]
|
|
51
55
|
dev = [
|
|
52
56
|
"pytest>=7.0.0",
|
|
53
57
|
"pytest-cov>=4.0.0",
|
|
54
58
|
"ruff>=0.4.0",
|
|
59
|
+
"httpx>=0.24.0",
|
|
60
|
+
"python-multipart>=0.0.6",
|
|
55
61
|
]
|
|
56
62
|
all = [
|
|
57
|
-
"trcc-linux[nvidia,wayland,hid,dev]",
|
|
63
|
+
"trcc-linux[nvidia,wayland,hid,api,dev]",
|
|
58
64
|
]
|
|
59
65
|
|
|
60
66
|
[project.urls]
|
|
@@ -30,10 +30,10 @@ __author__ = "TRCC Linux Contributors"
|
|
|
30
30
|
from trcc.dc_config import DcConfig
|
|
31
31
|
from trcc.dc_parser import dc_to_overlay_config, parse_dc_file
|
|
32
32
|
from trcc.device_detector import detect_devices, get_device_path
|
|
33
|
-
from trcc.
|
|
33
|
+
from trcc.device_lcd import LCDDriver
|
|
34
34
|
|
|
35
35
|
# Animation
|
|
36
|
-
from trcc.media_player import
|
|
36
|
+
from trcc.media_player import VideoDecoder
|
|
37
37
|
from trcc.system_info import format_metric, get_all_metrics
|
|
38
38
|
|
|
39
39
|
__all__ = [
|
|
@@ -51,7 +51,5 @@ __all__ = [
|
|
|
51
51
|
"parse_dc_file",
|
|
52
52
|
"dc_to_overlay_config",
|
|
53
53
|
# Animation
|
|
54
|
-
"
|
|
55
|
-
"GIFThemeLoader",
|
|
56
|
-
"VideoPlayer",
|
|
54
|
+
"VideoDecoder",
|
|
57
55
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""TRCC Linux version information."""
|
|
2
2
|
|
|
3
|
-
__version__ = "
|
|
3
|
+
__version__ = "3.0.5"
|
|
4
4
|
__version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
5
5
|
|
|
6
6
|
# Version history:
|
|
@@ -66,3 +66,28 @@ __version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
|
66
66
|
# constants.py (single source of truth), PM=FBL default instead of
|
|
67
67
|
# hardcoded 320x320. Fix PyQt6 version in trcc report. CI: add ffmpeg,
|
|
68
68
|
# auto-publish to PyPI on tag push. Delete dead shim files.
|
|
69
|
+
# 3.0.0 - Hexagonal architecture: services layer (7 services), CLI Typer,
|
|
70
|
+
# REST API adapter, FontResolver extraction, pure media decoders,
|
|
71
|
+
# overlay_renderer merged into services/overlay, dead code removed
|
|
72
|
+
# (theme_io, constants, device_base). Module renames: paths→data_repository,
|
|
73
|
+
# sensor_enumerator→system_sensors, sysinfo_config→system_config,
|
|
74
|
+
# cloud_downloader→theme_cloud, driver_lcd→device_lcd. 2081 tests.
|
|
75
|
+
# 3.0.1 - Full CLI parity: 36 Typer commands expose all service methods.
|
|
76
|
+
# New: theme-save, theme-export, theme-import, led-sensor, mask --clear,
|
|
77
|
+
# brightness, rotation, screencast, overlay, theme-list, theme-load,
|
|
78
|
+
# led-color, led-mode, led-brightness, led-off, video. 2148 tests.
|
|
79
|
+
# 3.0.2 - Fix bulk protocol (87AD:70DB GrandVision): correct frame header
|
|
80
|
+
# format (magic, cmd, dimensions, mode), robust kernel driver detach
|
|
81
|
+
# before set_configuration(), chunked 16 KiB writes, interface claim.
|
|
82
|
+
# Fix legacy autostart cleanup (glob desktop files). 2156 tests.
|
|
83
|
+
# 3.0.3 - Fix background display mode: continuous LCD sending via metrics
|
|
84
|
+
# timer (C# myBjxs/isToTimer parity), toggle OFF renders black+overlays,
|
|
85
|
+
# theme click resets all mode toggles. Security hardening (timing-safe
|
|
86
|
+
# auth, PIL bomb cap, zip-slip, TOCTOU). Tooltips on all user-facing
|
|
87
|
+
# buttons. Distro name in debug report. Help→troubleshooting guide.
|
|
88
|
+
# 3.0.4 - Fix bulk frame encoding: JPEG (cmd=2) instead of raw RGB565 for
|
|
89
|
+
# all USBLCDNew devices (87AD:70DB), matching C# ImageToJpg protocol.
|
|
90
|
+
# PM=32 remains RGB565 (cmd=3). Add PM=5 to bulk resolution table
|
|
91
|
+
# (Mjolnir Vision → 240×320). 2166 tests.
|
|
92
|
+
# 3.0.5 - Fix LED mode button images: asset filename typo caused buttons
|
|
93
|
+
# to show plain text instead of icons. 2167 tests.
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
"""FastAPI REST API — Driving adapter for headless/remote control.
|
|
2
|
+
|
|
3
|
+
Endpoints:
|
|
4
|
+
GET /health — Server status
|
|
5
|
+
GET /devices — List detected devices
|
|
6
|
+
POST /devices/detect — Rescan for devices
|
|
7
|
+
POST /devices/{id}/select — Select a device
|
|
8
|
+
POST /devices/{id}/send — Send image to device LCD
|
|
9
|
+
GET /devices/{id} — Get device details
|
|
10
|
+
GET /themes — List available themes
|
|
11
|
+
|
|
12
|
+
Security:
|
|
13
|
+
- Localhost-only by default (bind 127.0.0.1)
|
|
14
|
+
- Optional token auth via --token flag (X-API-Token header)
|
|
15
|
+
- 10 MB upload limit with PIL format validation
|
|
16
|
+
"""
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
19
|
+
import hmac
|
|
20
|
+
import io
|
|
21
|
+
import logging
|
|
22
|
+
|
|
23
|
+
from fastapi import FastAPI, HTTPException, Request, UploadFile
|
|
24
|
+
from fastapi.responses import JSONResponse
|
|
25
|
+
from PIL import Image
|
|
26
|
+
from pydantic import BaseModel
|
|
27
|
+
|
|
28
|
+
from trcc.__version__ import __version__
|
|
29
|
+
from trcc.services import DeviceService, ImageService, ThemeService
|
|
30
|
+
|
|
31
|
+
log = logging.getLogger(__name__)
|
|
32
|
+
|
|
33
|
+
MAX_UPLOAD_BYTES = 10 * 1024 * 1024 # 10 MB
|
|
34
|
+
|
|
35
|
+
app = FastAPI(title="TRCC Linux", version=__version__)
|
|
36
|
+
|
|
37
|
+
# ── Shared service instances ──────────────────────────────────────────
|
|
38
|
+
|
|
39
|
+
_device_svc = DeviceService()
|
|
40
|
+
|
|
41
|
+
# ── Token auth middleware (optional, enabled via --token) ─────────────
|
|
42
|
+
|
|
43
|
+
_api_token: str | None = None
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
def configure_auth(token: str | None) -> None:
|
|
47
|
+
"""Set the API token. Called by CLI serve command."""
|
|
48
|
+
global _api_token # noqa: PLW0603
|
|
49
|
+
_api_token = token
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
@app.middleware("http")
|
|
53
|
+
async def check_token(request: Request, call_next):
|
|
54
|
+
"""Reject requests without valid token (if token is configured)."""
|
|
55
|
+
if _api_token and request.url.path != "/health":
|
|
56
|
+
header_token = request.headers.get("X-API-Token", "")
|
|
57
|
+
if not hmac.compare_digest(header_token, _api_token):
|
|
58
|
+
return JSONResponse(status_code=401, content={"detail": "Invalid token"})
|
|
59
|
+
return await call_next(request)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
# ── Pydantic models ──────────────────────────────────────────────────
|
|
63
|
+
|
|
64
|
+
class DeviceResponse(BaseModel):
|
|
65
|
+
id: int
|
|
66
|
+
name: str
|
|
67
|
+
vid: int
|
|
68
|
+
pid: int
|
|
69
|
+
protocol: str
|
|
70
|
+
resolution: tuple[int, int]
|
|
71
|
+
path: str
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
class ThemeResponse(BaseModel):
|
|
75
|
+
name: str
|
|
76
|
+
category: str
|
|
77
|
+
is_animated: bool
|
|
78
|
+
has_config: bool
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
# ── Helpers ───────────────────────────────────────────────────────────
|
|
82
|
+
|
|
83
|
+
def _device_to_response(idx: int, dev) -> DeviceResponse:
|
|
84
|
+
return DeviceResponse(
|
|
85
|
+
id=idx,
|
|
86
|
+
name=dev.name,
|
|
87
|
+
vid=dev.vid,
|
|
88
|
+
pid=dev.pid,
|
|
89
|
+
protocol=dev.protocol or "scsi",
|
|
90
|
+
resolution=dev.resolution or (0, 0),
|
|
91
|
+
path=dev.path or "",
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
def _get_device_by_id(device_id: int):
|
|
96
|
+
"""Look up device by index, raise 404 if not found."""
|
|
97
|
+
devices = _device_svc.devices
|
|
98
|
+
if device_id < 0 or device_id >= len(devices):
|
|
99
|
+
raise HTTPException(status_code=404, detail=f"Device {device_id} not found")
|
|
100
|
+
return devices[device_id]
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
# ── Endpoints ────────────────────────────────────────────────────────
|
|
104
|
+
|
|
105
|
+
@app.get("/health")
|
|
106
|
+
def health() -> dict:
|
|
107
|
+
"""Health check (always accessible, no auth required)."""
|
|
108
|
+
return {"status": "ok", "version": __version__}
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
@app.get("/devices")
|
|
112
|
+
def list_devices() -> list[DeviceResponse]:
|
|
113
|
+
"""List currently known devices."""
|
|
114
|
+
return [_device_to_response(i, d) for i, d in enumerate(_device_svc.devices)]
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
@app.post("/devices/detect")
|
|
118
|
+
def detect_devices() -> list[DeviceResponse]:
|
|
119
|
+
"""Rescan USB for LCD devices."""
|
|
120
|
+
_device_svc.detect()
|
|
121
|
+
return [_device_to_response(i, d) for i, d in enumerate(_device_svc.devices)]
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
@app.post("/devices/{device_id}/select")
|
|
125
|
+
def select_device(device_id: int) -> dict:
|
|
126
|
+
"""Select a device by index."""
|
|
127
|
+
dev = _get_device_by_id(device_id)
|
|
128
|
+
_device_svc.select(dev)
|
|
129
|
+
return {"selected": dev.name, "resolution": dev.resolution}
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
@app.get("/devices/{device_id}")
|
|
133
|
+
def get_device(device_id: int) -> DeviceResponse:
|
|
134
|
+
"""Get details for a specific device."""
|
|
135
|
+
dev = _get_device_by_id(device_id)
|
|
136
|
+
return _device_to_response(device_id, dev)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
@app.post("/devices/{device_id}/send")
|
|
140
|
+
async def send_image(device_id: int, image: UploadFile, rotation: int = 0,
|
|
141
|
+
brightness: int = 100) -> dict:
|
|
142
|
+
"""Send an image to the device LCD.
|
|
143
|
+
|
|
144
|
+
Accepts image file upload. Validates size and format before processing.
|
|
145
|
+
"""
|
|
146
|
+
dev = _get_device_by_id(device_id)
|
|
147
|
+
_device_svc.select(dev)
|
|
148
|
+
|
|
149
|
+
# Read and validate upload
|
|
150
|
+
data = await image.read()
|
|
151
|
+
if len(data) > MAX_UPLOAD_BYTES:
|
|
152
|
+
raise HTTPException(status_code=413, detail="Image exceeds 10 MB limit")
|
|
153
|
+
|
|
154
|
+
try:
|
|
155
|
+
img = Image.open(io.BytesIO(data))
|
|
156
|
+
img.load() # Force decode to catch corrupt files
|
|
157
|
+
except Exception:
|
|
158
|
+
raise HTTPException(status_code=400, detail="Invalid image format")
|
|
159
|
+
|
|
160
|
+
# Apply rotation and brightness
|
|
161
|
+
if rotation:
|
|
162
|
+
img = ImageService.apply_rotation(img, rotation)
|
|
163
|
+
if brightness != 100:
|
|
164
|
+
img = ImageService.apply_brightness(img, brightness)
|
|
165
|
+
|
|
166
|
+
# Resize to device resolution
|
|
167
|
+
w, h = dev.resolution or (320, 320)
|
|
168
|
+
img = ImageService.resize(img, w, h)
|
|
169
|
+
|
|
170
|
+
# Convert and send
|
|
171
|
+
byte_order = ImageService.byte_order_for(
|
|
172
|
+
dev.protocol or "scsi", (w, h)
|
|
173
|
+
)
|
|
174
|
+
rgb565 = ImageService.to_rgb565(img, byte_order)
|
|
175
|
+
ok = _device_svc.send_rgb565(rgb565, w, h)
|
|
176
|
+
|
|
177
|
+
if not ok:
|
|
178
|
+
raise HTTPException(status_code=500, detail="Send failed (device busy or error)")
|
|
179
|
+
|
|
180
|
+
return {"sent": True, "resolution": (w, h)}
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
@app.get("/themes")
|
|
184
|
+
def list_themes(resolution: str = "320x320") -> list[ThemeResponse]:
|
|
185
|
+
"""List available local themes for a given resolution."""
|
|
186
|
+
try:
|
|
187
|
+
parts = resolution.split("x")
|
|
188
|
+
w, h = int(parts[0]), int(parts[1])
|
|
189
|
+
except (ValueError, IndexError):
|
|
190
|
+
raise HTTPException(status_code=400, detail="Invalid resolution format (use WxH)")
|
|
191
|
+
if not (100 <= w <= 4096 and 100 <= h <= 4096):
|
|
192
|
+
raise HTTPException(status_code=400, detail="Resolution out of range (100-4096)")
|
|
193
|
+
|
|
194
|
+
from pathlib import Path
|
|
195
|
+
|
|
196
|
+
from trcc.data_repository import ThemeDir
|
|
197
|
+
theme_dir = Path(str(ThemeDir.for_resolution(w, h)))
|
|
198
|
+
themes = ThemeService.discover_local(theme_dir, (w, h))
|
|
199
|
+
return [
|
|
200
|
+
ThemeResponse(
|
|
201
|
+
name=t.name,
|
|
202
|
+
category=t.category or "",
|
|
203
|
+
is_animated=t.is_animated,
|
|
204
|
+
has_config=t.config_path is not None,
|
|
205
|
+
)
|
|
206
|
+
for t in themes
|
|
207
|
+
]
|