trcc-linux 3.0.10__tar.gz → 4.0.0__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-3.0.10 → trcc_linux-4.0.0}/PKG-INFO +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/pyproject.toml +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/__init__.py +6 -6
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/__version__.py +10 -1
- trcc_linux-4.0.0/src/trcc/adapters/__init__.py +1 -0
- trcc_linux-4.0.0/src/trcc/adapters/device/__init__.py +1 -0
- trcc_linux-3.0.10/src/trcc/device_bulk.py → trcc_linux-4.0.0/src/trcc/adapters/device/bulk.py +1 -1
- trcc_linux-3.0.10/src/trcc/device_detector.py → trcc_linux-4.0.0/src/trcc/adapters/device/detector.py +1 -1
- trcc_linux-3.0.10/src/trcc/device_factory.py → trcc_linux-4.0.0/src/trcc/adapters/device/factory.py +19 -27
- trcc_linux-3.0.10/src/trcc/device_hid.py → trcc_linux-4.0.0/src/trcc/adapters/device/hid.py +8 -77
- trcc_linux-3.0.10/src/trcc/device_lcd.py → trcc_linux-4.0.0/src/trcc/adapters/device/lcd.py +6 -5
- trcc_linux-3.0.10/src/trcc/device_led.py → trcc_linux-4.0.0/src/trcc/adapters/device/led.py +18 -286
- trcc_linux-3.0.10/src/trcc/device_led_hr10.py → trcc_linux-4.0.0/src/trcc/adapters/device/led_hr10.py +2 -2
- trcc_linux-3.0.10/src/trcc/device_scsi.py → trcc_linux-4.0.0/src/trcc/adapters/device/scsi.py +6 -6
- trcc_linux-4.0.0/src/trcc/adapters/infra/__init__.py +1 -0
- {trcc_linux-3.0.10/src/trcc → trcc_linux-4.0.0/src/trcc/adapters/infra}/data_repository.py +4 -3
- {trcc_linux-3.0.10/src/trcc → trcc_linux-4.0.0/src/trcc/adapters/infra}/dc_config.py +3 -2
- {trcc_linux-3.0.10/src/trcc → trcc_linux-4.0.0/src/trcc/adapters/infra}/dc_parser.py +2 -1
- {trcc_linux-3.0.10/src/trcc → trcc_linux-4.0.0/src/trcc/adapters/infra}/dc_writer.py +3 -2
- {trcc_linux-3.0.10/src/trcc → trcc_linux-4.0.0/src/trcc/adapters/infra}/debug_report.py +7 -7
- {trcc_linux-3.0.10/src/trcc → trcc_linux-4.0.0/src/trcc/adapters/infra}/doctor.py +1 -1
- {trcc_linux-3.0.10/src/trcc → trcc_linux-4.0.0/src/trcc/adapters/infra}/theme_downloader.py +2 -1
- trcc_linux-4.0.0/src/trcc/adapters/system/__init__.py +1 -0
- trcc_linux-3.0.10/src/trcc/system_config.py → trcc_linux-4.0.0/src/trcc/adapters/system/config.py +5 -22
- trcc_linux-3.0.10/src/trcc/system_sensors.py → trcc_linux-4.0.0/src/trcc/adapters/system/sensors.py +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/api.py +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/cli.py +32 -32
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/conf.py +50 -2
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/core/controllers.py +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/core/models.py +349 -2
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/assets.py +79 -70
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/base.py +10 -10
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/constants.py +2 -12
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/qt_app_mvc.py +37 -72
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_about.py +13 -14
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_activity_sidebar.py +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_device.py +12 -20
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_image_cut.py +2 -2
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_info_module.py +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_led_control.py +15 -21
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_preview.py +3 -3
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_screen_led.py +2 -2
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_sensor_picker.py +7 -6
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_system_info.py +10 -11
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_theme_local.py +5 -5
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_theme_mask.py +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_theme_setting.py +19 -19
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_theme_web.py +2 -2
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_video_cut.py +3 -3
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/services/device.py +5 -5
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/services/display.py +2 -2
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/services/led.py +11 -11
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/services/media.py +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/services/overlay.py +4 -4
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/services/system.py +7 -7
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/services/theme.py +7 -7
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/hid_testing/conftest.py +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/hid_testing/test_device_factory.py +60 -60
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/hid_testing/test_device_hid.py +46 -46
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/hid_testing/test_device_led.py +6 -6
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/hid_testing/test_led_controller.py +32 -32
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_api.py +2 -2
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_architecture.py +3 -3
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_ax120_display.py +5 -5
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_cli.py +71 -71
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_controllers.py +7 -7
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_data_repository.py +29 -29
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_dc_parser.py +18 -18
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_dc_writer.py +3 -3
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_debug_report.py +20 -20
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_device_bulk.py +12 -12
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_device_detector.py +19 -19
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_device_implementations.py +9 -9
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_device_lcd.py +34 -34
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_device_led_kvm.py +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_device_scsi.py +44 -44
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_doctor.py +29 -29
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_hr10_display.py +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_integration.py +43 -43
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_media_player.py +18 -18
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_overlay_renderer.py +1 -1
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_qt_widgets.py +40 -35
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_system_config.py +3 -3
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_system_info.py +14 -14
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_system_sensors.py +76 -76
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_theme_cloud.py +16 -16
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_theme_downloader.py +22 -22
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/.gitignore +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/LICENSE +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/README.md +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/__main__.py +0 -0
- /trcc_linux-3.0.10/src/trcc/device_led_kvm.py → /trcc_linux-4.0.0/src/trcc/adapters/device/led_kvm.py +0 -0
- /trcc_linux-3.0.10/src/trcc/device_led_segment.py → /trcc_linux-4.0.0/src/trcc/adapters/device/led_segment.py +0 -0
- {trcc_linux-3.0.10/src/trcc → trcc_linux-4.0.0/src/trcc/adapters/infra}/binary_reader.py +0 -0
- {trcc_linux-3.0.10/src/trcc → trcc_linux-4.0.0/src/trcc/adapters/infra}/font_resolver.py +0 -0
- {trcc_linux-3.0.10/src/trcc → trcc_linux-4.0.0/src/trcc/adapters/infra}/media_player.py +0 -0
- {trcc_linux-3.0.10/src/trcc → trcc_linux-4.0.0/src/trcc/adapters/infra}/theme_cloud.py +0 -0
- /trcc_linux-3.0.10/src/trcc/system_info.py → /trcc_linux-4.0.0/src/trcc/adapters/system/info.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/345/205/263/344/272/216d.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/345/205/263/344/272/216e.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/345/205/263/344/272/216en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/345/205/263/344/272/216f.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/345/205/263/344/272/216p.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/345/205/263/344/272/216r.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/345/205/263/344/272/216tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/345/205/263/344/272/216x.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A2_update_overlay.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/206/205/345/256/271d.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/206/205/345/256/271e.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/206/205/345/256/271en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/206/205/345/256/271f.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/206/205/345/256/271p.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/206/205/345/256/271r.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/206/205/345/256/271tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/206/205/345/256/271x.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277d.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277e.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277f.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277p.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277r.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277x.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277d.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277e.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277f.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277p.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277r.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277x.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xy.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyd.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xye.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyen.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyf.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyp.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyr.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xytc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyx.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yx.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxd.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxe.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxen.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxf.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxp.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxr.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxtc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxx.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250d.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250e.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250f.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250p.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250r.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250x.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272d.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272e.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272f.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272p.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272r.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272x.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0CZTV.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0CZTVd.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0CZTVe.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0CZTVen.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0CZTVf.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0CZTVp.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0CZTVr.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0CZTVtc.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0CZTVx.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257d.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257e.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257f.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257p.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257r.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257x.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/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-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/screen_capture.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/qt_components/uc_seven_segment.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/src/trcc/services/image.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/README.md +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/__init__.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/hid_testing/__init__.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/run_tests.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_models.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_qt_base.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_qt_constants.py +0 -0
- {trcc_linux-3.0.10 → trcc_linux-4.0.0}/tests/test_services.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version:
|
|
3
|
+
Version: 4.0.0
|
|
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
|
|
@@ -27,14 +27,14 @@ __version__ = "1.0.0"
|
|
|
27
27
|
__author__ = "TRCC Linux Contributors"
|
|
28
28
|
|
|
29
29
|
# Core exports
|
|
30
|
-
from trcc.
|
|
31
|
-
from trcc.
|
|
32
|
-
from trcc.
|
|
33
|
-
from trcc.
|
|
30
|
+
from trcc.adapters.device.detector import detect_devices, get_device_path
|
|
31
|
+
from trcc.adapters.device.lcd import LCDDriver
|
|
32
|
+
from trcc.adapters.infra.dc_config import DcConfig
|
|
33
|
+
from trcc.adapters.infra.dc_parser import dc_to_overlay_config, parse_dc_file
|
|
34
34
|
|
|
35
35
|
# Animation
|
|
36
|
-
from trcc.media_player import VideoDecoder
|
|
37
|
-
from trcc.
|
|
36
|
+
from trcc.adapters.infra.media_player import VideoDecoder
|
|
37
|
+
from trcc.adapters.system.info import format_metric, get_all_metrics
|
|
38
38
|
|
|
39
39
|
__all__ = [
|
|
40
40
|
# Version
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""TRCC Linux version information."""
|
|
2
2
|
|
|
3
|
-
__version__ = "
|
|
3
|
+
__version__ = "4.0.0"
|
|
4
4
|
__version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
5
5
|
|
|
6
6
|
# Version history:
|
|
@@ -113,3 +113,12 @@ __version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
|
113
113
|
# Rectangle(x,y,w,h) coordinates, 460×460 widget. Unified device
|
|
114
114
|
# sidebar buttons: remove DeviceButton class, all buttons use
|
|
115
115
|
# create_image_button with setChecked() toggle. 2288 tests.
|
|
116
|
+
# 4.0.0 - Hexagonal adapters/ restructure: move 24 flat files into
|
|
117
|
+
# adapters/device/ (10 files), adapters/system/ (3 files),
|
|
118
|
+
# adapters/infra/ (11 files). Domain data consolidation: all static
|
|
119
|
+
# mappings centralized in core/models.py (LED styles, button images,
|
|
120
|
+
# protocol names, category data). Assets centralization: eliminate
|
|
121
|
+
# 19 duplicate .png calls via Assets class. Language state unified:
|
|
122
|
+
# settings.lang singleton replaces 5 widget self._lang copies.
|
|
123
|
+
# Clean hexagonal boundary: core/ + services/ (pure Python) →
|
|
124
|
+
# adapters/ (device/system/infra I/O). 2290 tests.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""TRCC Adapters — device protocols, system integration, infrastructure."""
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Device protocol adapters — SCSI, HID, LED, Bulk."""
|
trcc_linux-3.0.10/src/trcc/device_bulk.py → trcc_linux-4.0.0/src/trcc/adapters/device/bulk.py
RENAMED
|
@@ -18,7 +18,7 @@ from __future__ import annotations
|
|
|
18
18
|
import logging
|
|
19
19
|
import struct
|
|
20
20
|
|
|
21
|
-
from .core.models import HandshakeResult, fbl_to_resolution, pm_to_fbl
|
|
21
|
+
from trcc.core.models import HandshakeResult, fbl_to_resolution, pm_to_fbl
|
|
22
22
|
|
|
23
23
|
log = logging.getLogger(__name__)
|
|
24
24
|
|
trcc_linux-3.0.10/src/trcc/device_factory.py → trcc_linux-4.0.0/src/trcc/adapters/device/factory.py
RENAMED
|
@@ -23,7 +23,12 @@ from abc import ABC, abstractmethod
|
|
|
23
23
|
from dataclasses import dataclass, field
|
|
24
24
|
from typing import Any, Callable, Dict, List, Optional, Tuple
|
|
25
25
|
|
|
26
|
-
from .core.models import
|
|
26
|
+
from trcc.core.models import (
|
|
27
|
+
DEVICE_TYPE_NAMES,
|
|
28
|
+
LED_DEVICE_TYPE_NAME,
|
|
29
|
+
PROTOCOL_NAMES,
|
|
30
|
+
HandshakeResult,
|
|
31
|
+
)
|
|
27
32
|
|
|
28
33
|
log = logging.getLogger(__name__)
|
|
29
34
|
|
|
@@ -143,7 +148,7 @@ class ScsiProtocol(DeviceProtocol):
|
|
|
143
148
|
|
|
144
149
|
def send_image(self, image_data: bytes, width: int, height: int) -> bool:
|
|
145
150
|
try:
|
|
146
|
-
from .
|
|
151
|
+
from .scsi import send_image_to_device
|
|
147
152
|
log.debug("SCSI send: %d bytes to %s (%dx%d)", len(image_data), self._path, width, height)
|
|
148
153
|
success = send_image_to_device(self._path, image_data, width, height)
|
|
149
154
|
self._notify_send_complete(success)
|
|
@@ -214,7 +219,7 @@ class HidProtocol(DeviceProtocol):
|
|
|
214
219
|
self._transport.open()
|
|
215
220
|
self._notify_state_changed("transport_open", True)
|
|
216
221
|
|
|
217
|
-
from .
|
|
222
|
+
from .hid import HidDeviceType2, HidDeviceType3
|
|
218
223
|
if self._device_type == 2:
|
|
219
224
|
handler = HidDeviceType2(self._transport)
|
|
220
225
|
elif self._device_type == 3:
|
|
@@ -246,7 +251,7 @@ class HidProtocol(DeviceProtocol):
|
|
|
246
251
|
|
|
247
252
|
def send_image(self, image_data: bytes, width: int, height: int) -> bool:
|
|
248
253
|
try:
|
|
249
|
-
from .
|
|
254
|
+
from .hid import HidDeviceManager
|
|
250
255
|
if self._transport is None:
|
|
251
256
|
self._transport = self._create_transport()
|
|
252
257
|
self._transport.open()
|
|
@@ -361,10 +366,10 @@ class LedProtocol(DeviceProtocol):
|
|
|
361
366
|
self._notify_state_changed("transport_open", True)
|
|
362
367
|
|
|
363
368
|
if self._sender is None:
|
|
364
|
-
from .
|
|
369
|
+
from .led import LedHidSender
|
|
365
370
|
self._sender = LedHidSender(self._transport)
|
|
366
371
|
|
|
367
|
-
from .
|
|
372
|
+
from .led import LedPacketBuilder, remap_led_colors
|
|
368
373
|
|
|
369
374
|
# Remap logical LED order → physical wire order (per-style).
|
|
370
375
|
if self._handshake_info and self._handshake_info.style:
|
|
@@ -403,7 +408,7 @@ class LedProtocol(DeviceProtocol):
|
|
|
403
408
|
self._notify_state_changed("transport_open", True)
|
|
404
409
|
|
|
405
410
|
if self._sender is None:
|
|
406
|
-
from .
|
|
411
|
+
from .led import LedHidSender
|
|
407
412
|
self._sender = LedHidSender(self._transport)
|
|
408
413
|
|
|
409
414
|
self._handshake_info = self._sender.handshake()
|
|
@@ -499,7 +504,7 @@ class BulkProtocol(DeviceProtocol):
|
|
|
499
504
|
def _ensure_device(self):
|
|
500
505
|
"""Lazily create and handshake the bulk device."""
|
|
501
506
|
if self._device is None:
|
|
502
|
-
from .
|
|
507
|
+
from .bulk import BulkDevice
|
|
503
508
|
self._device = BulkDevice(self._vid, self._pid)
|
|
504
509
|
result = self._device.handshake()
|
|
505
510
|
self._handshake_result = result
|
|
@@ -702,12 +707,12 @@ class DeviceProtocolFactory:
|
|
|
702
707
|
@staticmethod
|
|
703
708
|
def create_usb_transport(vid: int, pid: int):
|
|
704
709
|
"""Create the best available USB transport (pyusb preferred, hidapi fallback)."""
|
|
705
|
-
from .
|
|
710
|
+
from .hid import HIDAPI_AVAILABLE, PYUSB_AVAILABLE
|
|
706
711
|
if PYUSB_AVAILABLE:
|
|
707
|
-
from .
|
|
712
|
+
from .hid import PyUsbTransport
|
|
708
713
|
return PyUsbTransport(vid, pid)
|
|
709
714
|
elif HIDAPI_AVAILABLE:
|
|
710
|
-
from .
|
|
715
|
+
from .hid import HidApiTransport
|
|
711
716
|
return HidApiTransport(vid, pid)
|
|
712
717
|
else:
|
|
713
718
|
raise ImportError(
|
|
@@ -720,7 +725,7 @@ class DeviceProtocolFactory:
|
|
|
720
725
|
def _get_hid_backends() -> Dict[str, bool]:
|
|
721
726
|
"""Check HID backend availability."""
|
|
722
727
|
try:
|
|
723
|
-
from .
|
|
728
|
+
from .hid import HIDAPI_AVAILABLE, PYUSB_AVAILABLE
|
|
724
729
|
return {"pyusb": PYUSB_AVAILABLE, "hidapi": HIDAPI_AVAILABLE}
|
|
725
730
|
except ImportError:
|
|
726
731
|
return {"pyusb": False, "hidapi": False}
|
|
@@ -816,21 +821,8 @@ class DeviceProtocolFactory:
|
|
|
816
821
|
# Protocol Info API — for GUI to query device/backend state
|
|
817
822
|
# =========================================================================
|
|
818
823
|
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
"hid": "HID (USB bulk)",
|
|
822
|
-
"led": "LED (HID 64-byte)",
|
|
823
|
-
"bulk": "USB Bulk (USBLCDNew)",
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
DEVICE_TYPE_NAMES = {
|
|
827
|
-
1: "SCSI RGB565",
|
|
828
|
-
2: "HID Type 2 (H)",
|
|
829
|
-
3: "HID Type 3 (ALi)",
|
|
830
|
-
4: "Raw USB Bulk LCD",
|
|
831
|
-
}
|
|
832
|
-
|
|
833
|
-
LED_DEVICE_TYPE_NAME = "RGB LED Controller"
|
|
824
|
+
# Domain data re-exported from core.models (canonical location):
|
|
825
|
+
# PROTOCOL_NAMES, DEVICE_TYPE_NAMES, LED_DEVICE_TYPE_NAME
|
|
834
826
|
|
|
835
827
|
|
|
836
828
|
@dataclass
|
|
@@ -22,15 +22,18 @@ import logging
|
|
|
22
22
|
import struct
|
|
23
23
|
import time
|
|
24
24
|
from abc import ABC, abstractmethod
|
|
25
|
-
from dataclasses import dataclass
|
|
26
25
|
from typing import Any, Optional, Set
|
|
27
26
|
|
|
28
27
|
import usb.core
|
|
29
28
|
import usb.util
|
|
30
29
|
|
|
31
|
-
from .core.models import (
|
|
32
|
-
|
|
30
|
+
from trcc.core.models import (
|
|
31
|
+
DEVICE_BUTTON_IMAGE, # noqa: F401 — re-export
|
|
32
|
+
PM_TO_BUTTON_IMAGE, # noqa: F401 — re-export
|
|
33
|
+
HandshakeResult, # noqa: F401 — re-export
|
|
34
|
+
HidHandshakeInfo,
|
|
33
35
|
fbl_to_resolution,
|
|
36
|
+
get_button_image, # noqa: F401 — re-export
|
|
34
37
|
pm_to_fbl,
|
|
35
38
|
)
|
|
36
39
|
|
|
@@ -106,80 +109,8 @@ USB_INTERFACE = 0
|
|
|
106
109
|
|
|
107
110
|
|
|
108
111
|
|
|
109
|
-
#
|
|
110
|
-
|
|
111
|
-
# Unified device → button image map (from UCDevice.cs ADDUserButton).
|
|
112
|
-
# Outer key: HID PM byte (0-255) or SCSI VID (>255).
|
|
113
|
-
# Inner key: HID SUB byte or SCSI PID. None = default when sub/pid not matched.
|
|
114
|
-
DEVICE_BUTTON_IMAGE: dict[int, dict[Optional[int], str]] = {
|
|
115
|
-
# -- HID Vision/RGB devices (case 257, PM + SUB) --
|
|
116
|
-
1: {0: 'A1GRAND VISION', 1: 'A1GRAND VISION',
|
|
117
|
-
48: 'A1LM22', 49: 'A1LF14', None: 'A1GRAND VISION'},
|
|
118
|
-
3: {None: 'A1CORE VISION'},
|
|
119
|
-
4: {1: 'A1HYPER VISION', 2: 'A1RP130 VISION', 3: 'A1LM16SE'},
|
|
120
|
-
5: {None: 'A1Mjolnir VISION'},
|
|
121
|
-
6: {1: 'FROZEN WARFRAME Ultra', 2: 'A1FROZEN VISION V2'},
|
|
122
|
-
7: {1: 'A1Stream Vision', 2: 'A1Mjolnir VISION PRO'},
|
|
123
|
-
9: {None: 'A1LC2JD'},
|
|
124
|
-
10: {5: 'A1LF16', 6: 'A1LF18', None: 'A1LC3'},
|
|
125
|
-
11: {None: 'A1LF19'},
|
|
126
|
-
12: {None: 'A1LF167'},
|
|
127
|
-
# -- HID LCD devices (case 2 + case 257 merged, PM + SUB) --
|
|
128
|
-
32: {0: 'A1ELITE VISION', 1: 'A1FROZEN WARFRAME PRO',
|
|
129
|
-
None: 'A1ELITE VISION'},
|
|
130
|
-
36: {None: 'A1AS120 VISION'},
|
|
131
|
-
50: {None: 'A1FROZEN WARFRAME'},
|
|
132
|
-
51: {None: 'A1FROZEN WARFRAME'},
|
|
133
|
-
52: {None: 'A1BA120 VISION'},
|
|
134
|
-
53: {None: 'A1BA120 VISION'},
|
|
135
|
-
54: {None: 'A1LC5'},
|
|
136
|
-
58: {0: 'A1FROZEN WARFRAME SE', None: 'A1LM26'},
|
|
137
|
-
64: {0: 'A1FROZEN WARFRAME PRO', 1: 'A1LM22', 2: 'A1LM27'},
|
|
138
|
-
65: {0: 'A1ELITE VISION', 1: 'A1LF14'},
|
|
139
|
-
100: {0: 'A1FROZEN WARFRAME PRO', 1: 'A1LM22',
|
|
140
|
-
None: 'A1FROZEN WARFRAME PRO'},
|
|
141
|
-
101: {0: 'A1ELITE VISION', 1: 'A1LF14', None: 'A1ELITE VISION'},
|
|
142
|
-
128: {None: 'A1LM24'},
|
|
143
|
-
# -- SCSI devices (VID → {PID: image}) --
|
|
144
|
-
0x87CD: {0x70DB: 'A1CZTV', None: 'A1CZTV'},
|
|
145
|
-
0x87AD: {0x70DB: 'A1GRAND VISION', None: 'A1GRAND VISION'},
|
|
146
|
-
0x0402: {0x3922: 'A1FROZEN WARFRAME', None: 'A1FROZEN WARFRAME'},
|
|
147
|
-
0x0416: {0x5406: 'A1CZTV', None: 'A1CZTV'},
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
# Keep old name as alias for backward compat
|
|
151
|
-
PM_TO_BUTTON_IMAGE = DEVICE_BUTTON_IMAGE
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
def get_button_image(key: int, sub: int = 0) -> Optional[str]:
|
|
155
|
-
"""Resolve device button image from PM+SUB (HID) or VID+PID (SCSI).
|
|
156
|
-
|
|
157
|
-
Args:
|
|
158
|
-
key: PM byte (0-255) for HID devices, or VID for SCSI devices.
|
|
159
|
-
sub: SUB byte for HID devices, or PID for SCSI devices.
|
|
160
|
-
|
|
161
|
-
Returns image name, or None if unknown.
|
|
162
|
-
"""
|
|
163
|
-
sub_map = DEVICE_BUTTON_IMAGE.get(key)
|
|
164
|
-
if sub_map is None:
|
|
165
|
-
return None
|
|
166
|
-
if sub in sub_map:
|
|
167
|
-
return sub_map[sub]
|
|
168
|
-
return sub_map.get(None)
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
# =========================================================================
|
|
172
|
-
# Data classes
|
|
173
|
-
# =========================================================================
|
|
174
|
-
|
|
175
|
-
@dataclass
|
|
176
|
-
class HidHandshakeInfo(HandshakeResult):
|
|
177
|
-
"""HID-specific handshake info (extends HandshakeResult)."""
|
|
178
|
-
device_type: int = 0 # 2 or 3
|
|
179
|
-
mode_byte_1: int = 0 # Type 2: resp[5] (PM), Type 3: resp[0]-1
|
|
180
|
-
mode_byte_2: int = 0 # Type 2: resp[4] (SUB), Type 3: 0
|
|
181
|
-
fbl: Optional[int] = None # FBL code resolved from PM/SUB
|
|
182
|
-
|
|
112
|
+
# Domain data re-exported from core.models (canonical location):
|
|
113
|
+
# DEVICE_BUTTON_IMAGE, PM_TO_BUTTON_IMAGE, get_button_image, HidHandshakeInfo
|
|
183
114
|
|
|
184
115
|
# =========================================================================
|
|
185
116
|
# Abstract USB transport
|
|
@@ -7,11 +7,12 @@ Combines device detection with implementation-specific protocols.
|
|
|
7
7
|
import logging
|
|
8
8
|
from typing import Optional
|
|
9
9
|
|
|
10
|
-
from .core.models import LCDDeviceConfig
|
|
11
|
-
from .
|
|
12
|
-
from .
|
|
13
|
-
|
|
14
|
-
from .
|
|
10
|
+
from trcc.core.models import LCDDeviceConfig
|
|
11
|
+
from trcc.services.device import DeviceService
|
|
12
|
+
from trcc.services.image import ImageService
|
|
13
|
+
|
|
14
|
+
from .detector import DetectedDevice, detect_devices, get_default_device
|
|
15
|
+
from .scsi import ScsiDevice
|
|
15
16
|
|
|
16
17
|
log = logging.getLogger(__name__)
|
|
17
18
|
|
|
@@ -15,12 +15,22 @@ from __future__ import annotations
|
|
|
15
15
|
|
|
16
16
|
import logging
|
|
17
17
|
import time
|
|
18
|
-
from dataclasses import dataclass
|
|
19
18
|
from pathlib import Path
|
|
20
|
-
from typing import List,
|
|
19
|
+
from typing import List, Optional, Tuple
|
|
20
|
+
|
|
21
|
+
from trcc.core.models import (
|
|
22
|
+
LED_REMAP_TABLES, # noqa: F401 — re-export
|
|
23
|
+
LED_STYLES, # noqa: F401 — re-export
|
|
24
|
+
PRESET_COLORS, # noqa: F401 — re-export
|
|
25
|
+
HandshakeResult, # noqa: F401 — re-export
|
|
26
|
+
LedDeviceStyle, # noqa: F401 — re-export
|
|
27
|
+
LedHandshakeInfo,
|
|
28
|
+
PmEntry, # noqa: F401 — re-export
|
|
29
|
+
PmRegistry,
|
|
30
|
+
remap_led_colors, # noqa: F401 — re-export
|
|
31
|
+
)
|
|
21
32
|
|
|
22
|
-
from .
|
|
23
|
-
from .device_hid import (
|
|
33
|
+
from .hid import (
|
|
24
34
|
DEFAULT_TIMEOUT_MS,
|
|
25
35
|
EP_READ_01,
|
|
26
36
|
EP_WRITE_02,
|
|
@@ -67,268 +77,10 @@ DELAY_PRE_INIT_S = 0.050 # Thread.Sleep(50) before init
|
|
|
67
77
|
DELAY_POST_INIT_S = 0.200 # Thread.Sleep(200) after init
|
|
68
78
|
|
|
69
79
|
|
|
70
|
-
# =========================================================================
|
|
71
|
-
# Device styles (from FormLED.cs FormLEDInit, lines 1598-1750)
|
|
72
|
-
# =========================================================================
|
|
73
|
-
|
|
74
|
-
@dataclass
|
|
75
|
-
class LedDeviceStyle:
|
|
76
|
-
"""LED device configuration derived from FormLEDInit pm→nowLedStyle.
|
|
77
|
-
|
|
78
|
-
Attributes:
|
|
79
|
-
style_id: Internal style number (nowLedStyle in Windows).
|
|
80
|
-
led_count: Total addressable LEDs (LedCountValN).
|
|
81
|
-
segment_count: Logical segments (LedCountValNs).
|
|
82
|
-
zone_count: Number of independent zones (1=single, 2-4=multi).
|
|
83
|
-
model_name: Human-readable model name.
|
|
84
|
-
preview_image: Device background asset name (D{Name}.png).
|
|
85
|
-
background_base: Localized background base (D0{Name}).
|
|
86
|
-
"""
|
|
87
|
-
style_id: int
|
|
88
|
-
led_count: int
|
|
89
|
-
segment_count: int
|
|
90
|
-
zone_count: int = 1
|
|
91
|
-
model_name: str = ""
|
|
92
|
-
preview_image: str = ""
|
|
93
|
-
background_base: str = "D0数码屏"
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
# All LED styles from FormLED.cs FormLEDInit and UCScreenLED.cs constants
|
|
97
|
-
LED_STYLES = {
|
|
98
|
-
1: LedDeviceStyle(1, 30, 10, 1, "AX120_DIGITAL", "DAX120_DIGITAL", "D0数码屏"),
|
|
99
|
-
2: LedDeviceStyle(2, 84, 18, 4, "PA120_DIGITAL", "DPA120_DIGITAL", "D0数码屏4区域"),
|
|
100
|
-
3: LedDeviceStyle(3, 64, 10, 2, "AK120_DIGITAL", "DAK120_DIGITAL", "D0数码屏"),
|
|
101
|
-
4: LedDeviceStyle(4, 31, 14, 1, "LC1", "DLC1", "D0LC1"),
|
|
102
|
-
5: LedDeviceStyle(5, 93, 23, 2, "LF8", "DLF8", "D0LF8"),
|
|
103
|
-
6: LedDeviceStyle(6, 124, 72, 2, "LF12", "DLF12", "D0LF12"),
|
|
104
|
-
7: LedDeviceStyle(7, 116, 12, 3, "LF10", "DLF10", "D0LF10"),
|
|
105
|
-
8: LedDeviceStyle(8, 18, 13, 4, "CZ1", "DCZ1", "D0CZ1"),
|
|
106
|
-
9: LedDeviceStyle(9, 61, 31, 1, "LC2", "DLC2", "D0LC2"),
|
|
107
|
-
10: LedDeviceStyle(10, 38, 17, 1, "LF11", "DLF11", "D0LF11"),
|
|
108
|
-
11: LedDeviceStyle(11, 93, 72, 2, "LF15", "DLF15", "D0LF15"),
|
|
109
|
-
12: LedDeviceStyle(12, 62, 62, 1, "LF13", "DLF13", "D0rgblf13"),
|
|
110
|
-
# HR10 2280 Pro Digital — NVMe SSD heatsink with ARGB digital display.
|
|
111
|
-
# Shares PM=128 and LED config with LC1 (31 LEDs, 14 segments, 1 zone).
|
|
112
|
-
# Distinguished from LC1 by sub_type=129 in handshake response.
|
|
113
|
-
13: LedDeviceStyle(13, 31, 14, 1, "HR10_2280_PRO_DIGITAL", "DAX120_DIGITAL", "D0数码屏"),
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
# -------------------------------------------------------------------------
|
|
117
|
-
# PM registry — single source of truth for PM → (style, model, button image)
|
|
118
|
-
# -------------------------------------------------------------------------
|
|
119
|
-
|
|
120
|
-
class PmEntry(NamedTuple):
|
|
121
|
-
"""PM registry entry mapping a firmware PM byte to device metadata."""
|
|
122
|
-
style_id: int
|
|
123
|
-
model_name: str
|
|
124
|
-
button_image: str
|
|
125
|
-
preview_image: str = "" # PM-specific preview; empty = use style default
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
class PmRegistry:
|
|
129
|
-
"""Encapsulates all PM-to-device metadata lookups.
|
|
130
|
-
|
|
131
|
-
Maps firmware PM bytes (from HID handshake) to device style, model name,
|
|
132
|
-
and button image. Handles sub-type overrides (e.g. HR10 vs LC1 on PM=128)
|
|
133
|
-
and PA120 variant range (PMs 17-31).
|
|
134
|
-
"""
|
|
135
|
-
|
|
136
|
-
# (pm, sub_type) → PmEntry override for devices that share a PM byte.
|
|
137
|
-
_OVERRIDES: dict[tuple[int, int], PmEntry] = {
|
|
138
|
-
(128, 129): PmEntry(13, "HR10_2280_PRO_DIGITAL", "A1HR10 2280 PRO DIGITAL"),
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
# PM → PmEntry base registry (built once at class load time).
|
|
142
|
-
_REGISTRY: dict[int, PmEntry] = {
|
|
143
|
-
1: PmEntry(1, "FROZEN_HORIZON_PRO", "A1FROZEN HORIZON PRO", "DFROZEN_HORIZON_PRO"),
|
|
144
|
-
2: PmEntry(1, "FROZEN_MAGIC_PRO", "A1FROZEN MAGIC PRO", "DFROZEN_MAGIC_PRO"),
|
|
145
|
-
3: PmEntry(1, "AX120_DIGITAL", "A1AX120 DIGITAL"),
|
|
146
|
-
16: PmEntry(2, "PA120_DIGITAL", "A1PA120 DIGITAL"),
|
|
147
|
-
23: PmEntry(2, "RK120_DIGITAL", "A1RK120 DIGITAL"),
|
|
148
|
-
32: PmEntry(3, "AK120_DIGITAL", "A1AK120 Digital"),
|
|
149
|
-
48: PmEntry(5, "LF8", "A1LF8"),
|
|
150
|
-
49: PmEntry(5, "LF10", "A1LF10"),
|
|
151
|
-
80: PmEntry(6, "LF12", "A1LF12"),
|
|
152
|
-
96: PmEntry(7, "LF10", "A1LF10"),
|
|
153
|
-
112: PmEntry(9, "LC2", "A1LC2"),
|
|
154
|
-
128: PmEntry(4, "LC1", "A1LC1"),
|
|
155
|
-
129: PmEntry(10, "LF11", "A1LF11"),
|
|
156
|
-
144: PmEntry(11, "LF15", "A1LF15"),
|
|
157
|
-
160: PmEntry(12, "LF13", "A1LF13"),
|
|
158
|
-
208: PmEntry(8, "CZ1", "A1CZ1"),
|
|
159
|
-
# PA120 variants (PMs 17-22, 24-31) all map to style 2.
|
|
160
|
-
**{pm: PmEntry(2, "PA120_DIGITAL", "A1PA120 DIGITAL")
|
|
161
|
-
for pm in range(17, 32) if pm not in (23,)},
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
# PM → style_id convenience mapping (used by cli.py, debug_report.py).
|
|
165
|
-
PM_TO_STYLE: dict[int, int] = {pm: e.style_id for pm, e in _REGISTRY.items()}
|
|
166
|
-
|
|
167
|
-
@classmethod
|
|
168
|
-
def resolve(cls, pm: int, sub_type: int = 0) -> Optional[PmEntry]:
|
|
169
|
-
"""Resolve PM + SUB to a PmEntry, checking overrides first."""
|
|
170
|
-
return cls._OVERRIDES.get((pm, sub_type)) or cls._REGISTRY.get(pm)
|
|
171
|
-
|
|
172
|
-
@classmethod
|
|
173
|
-
def get_button_image(cls, pm: int, sub: int = 0) -> Optional[str]:
|
|
174
|
-
"""Resolve LED device button image from PM byte.
|
|
175
|
-
|
|
176
|
-
Returns None if PM is unknown.
|
|
177
|
-
"""
|
|
178
|
-
entry = cls.resolve(pm, sub)
|
|
179
|
-
return entry.button_image if entry else None
|
|
180
|
-
|
|
181
|
-
@classmethod
|
|
182
|
-
def get_model_name(cls, pm: int, sub_type: int = 0) -> str:
|
|
183
|
-
"""Get human-readable model name for a PM + SUB byte combo.
|
|
184
|
-
|
|
185
|
-
Checks overrides first (e.g. HR10 vs LC1), then base registry.
|
|
186
|
-
Falls back to "Unknown (pm=N)" for unrecognized PMs.
|
|
187
|
-
"""
|
|
188
|
-
entry = cls.resolve(pm, sub_type)
|
|
189
|
-
return entry.model_name if entry else f"Unknown (pm={pm})"
|
|
190
|
-
|
|
191
|
-
@classmethod
|
|
192
|
-
def get_style(cls, pm: int, sub_type: int = 0) -> LedDeviceStyle:
|
|
193
|
-
"""Get LED device style from firmware PM byte (and optional sub_type).
|
|
194
|
-
|
|
195
|
-
Falls back to style 1 (30 LEDs) for unknown PM values.
|
|
196
|
-
"""
|
|
197
|
-
entry = cls.resolve(pm, sub_type)
|
|
198
|
-
return LED_STYLES[entry.style_id if entry else 1]
|
|
199
80
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
entry = cls.resolve(pm, sub_type)
|
|
204
|
-
if entry and entry.preview_image:
|
|
205
|
-
return entry.preview_image
|
|
206
|
-
style = cls.get_style(pm, sub_type)
|
|
207
|
-
return style.preview_image
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
# Preset colors from FormLED.cs ucColor1_ChangeColor handlers
|
|
211
|
-
# Note: Windows ucColor1Delegate has swapped B,G params (R,B,G order)
|
|
212
|
-
PRESET_COLORS: List[Tuple[int, int, int]] = [
|
|
213
|
-
(255, 0, 42), # C1: Red-pink
|
|
214
|
-
(255, 110, 0), # C2: Orange
|
|
215
|
-
(255, 255, 0), # C3: Yellow
|
|
216
|
-
(0, 255, 0), # C4: Green
|
|
217
|
-
(0, 255, 255), # C5: Cyan
|
|
218
|
-
(0, 91, 255), # C6: Blue
|
|
219
|
-
(214, 0, 255), # C7: Purple
|
|
220
|
-
(255, 255, 255), # C8: White
|
|
221
|
-
]
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
# =========================================================================
|
|
225
|
-
# LED index remapping tables (from FormLED.cs SendHidVal)
|
|
226
|
-
# =========================================================================
|
|
227
|
-
# Each style has a hardware-specific mapping from logical LED indices to
|
|
228
|
-
# physical wire positions. Windows builds colors in logical order, then
|
|
229
|
-
# remaps before sending. Without this step, colors land on wrong LEDs.
|
|
230
|
-
#
|
|
231
|
-
# Table format: tuple of logical LED indices, one per physical position.
|
|
232
|
-
# Physical position i on the device wire gets colors from logical LED table[i].
|
|
233
|
-
|
|
234
|
-
# Style 2: PA120_DIGITAL (84 LEDs, 4 zones)
|
|
235
|
-
_REMAP_STYLE_2: tuple[int, ...] = (
|
|
236
|
-
# Cpu2 Cpu1 | Zone 1: F A B G E D C
|
|
237
|
-
3, 2, 14, 9, 10, 15, 13, 12, 11,
|
|
238
|
-
# Zone 2: F A B G E D C
|
|
239
|
-
21, 16, 17, 22, 20, 19, 18,
|
|
240
|
-
# Zone 3: F A B G E D C
|
|
241
|
-
28, 23, 24, 29, 27, 26, 25,
|
|
242
|
-
# Zone 4: F A B G E D C
|
|
243
|
-
36, 31, 32, 37, 35, 34, 33,
|
|
244
|
-
# Zone 5: F A B G E D C
|
|
245
|
-
43, 38, 39, 44, 42, 41, 40,
|
|
246
|
-
# BFB BFB1
|
|
247
|
-
8, 8,
|
|
248
|
-
# Zone 10 (reversed): C D E G B A F
|
|
249
|
-
75, 76, 77, 79, 74, 73, 78,
|
|
250
|
-
# Zone 9 (reversed): C D E G B A F
|
|
251
|
-
68, 69, 70, 72, 67, 66, 71,
|
|
252
|
-
# B12 C12 SSD1 HSD1
|
|
253
|
-
82, 83, 6, 7,
|
|
254
|
-
# Zone 8 (reversed): C D E G B A F
|
|
255
|
-
61, 62, 63, 65, 60, 59, 64,
|
|
256
|
-
# Zone 7 (reversed): C D E G B A F
|
|
257
|
-
54, 55, 56, 58, 53, 52, 57,
|
|
258
|
-
# Zone 6 (reversed): C D E G B A F
|
|
259
|
-
47, 48, 49, 51, 46, 45, 50,
|
|
260
|
-
# Gpu1 Gpu2 SSD HSD C11 B11
|
|
261
|
-
4, 5, 6, 7, 81, 80,
|
|
262
|
-
)
|
|
263
|
-
|
|
264
|
-
# Style 3: AK120_DIGITAL (64 LEDs, 2 zones)
|
|
265
|
-
_REMAP_STYLE_3: tuple[int, ...] = (
|
|
266
|
-
# WATT | Zone 3: C D E G B A F
|
|
267
|
-
1, 25, 26, 27, 29, 24, 23, 28,
|
|
268
|
-
# B2 Cpu1 | Zone 2: A F G C D E
|
|
269
|
-
17, 2, 16, 21, 22, 18, 19, 20,
|
|
270
|
-
# Zone 1: B A F G C D E
|
|
271
|
-
10, 9, 14, 15, 11, 12, 13,
|
|
272
|
-
# Zone 4: F A B G E D C
|
|
273
|
-
36, 31, 32, 37, 35, 34, 33,
|
|
274
|
-
# Zone 5: F A B G E D C
|
|
275
|
-
43, 38, 39, 44, 42, 41, 40,
|
|
276
|
-
# Zone 6: F A B G E D C
|
|
277
|
-
50, 45, 46, 51, 49, 48, 47,
|
|
278
|
-
# SSD HSD BFB
|
|
279
|
-
6, 7, 8,
|
|
280
|
-
# Zone 8: C D E G B A F
|
|
281
|
-
61, 62, 63, 65, 60, 59, 64,
|
|
282
|
-
# C7 Gpu1 | Zone 7: D E G B A F
|
|
283
|
-
54, 4, 55, 56, 58, 53, 52, 57,
|
|
284
|
-
# B9 C9
|
|
285
|
-
67, 68,
|
|
286
|
-
)
|
|
287
|
-
|
|
288
|
-
# Style 4: LC1 (31 LEDs, 1 zone) — also base for HR10 (style 13)
|
|
289
|
-
_REMAP_STYLE_4: tuple[int, ...] = (
|
|
290
|
-
# GNo MTNo | Zone 4: C D E G B A | SSD
|
|
291
|
-
2, 1, 33, 34, 35, 37, 32, 31, 6,
|
|
292
|
-
# F4 | Zone 3: C D E G B A F
|
|
293
|
-
36, 25, 26, 27, 29, 24, 23, 28,
|
|
294
|
-
# Zone 2: C D E G B A F
|
|
295
|
-
18, 19, 20, 22, 17, 16, 21,
|
|
296
|
-
# Zone 1: C D E G B A F
|
|
297
|
-
11, 12, 13, 15, 10, 9, 14,
|
|
298
|
-
)
|
|
299
|
-
|
|
300
|
-
# Style → remap table. Styles not listed use identity mapping (no remap).
|
|
301
|
-
LED_REMAP_TABLES: dict[int, tuple[int, ...]] = {
|
|
302
|
-
2: _REMAP_STYLE_2, # PA120_DIGITAL (84 LEDs)
|
|
303
|
-
3: _REMAP_STYLE_3, # AK120_DIGITAL (64 LEDs)
|
|
304
|
-
4: _REMAP_STYLE_4, # LC1 (31 LEDs)
|
|
305
|
-
13: _REMAP_STYLE_4, # HR10 shares LC1 layout
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
def remap_led_colors(
|
|
310
|
-
colors: List[Tuple[int, int, int]],
|
|
311
|
-
style_id: int,
|
|
312
|
-
) -> List[Tuple[int, int, int]]:
|
|
313
|
-
"""Remap LED colors from logical to physical wire order.
|
|
314
|
-
|
|
315
|
-
Each LED device style has a hardware-specific mapping from logical LED
|
|
316
|
-
indices (used by the GUI) to physical wire positions (sent to device).
|
|
317
|
-
Windows applies this remap in FormLED.cs SendHidVal before sending.
|
|
318
|
-
|
|
319
|
-
Args:
|
|
320
|
-
colors: LED colors in logical order (index = logical LED number).
|
|
321
|
-
style_id: Device style ID (from LedDeviceStyle.style_id).
|
|
322
|
-
|
|
323
|
-
Returns:
|
|
324
|
-
Colors reordered for the physical device wire. If no remap table
|
|
325
|
-
exists for this style, returns the input unchanged.
|
|
326
|
-
"""
|
|
327
|
-
table = LED_REMAP_TABLES.get(style_id)
|
|
328
|
-
if table is None:
|
|
329
|
-
return colors
|
|
330
|
-
black = (0, 0, 0)
|
|
331
|
-
return [colors[idx] if idx < len(colors) else black for idx in table]
|
|
81
|
+
# LedDeviceStyle, LED_STYLES, PmEntry, PmRegistry, PRESET_COLORS,
|
|
82
|
+
# LED_REMAP_TABLES, remap_led_colors, LedHandshakeInfo — all imported
|
|
83
|
+
# from core.models (canonical location). Re-exported for backward compat.
|
|
332
84
|
|
|
333
85
|
|
|
334
86
|
# =========================================================================
|
|
@@ -447,26 +199,6 @@ class ColorEngine:
|
|
|
447
199
|
|
|
448
200
|
|
|
449
201
|
|
|
450
|
-
# =========================================================================
|
|
451
|
-
# Handshake response
|
|
452
|
-
# =========================================================================
|
|
453
|
-
|
|
454
|
-
@dataclass
|
|
455
|
-
class LedHandshakeInfo(HandshakeResult):
|
|
456
|
-
"""LED-specific handshake info (extends HandshakeResult).
|
|
457
|
-
|
|
458
|
-
Attributes:
|
|
459
|
-
pm: Product model byte (raw resp[5], Windows data[6]) — identifies device type.
|
|
460
|
-
sub_type: Sub-type byte (raw resp[4], Windows data[5]).
|
|
461
|
-
style: Resolved LedDeviceStyle for this device.
|
|
462
|
-
model_name: Human-readable model name.
|
|
463
|
-
"""
|
|
464
|
-
pm: int = 0
|
|
465
|
-
sub_type: int = 0
|
|
466
|
-
style: Optional[LedDeviceStyle] = None
|
|
467
|
-
model_name: str = ""
|
|
468
|
-
|
|
469
|
-
|
|
470
202
|
# =========================================================================
|
|
471
203
|
# Packet builder (from FormLED.cs SendHidVal)
|
|
472
204
|
# =========================================================================
|
|
@@ -843,7 +575,7 @@ def probe_led_model(vid: int = LED_VID, pid: int = LED_PID,
|
|
|
843
575
|
|
|
844
576
|
transport = None
|
|
845
577
|
try:
|
|
846
|
-
from .
|
|
578
|
+
from .factory import DeviceProtocolFactory
|
|
847
579
|
transport = DeviceProtocolFactory.create_usb_transport(vid, pid)
|
|
848
580
|
transport.open()
|
|
849
581
|
sender = LedHidSender(transport)
|
|
@@ -377,8 +377,8 @@ def run_hr10_daemon(
|
|
|
377
377
|
Returns:
|
|
378
378
|
Exit code (0 = clean shutdown, 1 = error).
|
|
379
379
|
"""
|
|
380
|
-
from .
|
|
381
|
-
from .
|
|
380
|
+
from .factory import DeviceProtocolFactory
|
|
381
|
+
from .led import (
|
|
382
382
|
LED_PID,
|
|
383
383
|
LED_VID,
|
|
384
384
|
ColorEngine,
|