diff --git a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/DerivedSources/Entitlements.plist b/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/DerivedSources/Entitlements.plist deleted file mode 100644 index 6c5bad12..00000000 --- a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/DerivedSources/Entitlements.plist +++ /dev/null @@ -1,10 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> -<dict> - <key>com.apple.security.app-sandbox</key> - <true/> - <key>com.apple.security.get-task-allow</key> - <true/> -</dict> -</plist> diff --git a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.DependencyMetadataFileList b/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.DependencyMetadataFileList deleted file mode 100644 index e69de29b..00000000 diff --git a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.app-Simulated.xcent b/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.app-Simulated.xcent deleted file mode 100644 index 0c67376e..00000000 --- a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.app-Simulated.xcent +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> -<dict/> -</plist> diff --git a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.app-Simulated.xcent.der b/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.app-Simulated.xcent.der deleted file mode 100644 index efff223b..00000000 Binary files a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.app-Simulated.xcent.der and /dev/null differ diff --git a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.app.xcent b/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.app.xcent deleted file mode 100644 index 6c5bad12..00000000 --- a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.app.xcent +++ /dev/null @@ -1,10 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> -<dict> - <key>com.apple.security.app-sandbox</key> - <true/> - <key>com.apple.security.get-task-allow</key> - <true/> -</dict> -</plist> diff --git a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.app.xcent.der b/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.app.xcent.der deleted file mode 100644 index b3bf0fd9..00000000 --- a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/LuckyWorld-Mac-Shipping.app.xcent.der +++ /dev/null @@ -1 +0,0 @@ -pR�M0#com.apple.security.app-sandbox�0&!com.apple.security.get-task-allow� \ No newline at end of file diff --git a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/Script-2E0D0C71EC40476E098C1617.sh b/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/Script-2E0D0C71EC40476E098C1617.sh deleted file mode 100755 index 006c8127..00000000 --- a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/Script-2E0D0C71EC40476E098C1617.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -set -eo pipefail -SRC_EXE="${UE_BINARIES_DIR}/${UE_UBT_BINARY_SUBPATH}" -DEST_EXE="${CONFIGURATION_BUILD_DIR}/${EXECUTABLE_PATH}" -DEST_EXE_DIR=`dirname "${DEST_EXE}"` - -echo Copying executable and any standalone dylibs into ${DEST_EXE_DIR} but do not overwrite unless src is newer -mkdir -p "${DEST_EXE_DIR}" -rsync -au "${SRC_EXE}" "${DEST_EXE}" -ditto "/Users/d/Projects/LuckyWorld/Plugins/LuckyMujoco/Source/ThirdParty/Mujoco/lib/mujoco.dylib" "${DEST_EXE_DIR}/libmujoco.3.2.7.dylib" - -# Skip syncing if desired -if [[ ${UE_SKIP_STAGEDDATA_SYNC} -eq 1 ]]; then exit 0; fi - -# When building engine projects, like UnrealGame, we don't have data to stage unless something has specified UE_OVERRIDE_STAGE_DIR -if [[ -z ${UE_OVERRIDE_STAGE_DIR} ]]; then -STAGED_DIR="${UE_PROJECT_DIR}/Saved/StagedBuilds/${UE_TARGET_PLATFORM_NAME}" -else - STAGED_DIR="${UE_OVERRIDE_STAGE_DIR}" -fi -if [[ -z ${STAGED_DIR} ]]; then exit 0; fi -# Make sure the staged directory exists and has files in it -if [[ ! -e "${STAGED_DIR}" || ! $(ls -A "${STAGED_DIR}") ]]; then - echo ========================================================================================= - echo "WARNING: To run, you must have a valid staged build directory. The Staged location is:" - echo " ${STAGED_DIR}" - echo "Use the editor's Platforms menu, or run a command like::" - echo "./RunUAT.sh BuildCookRun -platform=Mac -project=<project> -build -cook -stage -pak" - echo ========================================================================================= - exit -0 -fi - -echo "Syncing ${STAGED_DIR} to ${CONFIGURATION_BUILD_DIR}/${CONTENTS_FOLDER_PATH}/UE" -if [[ -e "${STAGED_DIR}" ]]; then -rsync -a --delete --exclude="/Info.plist" --exclude="/Manifest_*" --exclude="/*.app" "${STAGED_DIR}/" "${CONFIGURATION_BUILD_DIR}/${CONTENTS_FOLDER_PATH}/UE" -else - echo ========================================================================================= - echo "WARNING: To run, you must have a valid staged sync source directory. The Staged SyncSource location is:" - echo "${STAGED_DIR}" - echo "Use the editor's Platforms menu, or run a command like::" - echo "./RunUAT.sh BuildCookRun -platform=Mac -project=<project> -build -cook -stage -pak" - echo ========================================================================================= - exit -0 -fi diff --git a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/Script-985126F960E44DC6DC338213.sh b/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/Script-985126F960E44DC6DC338213.sh deleted file mode 100755 index 006c8127..00000000 --- a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/Script-985126F960E44DC6DC338213.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -set -eo pipefail -SRC_EXE="${UE_BINARIES_DIR}/${UE_UBT_BINARY_SUBPATH}" -DEST_EXE="${CONFIGURATION_BUILD_DIR}/${EXECUTABLE_PATH}" -DEST_EXE_DIR=`dirname "${DEST_EXE}"` - -echo Copying executable and any standalone dylibs into ${DEST_EXE_DIR} but do not overwrite unless src is newer -mkdir -p "${DEST_EXE_DIR}" -rsync -au "${SRC_EXE}" "${DEST_EXE}" -ditto "/Users/d/Projects/LuckyWorld/Plugins/LuckyMujoco/Source/ThirdParty/Mujoco/lib/mujoco.dylib" "${DEST_EXE_DIR}/libmujoco.3.2.7.dylib" - -# Skip syncing if desired -if [[ ${UE_SKIP_STAGEDDATA_SYNC} -eq 1 ]]; then exit 0; fi - -# When building engine projects, like UnrealGame, we don't have data to stage unless something has specified UE_OVERRIDE_STAGE_DIR -if [[ -z ${UE_OVERRIDE_STAGE_DIR} ]]; then -STAGED_DIR="${UE_PROJECT_DIR}/Saved/StagedBuilds/${UE_TARGET_PLATFORM_NAME}" -else - STAGED_DIR="${UE_OVERRIDE_STAGE_DIR}" -fi -if [[ -z ${STAGED_DIR} ]]; then exit 0; fi -# Make sure the staged directory exists and has files in it -if [[ ! -e "${STAGED_DIR}" || ! $(ls -A "${STAGED_DIR}") ]]; then - echo ========================================================================================= - echo "WARNING: To run, you must have a valid staged build directory. The Staged location is:" - echo " ${STAGED_DIR}" - echo "Use the editor's Platforms menu, or run a command like::" - echo "./RunUAT.sh BuildCookRun -platform=Mac -project=<project> -build -cook -stage -pak" - echo ========================================================================================= - exit -0 -fi - -echo "Syncing ${STAGED_DIR} to ${CONFIGURATION_BUILD_DIR}/${CONTENTS_FOLDER_PATH}/UE" -if [[ -e "${STAGED_DIR}" ]]; then -rsync -a --delete --exclude="/Info.plist" --exclude="/Manifest_*" --exclude="/*.app" "${STAGED_DIR}/" "${CONFIGURATION_BUILD_DIR}/${CONTENTS_FOLDER_PATH}/UE" -else - echo ========================================================================================= - echo "WARNING: To run, you must have a valid staged sync source directory. The Staged SyncSource location is:" - echo "${STAGED_DIR}" - echo "Use the editor's Platforms menu, or run a command like::" - echo "./RunUAT.sh BuildCookRun -platform=Mac -project=<project> -build -cook -stage -pak" - echo ========================================================================================= - exit -0 -fi diff --git a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/assetcatalog_dependencies b/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/assetcatalog_dependencies deleted file mode 100644 index 6d927e1f..00000000 Binary files a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/assetcatalog_dependencies and /dev/null differ diff --git a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/assetcatalog_generated_info.plist b/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/assetcatalog_generated_info.plist deleted file mode 100644 index 74c74607..00000000 --- a/Binaries/LuckyWorld (Mac).build/Mac/LuckyWorld.build/assetcatalog_generated_info.plist +++ /dev/null @@ -1,10 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> -<dict> - <key>CFBundleIconFile</key> - <string>AppIcon</string> - <key>CFBundleIconName</key> - <string>AppIcon</string> -</dict> -</plist> diff --git a/Binaries/Mac/LuckyWorld-Mac-Shipping.target b/Binaries/Mac/LuckyWorld-Mac-Shipping.target deleted file mode 100644 index 8f236051..00000000 --- a/Binaries/Mac/LuckyWorld-Mac-Shipping.target +++ /dev/null @@ -1,3872 +0,0 @@ -{ - "TargetName": "LuckyWorld", - "Platform": "Mac", - "Configuration": "Shipping", - "TargetType": "Game", - "IsTestTarget": false, - "Architecture": "arm64", - "Project": "../../LuckyWorld.uproject", - "Launch": "$(ProjectDir)/Binaries/Mac/LuckyWorld-Mac-Shipping.app/Contents/MacOS/LuckyWorld-Mac-Shipping", - "Version": - { - "MajorVersion": 5, - "MinorVersion": 5, - "PatchVersion": 3, - "Changelist": 39772772, - "CompatibleChangelist": 37670630, - "IsLicenseeVersion": 0, - "IsPromotedBuild": 0, - "BranchName": "++UE5+Release-5.5", - "BuildId": "37670630" - }, - "BuildProducts": [ - { - "Path": "$(ProjectDir)/Binaries/Mac/LuckyWorld-Mac-Shipping", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/LuckyWorld-Mac-Shipping.app/Contents/Info.plist", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/LuckyWorld-Mac-Shipping.app/Contents/MacOS/LuckyWorld-Mac-Shipping", - "Type": "Executable" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/LuckyWorld-Mac-Shipping.app/Contents/PkgInfo", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/LuckyWorld-Mac-Shipping.app/Contents/_CodeSignature/CodeResources", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_atomic-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_chrono-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_filesystem-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_iostreams-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_program_options-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_python311-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_regex-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_system-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_thread-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libmujoco.3.2.7.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/mujoco.dylib", - "Type": "DynamicLibrary" - } - ], - "RuntimeDependencies": [ - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Apple/MetalShaderConverter/Mac/libmetalirconverter.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/EOSSDK/Mac/libEOSSDK-Mac-Shipping.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Intel/TBB/Mac/libtbb.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Intel/TBB/Mac/libtbbmalloc.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Ogg/Mac/libogg.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/OpenColorIO/Mac/libOpenColorIO.2.3.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Vorbis/Mac/libvorbis.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Content/Renderer/TessellationTable.bin", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/DeveloperDirectoryContent.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/EditorGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/ErrorFilter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/ExcludedTestsFilter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Fail.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/GameGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Groups.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/InProcess.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/NoSessionWarning.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/NotEnoughParticipants.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/NotRun.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Participant.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/ParticipantsWarning.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/RefreshTests.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/RefreshWorkers.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/RunTests.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/SmokeTest.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/SmokeTestFilter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/SmokeTestParent.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/StopTests.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Success.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/TrackTestHistory.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/VisualCommandlet.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Warning.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/WarningFilter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Checkerboard.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/BoxShadow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Button.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Button_Disabled.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Button_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Button_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Check.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Checked.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Checked_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Undetermined.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Undetermined_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Checker.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Circle.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorGradingWheel.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorPicker_Mode_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorPicker_Separator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorPicker_SliderHandle.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorSpectrum.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorWheel.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeader.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeaderMenuButton_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeaderMenuButton_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeader_Arrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeader_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ComboArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CursorPing.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DarkGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DebugBorder.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Delimiter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DownArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DropZoneIndicator_Above.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DropZoneIndicator_Below.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DropZoneIndicator_Onto.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/EditableTextSelectionBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/EventMessage_Default.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ExpansionButton_CloseOverlay.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/GroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/GroupBorder_Shape.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/HeaderSplitterGrip.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/LastColumnHeader_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/LeftArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/LightGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/NoiseBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/PlainBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProfileVisualizer_Mono.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProfileVisualizer_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProfileVisualizer_Selected.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProgressBar_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProgressBar_Fill.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProgressBar_Marquee.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/RadioButton_SelectedBack_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/RadioButton_Selected_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/RadioButton_Unselected_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/RoundedSelection_16x.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBorderShadowBottom.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBorderShadowTop.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBoxShadowBottom.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBoxShadowLeft.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBoxShadowRight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBoxShadowTop.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Scrollbar_Background_Horizontal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Scrollbar_Background_Vertical.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Scrollbar_Thumb.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SearchGlass.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Selection.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Selector.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Separator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheck.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Checked.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Checked_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Undetermined.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Undetermined_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SortDownArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SortDownArrows.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SortUpArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SortUpArrows.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SpinArrows.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Fill.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Fill_Dark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Fill_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Fill_Hovered_Dark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SplitterHandleHighlight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SubmenuArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TableViewHeader.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TableViewMajorColumn.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBlockHighlightShape.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBlockHighlightShape_Empty.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBoxLabelBorder.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Dark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Hovered_Dark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_ReadOnly.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Special.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Special_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Throbber_Piece.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TreeArrow_Collapsed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TreeArrow_Collapsed_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TreeArrow_Expanded.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TreeArrow_Expanded_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/UpArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VerticalBoxDragIndicator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VerticalBoxDragIndicatorShort.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_High.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_Low.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_Mid.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_Muted.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_Off.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/WhiteGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Close_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Close_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Close_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Maximize_Disabled.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Maximize_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Maximize_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Maximize_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Minimize_Disabled.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Minimize_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Minimize_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Minimize_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Restore_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Restore_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Restore_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowOutline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowTitle.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowTitle_Flashing.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowTitle_Inactive.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/X.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/CrashTracker/MouseCursor.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/CrashTracker/Record.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTabContentArea.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTabWellSeparator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_Active.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_ColorOverlay.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_ColorOverlayIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_Foreground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_Inactive.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/CloseApp_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/CloseApp_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/CloseApp_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/DockingIndicator_Center.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/OuterDockingIndicator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/ShowTabwellButton_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/ShowTabwellButton_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/ShowTabwellButton_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/TabContentArea.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/TabWellSeparator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Active.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_ColorOverlay.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_ColorOverlayIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Foreground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Inactive.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Shape.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/DroidSans.tps", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/DroidSansFallback.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/DroidSansMono.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Noto.tps", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/NotoNaskhArabicUI-Regular.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/NotoSansThai-Regular.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Black.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-BlackItalic.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Bold.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-BoldCondensed.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-BoldCondensedItalic.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-BoldItalic.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Italic.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Light.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Medium.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Regular.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto.tps", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/BackIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Cross_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/DefaultAppIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Copy_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Cut_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Delete_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Duplicate_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Paste_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Rename_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Empty_14x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/NextIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButton.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonBottom.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonCentre.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonLeft.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonRight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonTop.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_025x_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_025x_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_025x_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_05x_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_05x_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_05x_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_1x_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_1x_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_1x_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_Screen_Rotation_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_Screen_Rotation_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_Screen_Rotation_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PlusSymbol_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/GroupBorder-16Gray.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Average_Event_Graph_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Border_L_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Border_R_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Border_TB_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Cull_Events_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Culled_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Custom_Tooltip_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Data_Capture_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Events_Flat_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Events_Flat_Coalesced_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Events_Hierarchial_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_FPS_Chart_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Filter_Events_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Filter_Presets_Tab_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Filtered_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Graph_View_Tab_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Has_Culled_Children_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_History_Back_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_History_Fwd_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_LoadMultiple_Profiler_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Load_Profiler_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Max_Event_Graph_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Settings_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Tab_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_ThreadView_SampleBorder_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Calls_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CollapseAll_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CollapseSelection_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CollapseThread_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CopyToClipboard_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CulledEvents_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Disconnect_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Event_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ExpandAll_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ExpandHotPath_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ExpandSelection_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ExpandThread_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_GameThread_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_GenericFilter_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_GenericGroup_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_HotPath_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Memory_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Number_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_OpenEventGraph_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_RenderThread_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ResetColumn_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ResetToDefault_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SelectStack_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SetRoot_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ShowGraphData_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SortAscending_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SortBy_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SortDescending_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ViewColumn_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_mem_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_stats_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_sync_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/TrashCan.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/TrashCan_Small.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/cursor_cardinal_cross.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/cursor_grab.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/denied_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/ellipsis_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/eyedropper_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_Downloads_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_error_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_generic_toolbar.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_help_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_info_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_redo_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_tab_Tools_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_tab_WidgetReflector_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_tab_WidgetReflector_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_tab_toolbar_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_undo_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_warning_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/notificationlist_fail.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/notificationlist_success.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/toolbar_expand_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/All_Platforms_128x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/All_Platforms_24x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Commandlet.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Editor.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Game.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Other.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Server.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Unknown.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Advanced.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Back.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Build.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Delete.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Deploy.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_EditSettings.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Launch.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Run.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/MessageLog/Log_Error.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/MessageLog/Log_Note.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/MessageLog/Log_Warning.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Border.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Button.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/DashedBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/HyperlinkDotted.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/HyperlinkUnderline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Menu_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Menu_Background_Inverted_Border_Bold.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Notification_Border_Flash.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/ActionMenuButtonBG.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/ArrowBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/ArrowLeft.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Arrow_D.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Arrow_L.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Arrow_R.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Arrow_U.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/BoxEdgeHighlight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CalloutBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CalloutBox2.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CalloutBox3.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Callout_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Callout_Glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Callout_Outline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CircleBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CircleBox2.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CodeBlock_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CodeBlock_Glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CodeBlock_Outline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DiamondBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DiamondBox_B.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DiamondBox_T.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_L.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_LR.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_LR_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_L_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_R.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_R_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_L.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_LR.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_LR_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_R.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_R_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Hat.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Outer/alertOutline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Outer/alertSolid.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/PrePost_RoundedBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/PrePost_RoundedBox_B.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/PrePost_RoundedBox_T.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/QMark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Roboto-Bold.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedBoxBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedTileFaded.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedTile_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedTile_Glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedTile_Outline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/SolidWhite.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/SquareBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/SquareBox_Solid_L.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/SquigglyBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Tile_Highlight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Underline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/bigdot.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/blank.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_head.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_head_glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_highlight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_shadow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_stick.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/ping.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/selectionbar/selectionbar_0.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/selectionbar/selectionbar_1.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/selectionbar/selectionbar_2.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/smalldot.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/ToolBar_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/ToolTip_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/ToolTip_BrightBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/White.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Advanced.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/AllSavedAssets.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/AutomationTools.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/CPP.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Calendar.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Console.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Copy.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Cut.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Dash_Horizontal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Dash_Vertical.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Delete.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Developer.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/DropTargetBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Duplicate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/EyeDropper.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Favorite.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/FilterAuto.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/FlipHorizontal.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/FlipVertical.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Group_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/HiddenInGame.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Info.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Layout.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Linked.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/LookAt.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Merge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Monitor.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/OutputLog.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/ParentHierarchy.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Paste.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/PlayerController.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Preferences.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/ProjectLauncher.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Recent.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Redo.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Rename.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Role.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Rotate180.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Rotate90Clockwise.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Rotate90Counterclockwise.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Search_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/SessionFrontend.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/SortDown.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/SortUp.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Test.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UELogo.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UELogo.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Undo.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UndoHistory.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Unlinked.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UnsavedAssets.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UnsavedAssetsWarning.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Update.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/VisibleInGame.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Visualizer.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/alert-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/alert-triangle-64.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/alert-triangle-large.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/alert-triangle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/arrow-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/arrow-left.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/arrow-right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/arrow-up.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/badge-modified.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/badge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/blueprint.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/box-perspective.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/bullet-point.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/bullet-point16.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/caret-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/caret-right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/check-circle-large.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/check-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/check.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/checker.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/chevron-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/chevron-left.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/chevron-right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/chevron-up.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/circle-arrow-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/circle-arrow-left.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/circle-arrow-right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/circle-arrow-up.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/close-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/close-small.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/close.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/color-grading-cross.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/color-grading-selector.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/color-grading-spinbox-selector.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/curve-editor-append-key-20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/cylinder.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/delete-outline.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/drag-handle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/edit.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/ellipsis-horizontal-narrow.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/ellipsis-vertical-narrow.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/export.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/export_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/favorites-category.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/fieldnotify_off.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/fieldnotify_on.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/file-tree-open.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/file-tree.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/file.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/filled-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/filter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-cleanup.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-closed.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-open.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-plus.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-virtual-closed.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-virtual-open.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/help.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/hidden.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/import.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/import_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/layout-header-body.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/layout-spreadsheet.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/lock-unlocked.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/lock.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/menu.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/minus-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/minus.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/normalize.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/play.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/plus-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/plus.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/pyriamid.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/refresh.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/reject.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/save-modified.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/save.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/search.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/server.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/settings.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/sphere.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/stop.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/tile.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/unreal-circle-thick.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/unreal-circle-thin.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/unreal-small.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/visible.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/world.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/x-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/CheckBoxIndeterminate_12.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/CheckBoxIndeterminate_14.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/check.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/indeterminate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/radio-off.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/radio-on.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/ComboBox/corner-dropdown.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/ComboBox/wide-chevron-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/FilterBar/FilterColorSegment.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/NumericEntryBox/NarrowDecorator.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/ProgressBar/ProgressMarquee.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/SegmentedBox/left.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/SegmentedBox/left.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/SegmentedBox/right.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/SegmentedBox/right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/TableView/sort-down-arrow.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/TableView/sort-down-arrows.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/TableView/sort-up-arrow.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/TableView/sort-up-arrows.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/Window/close.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/Window/maximize.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/Window/minimize.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/Window/restore.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/DockTab_Active.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/DockTab_Foreground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/DockTab_Hover.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/Dock_Tab_Active.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/drawer-shadow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/pin.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/show-tab-well.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/AllTracks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/AutoScrollDown_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/AutoScrollRight_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Callees.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Callees_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Callers.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Callers_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Connection.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ControlsFirst.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ControlsLast.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ControlsNext.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ControlsPrevious.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Counter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Counter_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/CpuGpuTracks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Filter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/FilterConfig.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Frames.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Frames_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Function.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/HotPath_12.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/InfoTag_12.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Log.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Log_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemAllocTable.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemInvestigation.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemInvestigation_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemTags.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemTags_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Memory.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/NetStats.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/NetStats_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Networking.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/PacketContent.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/PacketContent_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Packets.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Packets_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/PluginTracks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Session.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeLarge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeLarge_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeMedium.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeMedium_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeSmall.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeSmall_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SpecialTracks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Tasks.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Tasks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Timer.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Timer_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Timing.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Timing_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceStore.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceStore_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/RecordTraceCenter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/RecordTraceOutline.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/RecordTraceRecording.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TracePause.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TraceResume.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TraceSnapshot.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TraceStart.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TraceStop.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/UTrace.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/UnrealInsights.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ViewMode_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ZeroCountFilter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Launcher/PaperAirplane.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Notifications/Throbber.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Added.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_BranchModifiedBadge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckCircleLine.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckIn.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckInAvailable.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckInAvailableRewound.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckedBranch.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckedBranchBadge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckedOther.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckedOtherBadge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_ConflictResolution_Clear.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_ConflictResolution_OpenExternal.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Conflicted.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_ConflictedState.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Diff.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_DiskSize.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_File.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_LineCircle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_MarkedForAdd.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Modified.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_ModifiedLocally.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_NewerVersion.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Promote.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Promote_Large.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Removed.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Rewind.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Rewound.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_StatusLocalUpToDate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_StatusLocalUpload.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_StatusRemoteDownload.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_StatusRemoteUpToDate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Sync.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_SyncAndCheckOut.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_VerticalLine.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_VerticalLineDashed.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_VerticalLineStart.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Action_Diff.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Action_Integrate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Branched.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Changelist.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_CheckedOut.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_ContentAdd.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_DlgCheckedOutOther.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_DlgNotCurrent.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_DlgReadOnly.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Lock.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_MarkedForDelete.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_ModifiedOtherBranch.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_NotInDepot.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SourceControl.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/Status/RevisionControl.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/Status/RevisionControlBadgeConnected.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/Status/RevisionControlBadgeWarning.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/icon_SCC_Change_Source_Control_Settings.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/icon_SCC_History.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/icon_SCC_Revert.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/StatusBar/drawer-shadow-bottom.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/BrushWireframe.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/DefaultPawn_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/FlatColorSquare.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/Hyperlink.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/Lit.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/NewLevelBlank.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/TestRotation.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/Unlit.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/Wireframe.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Tutorials/TutorialBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Tutorials/TutorialShadow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/SlateDebug/Fonts/LastResort.tps", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Content/SlateDebug/Fonts/LastResort.ttf", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Paper2D.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/AI/AISupport/AISupport.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/AI/EnvironmentQueryEditor/EnvironmentQueryEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ACLPlugin/ACLPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationData/AnimationData.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/ControlRig.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRigModules/ControlRigModules.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRigSpline/ControlRigSpline.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/DeformerGraph.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/IKRig.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/LiveLink.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/RigLogic.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Bridge/Bridge.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/CameraShakePreviewer/CameraShakePreviewer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/EngineCameras/EngineCameras.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/GameplayCameras.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosCloth/ChaosCloth.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosVD/ChaosVD.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Compositing/OpenColorIO/OpenColorIO.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Compression/OodleNetwork/OodleNetwork.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/AnimationSharing/AnimationSharing.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/ConcertMain.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/ConcertSyncClient.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/ConcertSyncCore.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PluginUtils/PluginUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/UObjectPlugin/UObjectPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/AssetManagerEditor/AssetManagerEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/BlueprintHeaderView/BlueprintHeaderView.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ColorGrading/ColorGrading.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserAssetDataSource/ContentBrowserAssetDataSource.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/DataValidation/DataValidation.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorScriptingUtilities/EditorScriptingUtilities.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/FacialAnimation/FacialAnimation.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/GeometryMode.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/LightMixer/LightMixer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/ObjectMixer/ObjectMixer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ProxyLODPlugin/ProxyLODPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SequencerAnimTools/SequencerAnimTools.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SpeedTreeImporter/SpeedTreeImporter.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UMGWidgetPreview/UMGWidgetPreview.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/UVEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/EnhancedInput.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/DatasmithContent/DatasmithContent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/GLTFExporter/GLTFExporter.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManager/VariantManager.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManagerContent/VariantManagerContent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Animation/SkeletalMeshModelingTools/SkeletalMeshModelingTools.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AutomationUtils/AutomationUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/BackChannel/BackChannel.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosCaching/ChaosCaching.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosEditor/ChaosEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosNiagara/ChaosNiagara.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosSolverPlugin/ChaosSolverPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosUserDataPT/ChaosUserDataPT.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosVehiclesPlugin/ChaosVehiclesPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterAI/CharacterAI.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CineCameraSceneCapture/CineCameraSceneCapture.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Compositing/HoldoutComposite/HoldoutComposite.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Dataflow.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorDataStorage/EditorDataStorage.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Fracture/Fracture.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/FullBodyIK/FullBodyIK.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/GeometryCollectionPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/LocalizableMessage/LocalizableMessage.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/MeshModelingToolsetExp.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MetaHuman/MetaHumanSDK/MetaHumanSDK.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlanarCutPlugin/PlanarCut.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/PlatformCrypto.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PythonScriptPlugin/PythonScriptPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/StudioTelemetry.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ToolPresets/ToolPresets.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Niagara.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/FX/NiagaraSimCaching/NiagaraSimCaching.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Fab/Fab.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Importers/AlembicImporter/AlembicImporter.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Assets/InterchangeAssets.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/InterchangeEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Interchange.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/AvfMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/ImgMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaCompositing/MediaCompositing.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlate/MediaPlate.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/WebMMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/WmfMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MeshPainting/MeshPainting.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/TcpMessaging/TcpMessaging.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/UdpMessaging/UdpMessaging.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/ActorSequence/ActorSequence.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/LevelSequenceEditor/LevelSequenceEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/SequencerScripting/SequencerScripting.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/TemplateSequence/TemplateSequence.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNEDenoiser/NNEDenoiser.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/Binaries/ThirdParty/Onnxruntime/Mac/libonnxruntime.1.17.1.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/Binaries/ThirdParty/Onnxruntime/Mac/libonnxruntime.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/NNERuntimeORT.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/EOSShared/EOSShared.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineBase/OnlineBase.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/OnlineServices.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystem/OnlineSubsystem.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemNull/OnlineSubsystemNull.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemUtils/OnlineSubsystemUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Portal/LauncherChunkInstaller/LauncherChunkInstaller.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ActorLayerUtilities/ActorLayerUtilities.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidFileServer/AndroidFileServer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidPermission/AndroidPermission.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleImageUtils/AppleImageUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleMoviePlayer/AppleMoviePlayer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ArchVisCharacter/ArchVisCharacter.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AssetTags/AssetTags.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioCapture/AudioCapture.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/AudioSynesthesia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioWidgets/AudioWidgets.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CableComponent/CableComponent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ChunkDownloader/ChunkDownloader.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ComputeFramework/ComputeFramework.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CustomMeshComponent/CustomMeshComponent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Database/SQLiteCore/SQLiteCore.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ExampleDeviceProfileSelector/ExampleDeviceProfileSelector.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/GeometryCache.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/GeometryProcessing.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GooglePAD/GooglePAD.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HDRIBackdrop/HDRIBackdrop.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/HairStrands.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/LocationServicesBPLibrary/LocationServicesBPLibrary.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/MeshModelingToolset.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Metasound.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MobilePatchingUtils/MobilePatchingUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MsQuic/MsQuic.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ProceduralMeshComponent/ProceduralMeshComponent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/PropertyAccess/PropertyAccessEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ResonanceAudio/ResonanceAudio.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/RigVM.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SignificanceManager/SignificanceManager.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SoundFields/SoundFields.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/StateTree.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Synthesis/Synthesis.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/USDCore.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WaveTable/WaveTable.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WebMMoviePlayer/WebMMoviePlayer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Tests/InterchangeTests/InterchangeTests.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/TraceUtilities/TraceUtilities.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Takes.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/WorldMetrics.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_atomic-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_chrono-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_filesystem-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_iostreams-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_program_options-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_python311-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_regex-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_system-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libboost_thread-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/libmujoco.3.2.7.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/mujoco.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(ProjectDir)/LuckyWorld.uproject", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/AsyncLoac1ceae7b44acV11/AsyncLoadingScreen.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/BlueprintJson/BlueprintJson.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/FileHelperPlugin/FileHelper.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/LuckyMujoco.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyTextWrite/LuckyTextWrite.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/SocketIOClient.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/VaRestPlugin/VaRest.uplugin", - "Type": "UFS" - } - ], - "BuildPlugins": [ - "ACLPlugin", - "AISupport", - "ActorLayerUtilities", - "ActorSequence", - "AdvancedRenamer", - "AlembicImporter", - "AndroidDeviceProfileSelector", - "AndroidFileServer", - "AndroidMedia", - "AndroidMoviePlayer", - "AndroidPermission", - "AnimationData", - "AnimationModifierLibrary", - "AnimationSharing", - "AppleImageUtils", - "AppleMoviePlayer", - "ArchVisCharacter", - "AssetManagerEditor", - "AssetTags", - "AsyncLoadingScreen", - "AudioCapture", - "AudioSynesthesia", - "AudioWidgets", - "AutomationUtils", - "AvfMedia", - "BackChannel", - "BlendSpaceMotionAnalysis", - "BlueprintHeaderView", - "BlueprintJson", - "Bridge", - "CLionSourceCodeAccess", - "CableComponent", - "CameraShakePreviewer", - "ChangelistReview", - "ChaosCaching", - "ChaosCloth", - "ChaosEditor", - "ChaosNiagara", - "ChaosSolverPlugin", - "ChaosUserDataPT", - "ChaosVD", - "ChaosVehiclesPlugin", - "CharacterAI", - "ChunkDownloader", - "CineCameraSceneCapture", - "CmdLinkServer", - "CodeLiteSourceCodeAccess", - "ColorGrading", - "ComputeFramework", - "ConcertMain", - "ConcertSyncClient", - "ConcertSyncCore", - "ContentBrowserAssetDataSource", - "ContentBrowserClassDataSource", - "ControlRig", - "ControlRigModules", - "ControlRigSpline", - "CryptoKeys", - "CurveEditorTools", - "CustomMeshComponent", - "DataValidation", - "Dataflow", - "DatasmithContent", - "DeformerGraph", - "DumpGPUServices", - "EOSShared", - "EditorDataStorage", - "EditorDebugTools", - "EditorPerformance", - "EditorScriptingUtilities", - "EditorTelemetry", - "EngineAssetDefinitions", - "EngineCameras", - "EnhancedInput", - "EnvironmentQueryEditor", - "ExampleDeviceProfileSelector", - "Fab", - "FacialAnimation", - "FastBuildController", - "FileHelper", - "Fracture", - "FullBodyIK", - "GLTFExporter", - "GameplayCameras", - "GameplayTagsEditor", - "GeometryCache", - "GeometryCollectionPlugin", - "GeometryMode", - "GeometryProcessing", - "GitSourceControl", - "GoogleCloudMessaging", - "GooglePAD", - "HDRIBackdrop", - "HairStrands", - "HoldoutComposite", - "IKRig", - "IOSDeviceProfileSelector", - "ImgMedia", - "InputDebugging", - "Interchange", - "InterchangeAssets", - "InterchangeEditor", - "InterchangeTests", - "KDevelopSourceCodeAccess", - "LauncherChunkInstaller", - "LevelSequenceEditor", - "LightMixer", - "LinuxDeviceProfileSelector", - "LiveLink", - "LocalizableMessage", - "LocationServicesBPLibrary", - "LuckyMujoco", - "LuckyTextWrite", - "MacGraphicsSwitching", - "MaterialAnalyzer", - "MediaCompositing", - "MediaPlate", - "MediaPlayerEditor", - "MeshModelingToolset", - "MeshModelingToolsetExp", - "MeshPainting", - "MetaHumanSDK", - "Metasound", - "MobileLauncherProfileWizard", - "MobilePatchingUtils", - "MsQuic", - "N10XSourceCodeAccess", - "NNEDenoiser", - "NNERuntimeORT", - "Niagara", - "NiagaraSimCaching", - "NullSourceCodeAccess", - "ObjectMixer", - "OnlineBase", - "OnlineServices", - "OnlineSubsystem", - "OnlineSubsystemNull", - "OnlineSubsystemUtils", - "OodleNetwork", - "OpenColorIO", - "Paper2D", - "PerforceSourceControl", - "PlanarCut", - "PlasticSourceControl", - "PlatformCrypto", - "PluginBrowser", - "PluginUtils", - "PortableObjectFileDataSource", - "ProceduralMeshComponent", - "PropertyAccessEditor", - "PropertyAccessNode", - "ProxyLODPlugin", - "PythonScriptPlugin", - "RenderDocPlugin", - "RenderGraphInsights", - "ResonanceAudio", - "RiderSourceCodeAccess", - "RigLogic", - "RigVM", - "SQLiteCore", - "SequencerAnimTools", - "SequencerScripting", - "SignificanceManager", - "SkeletalMeshModelingTools", - "SkeletalReduction", - "SocketIOClient", - "SoundFields", - "SpeedTreeImporter", - "StateTree", - "StudioTelemetry", - "SubversionSourceControl", - "Synthesis", - "Takes", - "TcpMessaging", - "TemplateSequence", - "TextureFormatOodle", - "ToolPresets", - "TraceUtilities", - "UMGWidgetPreview", - "UObjectPlugin", - "USDCore", - "UVEditor", - "UdpMessaging", - "VaRest", - "VariantManager", - "VariantManagerContent", - "VisualStudioCodeSourceCodeAccess", - "VisualStudioSourceCodeAccess", - "WaveTable", - "WebMMedia", - "WebMMoviePlayer", - "WindowsDeviceProfileSelector", - "WindowsMoviePlayer", - "WmfMedia", - "WorldMetrics", - "WorldPartitionHLODUtilities", - "XCodeSourceCodeAccess", - "XGEController" - ], - "AdditionalProperties": [ - { - "Name": "SDK", - "Value": "Not Applicable" - } - ] -} \ No newline at end of file diff --git a/Binaries/Mac/LuckyWorldEditor.target b/Binaries/Mac/LuckyWorldEditor.target deleted file mode 100644 index 6f60fd6a..00000000 --- a/Binaries/Mac/LuckyWorldEditor.target +++ /dev/null @@ -1,24913 +0,0 @@ -{ - "TargetName": "LuckyWorldEditor", - "Platform": "Mac", - "Configuration": "Development", - "TargetType": "Editor", - "IsTestTarget": false, - "Architecture": "arm64", - "Project": "../../LuckyWorld.uproject", - "Launch": "$(EngineDir)/Binaries/Mac/UnrealEditor.app/Contents/MacOS/UnrealEditor", - "LaunchCmd": "$(EngineDir)/Binaries/Mac/UnrealEditor-Cmd", - "Version": - { - "MajorVersion": 5, - "MinorVersion": 5, - "PatchVersion": 3, - "Changelist": 39772772, - "CompatibleChangelist": 37670630, - "IsLicenseeVersion": 0, - "IsPromotedBuild": 0, - "BranchName": "++UE5+Release-5.5", - "BuildId": "37670630" - }, - "BuildProducts": [ - { - "Path": "$(EngineDir)/Binaries/Mac/AgentInterface.dll", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/AgentInterface.pdb", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/Android/UnrealEditor-AndroidDeviceDetection.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/Android/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AIGraph.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AIModule.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AITestSuite.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AVIWriter.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ActionableMessage.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ActorPickerMode.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AddContentDialog.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AdpcmAudioDecoder.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AdvancedPreviewScene.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AdvancedWidgets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Advertising.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Analytics.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnalyticsET.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnimGraph.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnimGraphRuntime.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnimationBlueprintEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnimationBlueprintLibrary.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnimationCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnimationDataController.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnimationEditMode.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnimationEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnimationEditorWidgets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnimationModifiers.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnimationSettings.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AnimationWidgets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AppFramework.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ApplicationCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AssetDefinition.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AssetRegistry.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AssetTagsEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AssetTools.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioAnalyzer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioCaptureCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioCaptureRtAudio.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioExtensions.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioFormatADPCM.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioFormatBink.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioFormatOgg.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioFormatOpus.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioFormatRad.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioLinkCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioLinkEngine.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioMixer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioMixerCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioMixerCoreAudio.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioMixerPlatformAudioLink.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioPlatformConfiguration.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AudioSettingsEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AutomationController.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AutomationDriver.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AutomationMessages.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AutomationTest.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AutomationWindow.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-AutomationWorker.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-BSPUtils.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-BehaviorTreeEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-BinkAudioDecoder.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-BlueprintEditorLibrary.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-BlueprintGraph.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-BlueprintRuntime.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Blutility.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-BuildPatchServices.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-BuildSettings.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CEF3Utils.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CSVtoSVG.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Cascade.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Cbor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Chaos.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ChaosCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ChaosSolverEngine.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ChaosVDData.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ChaosVDRuntime.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ChaosVehiclesCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ChaosVehiclesEngine.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CinematicCamera.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ClassViewer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ClothPainter.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ClothingSystemEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ClothingSystemEditorInterface.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ClothingSystemRuntimeCommon.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ClothingSystemRuntimeInterface.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ClothingSystemRuntimeNv.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Cmd", - "Type": "Executable" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CollectionManager.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CollisionAnalyzer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CommonMenuExtensions.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ComponentVisualizers.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ConfigEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Constraints.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ContentBrowser.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ContentBrowserData.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CookMetadata.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CookOnTheFly.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CookOnTheFlyNetServer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Core.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CoreOnline.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CorePreciseFP.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CoreUObject.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CurveAssetEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CurveEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-CurveTableEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DataLayerEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DataTableEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DataflowCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DataflowEngine.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DataflowSimulation.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DerivedDataCache.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DerivedDataEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DesktopPlatform.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DesktopWidgets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DetailCustomizations.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DeveloperSettings.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DeveloperToolSettings.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DeviceManager.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DeviceProfileEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DeviceProfileServices.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DirectoryWatcher.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DistCurveEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Documentation.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-DrawPrimitiveDebugger.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EditorAnalyticsSession.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EditorConfig.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EditorFramework.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EditorInteractiveToolsFramework.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EditorSettingsViewer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EditorStyle.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EditorSubsystem.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EditorWidgets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Engine.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EngineMessages.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EngineSettings.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EnvironmentLightingViewer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EventLoop.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ExternalImagePicker.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-EyeTracker.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-FieldNotification.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-FieldSystemEngine.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-FileUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Foliage.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-FoliageEdit.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-FontEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-FunctionalTesting.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-GameProjectGeneration.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-GameplayDebugger.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-GameplayDebuggerEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-GameplayTags.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-GameplayTasks.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-GameplayTasksEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-GeometryCollectionEngine.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-GeometryCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-GeometryFramework.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-GeometryProcessingInterfaces.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-GraphColor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-GraphEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-HTTP.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-HTTPServer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-HardwareTargeting.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-HeadMountedDisplay.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-HierarchicalLODOutliner.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-HierarchicalLODUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Horde.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-HotReload.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-HttpNetworkReplayStreaming.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-IESFile.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Icmp.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ImageCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ImageWrapper.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ImageWriteQueue.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-InputBindingEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-InputCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-InstallBundleManager.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-InteractiveToolsFramework.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-InterchangeCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-InterchangeEngine.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-InternationalizationSettings.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-IoStoreUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-IrisCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Json.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-JsonObjectGraph.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-JsonUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Kismet.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-KismetCompiler.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-KismetWidgets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Landscape.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LandscapeEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LandscapeEditorUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LauncherPlatform.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LauncherServices.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Layers.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LevelEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LevelInstanceEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LevelSequence.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LiveLinkAnimationCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LiveLinkInterface.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LiveLinkMessageBusFramework.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LocalFileNetworkReplayStreaming.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Localization.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LocalizationCommandletExecution.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LocalizationDashboard.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LocalizationService.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-LogVisualizer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MRMesh.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MacPlatformEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MacTargetPlatform.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MacTargetPlatformControls.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MacTargetPlatformSettings.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MainFrame.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MassEntity.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MassEntityDebugger.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MassEntityEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MassEntityTestSuite.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MaterialBaking.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MaterialEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MaterialShaderQualitySettings.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MaterialUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MathCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Media.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MediaAssets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MediaUtils.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Merge.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MergeActors.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MeshBoneReduction.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MeshBuilder.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MeshBuilderCommon.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MeshConversion.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MeshConversionEngineTypes.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MeshDescription.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MeshMergeUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MeshPaint.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MeshReductionInterface.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MeshUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MeshUtilitiesCommon.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MeshUtilitiesEngine.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MessageLog.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Messaging.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MessagingCommon.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MessagingRpc.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MetalRHI.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MetalShaderFormat.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MoviePlayer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MoviePlayerProxy.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MovieScene.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MovieSceneCapture.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MovieSceneCaptureDialog.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MovieSceneTools.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-MovieSceneTracks.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NNE.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NNEEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NaniteBuilder.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NaniteUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NavigationSystem.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Navmesh.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NetCommon.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NetCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NetworkFile.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NetworkFileSystem.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NetworkReplayStreaming.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Networking.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NewLevelDialog.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NonRealtimeAudioRenderer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NullDrv.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-NullNetworkReplayStreaming.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-OpenColorIOWrapper.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-OpusAudioDecoder.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-OutputLog.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Overlay.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-OverlayEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PIEPreviewDeviceProfileSelector.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PIEPreviewDeviceSpecification.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PListEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PackagesDialog.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PacketHandler.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PakFile.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PakFileUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PerfCounters.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Persona.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PhysicsAssetEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PhysicsCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PhysicsUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PinnedCommandList.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PixelInspectorModule.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PlacementMode.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PortalMessages.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PortalProxies.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PortalRpc.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PortalServices.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PreLoadScreen.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ProfileVisualizer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ProjectLauncher.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ProjectSettingsViewer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ProjectTargetPlatformEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Projects.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PropertyEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-PropertyPath.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-QuadricMeshReduction.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-RHI.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-RHICore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-RSA.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-RadAudioDecoder.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-RawMesh.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-RealtimeProfiler.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ReliabilityHandlerComponent.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-RenderCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-RenderResourceViewer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Renderer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-RewindDebuggerInterface.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SSL.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SandboxFile.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SceneDepthPickerMode.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SceneOutliner.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ScreenShotComparison.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ScreenShotComparisonTools.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ScriptDisassembler.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ScriptableEditorWidgets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SequenceRecorder.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Sequencer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SequencerCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SequencerWidgets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Serialization.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SerializedRecorderInterface.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SessionFrontend.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SessionMessages.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SessionServices.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Settings.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SettingsEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ShaderCompilerCommon.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ShaderFormatOpenGL.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ShaderFormatVectorVM.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ShaderPreprocessor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SharedSettingsWidgets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SignalProcessing.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SkeletalMeshDescription.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SkeletalMeshEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SkeletalMeshUtilitiesCommon.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SkeletonEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Slate.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SlateCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SlateNullRenderer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SlateRHIRenderer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SlateReflector.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Sockets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SoundFieldRendering.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SourceCodeAccess.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SourceControl.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SourceControlWindowExtender.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SourceControlWindows.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SparseVolumeTexture.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-StaticMeshDescription.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-StaticMeshEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-StatsViewer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-StatusBar.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-StorageServerClient.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-StorageServerClientDebug.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-StreamingFile.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-StreamingPauseRendering.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-StringTableEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-StructUtilsEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-StructUtilsTestSuite.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-StructViewer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SubobjectDataInterface.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SubobjectEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SwarmInterface.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-SynthBenchmark.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TargetDeviceServices.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TargetPlatform.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TelemetryUtils.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TextureBuild.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TextureBuildUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TextureCompressor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TextureEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TextureFormat.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TextureFormatDXT.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TextureFormatUncompressed.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TextureUtilitiesCommon.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TimeManagement.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ToolMenus.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ToolMenusEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ToolWidgets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TraceAnalysis.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TraceInsights.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TraceInsightsCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TraceInsightsFrontend.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TraceLog.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TraceServices.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TraceTools.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TranslationEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TreeMap.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TurnkeyIO.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TurnkeySupport.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TypedElementFramework.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-TypedElementRuntime.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-UATHelper.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-UMG.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-UMGEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-UncontrolledChangelists.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-UndoHistory.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-UndoHistoryEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-UniversalObjectLocator.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-UniversalObjectLocatorEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-UnrealEd.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-UnrealEdMessages.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-UnsavedAssetsTracker.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-VREditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-VectorVM.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ViewportInteraction.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-ViewportSnapping.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-VirtualFileCache.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-VirtualTexturingEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Virtualization.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-VirtualizationEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-VisualGraphUtils.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Voice.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-VorbisAudioDecoder.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Voronoi.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-VulkanShaderFormat.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-WebBrowser.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-WidgetCarousel.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-WidgetRegistration.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-WorkspaceMenuStructure.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-WorldBrowser.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-WorldPartitionEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-XmlParser.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor-Zen.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor.app/Contents/Info.plist", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor.app/Contents/MacOS/UnrealEditor", - "Type": "Executable" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor.app/Contents/PkgInfo", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor.app/Contents/_CodeSignature/CodeResources", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/UnrealEditor.version", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libNNEEditorOnnxTools.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_atomic-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_chrono-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_filesystem-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_iostreams-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_program_options-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_python311-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_regex-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_system-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_thread-mt-a64.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.10.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.11.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.12.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.5.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.6.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.7.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.8.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.9.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/ar/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/glf/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/glf/resources/shaders/pcfShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/glf/resources/shaders/simpleLighting.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hd/resources/codegenTemplates/schemaClass.cpp", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hd/resources/codegenTemplates/schemaClass.h", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hd/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdGp/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/basisCurves.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/compute.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/domeLight.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/edgeId.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/fallbackLighting.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/fallbackLightingShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/fallbackMaterialNetwork.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/fallbackVolume.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/frustumCull.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/imageShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/instancing.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/invalidMaterialNetwork.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/mesh.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/meshFaceCull.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/meshNormal.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/meshWire.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/pointId.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/points.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/ptexTexture.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/renderPass.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/renderPassShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/simpleLightingShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/surfaceHelpers.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/terminals.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/visibility.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/volume.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/textures/fallbackBlackDomeLight.png", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdStorm/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/boundingBox.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/colorChannel.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/colorCorrection.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/fullscreen.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/oitResolveImageShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/outline.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPass.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassColorAndSelectionShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassColorShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassColorWithOccludedSelectionShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassIdShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassOitOpaqueShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassOitShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassOitVolumeShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassPickingShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassShadowShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/selection.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/skydome.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/visualize.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/textures/StinsonBeach.hdr", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/textures/StinsonBeach.tex", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hgiGL/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hgiMetal/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hio/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/ndr/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/sdf/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/sdrGlslfx/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/unreal/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/unreal/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/unreal/resources/unreal/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/api.h", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/schemaClass.cpp", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/schemaClass.h", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/tokens.cpp", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/tokens.h", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/wrapSchemaClass.cpp", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/wrapTokens.cpp", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/usd/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdAbc/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdGeom/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdGeom/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdGeom/resources/usdGeom/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdHydra/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdHydra/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdHydra/resources/shaders/empty.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdHydra/resources/shaders/shaderDefs.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdHydra/resources/usdHydra/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdImaging/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdImagingGL/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdLux/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdLux/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdLux/resources/usdLux/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdMedia/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdMedia/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdMedia/resources/usdMedia/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdMtlx/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdPhysics/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdPhysics/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdPhysics/resources/usdPhysics/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdProc/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdProc/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdProc/resources/usdProc/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdProcImaging/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRender/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRender/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRender/resources/usdRender/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRi/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRi/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRi/resources/usdRi/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRiPxrImaging/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShade/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShade/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShade/resources/usdShade/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShaders/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShaders/resources/shaders/previewSurface.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShaders/resources/shaders/primvarReader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShaders/resources/shaders/shaderDefs.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShaders/resources/shaders/transform2d.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShaders/resources/shaders/uvTexture.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdSkel/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdSkel/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdSkel/resources/usdSkel/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdSkelImaging/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdSkelImaging/resources/shaders/skinning.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdUI/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdUI/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdUI/resources/usdUI/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdVol/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdVol/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdVol/resources/usdVol/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdVolImaging/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Mac/UnrealEditor-Paper2D.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Mac/UnrealEditor-Paper2DEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Mac/UnrealEditor-PaperSpriteSheetImporter.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Mac/UnrealEditor-PaperTiledImporter.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Mac/UnrealEditor-SmartSnapping.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/AI/AISupport/Binaries/Mac/UnrealEditor-AISupportModule.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/AI/AISupport/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/AI/EnvironmentQueryEditor/Binaries/Mac/UnrealEditor-EnvironmentQueryEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/AI/EnvironmentQueryEditor/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ACLPlugin/Binaries/Mac/UnrealEditor-ACLPlugin.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ACLPlugin/Binaries/Mac/UnrealEditor-ACLPluginEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ACLPlugin/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationData/Binaries/Mac/UnrealEditor-AnimationData.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationData/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationModifierLibrary/Binaries/Mac/UnrealEditor-AnimationModifierLibrary.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationModifierLibrary/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/BlendSpaceMotionAnalysis/Binaries/Mac/UnrealEditor-BlendSpaceMotionAnalysis.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/BlendSpaceMotionAnalysis/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/Binaries/Mac/UnrealEditor-ControlRig.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/Binaries/Mac/UnrealEditor-ControlRigDeveloper.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/Binaries/Mac/UnrealEditor-ControlRigEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRigSpline/Binaries/Mac/UnrealEditor-ControlRigSpline.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRigSpline/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Mac/UnrealEditor-OptimusCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Mac/UnrealEditor-OptimusDeveloper.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Mac/UnrealEditor-OptimusEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Mac/UnrealEditor-OptimusSettings.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/Binaries/Mac/UnrealEditor-IKRig.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/Binaries/Mac/UnrealEditor-IKRigDeveloper.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/Binaries/Mac/UnrealEditor-IKRigEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Mac/UnrealEditor-LiveLink.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Mac/UnrealEditor-LiveLinkComponents.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Mac/UnrealEditor-LiveLinkEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Mac/UnrealEditor-LiveLinkGraphNode.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Mac/UnrealEditor-LiveLinkMovieScene.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Mac/UnrealEditor-LiveLinkMultiUser.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Mac/UnrealEditor-LiveLinkSequencer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Mac/UnrealEditor-RigLogicDeveloper.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Mac/UnrealEditor-RigLogicEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Mac/UnrealEditor-RigLogicLib.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Mac/UnrealEditor-RigLogicModule.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Bridge/Binaries/Mac/UnrealEditor-Bridge.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Bridge/Binaries/Mac/UnrealEditor-MegascansPlugin.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Bridge/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/CameraShakePreviewer/Binaries/Mac/UnrealEditor-CameraShakePreviewer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/CameraShakePreviewer/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/EngineCameras/Binaries/Mac/UnrealEditor-EngineCameras.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/EngineCameras/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/Binaries/Mac/UnrealEditor-GameplayCameras.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/Binaries/Mac/UnrealEditor-GameplayCamerasEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/Binaries/Mac/UnrealEditor-GameplayCamerasUncookedOnly.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosCloth/Binaries/Mac/UnrealEditor-ChaosCloth.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosCloth/Binaries/Mac/UnrealEditor-ChaosClothEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosCloth/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosVD/Binaries/Mac/UnrealEditor-ChaosVD.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosVD/Binaries/Mac/UnrealEditor-ChaosVDBlueprint.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosVD/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Compositing/OpenColorIO/Binaries/Mac/UnrealEditor-OpenColorIO.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Compositing/OpenColorIO/Binaries/Mac/UnrealEditor-OpenColorIOEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Compositing/OpenColorIO/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Compression/OodleNetwork/Binaries/Mac/UnrealEditor-OodleNetworkHandlerComponent.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Compression/OodleNetwork/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/AnimationSharing/Binaries/Mac/UnrealEditor-AnimationSharing.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/AnimationSharing/Binaries/Mac/UnrealEditor-AnimationSharingEd.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/AnimationSharing/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/CLionSourceCodeAccess/Binaries/Mac/UnrealEditor-CLionSourceCodeAccess.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/CLionSourceCodeAccess/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Mac/UnrealEditor-Concert.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Mac/UnrealEditor-ConcertClient.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Mac/UnrealEditor-ConcertServer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Mac/UnrealEditor-ConcertTransport.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Binaries/Mac/UnrealEditor-ConcertSyncClient.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Binaries/Mac/UnrealEditor-ConcertSyncCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/DumpGPUServices/Binaries/Mac/UnrealEditor-DumpGPUServices.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/DumpGPUServices/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/GitSourceControl/Binaries/Mac/UnrealEditor-GitSourceControl.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/GitSourceControl/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PerforceSourceControl/Binaries/Mac/UnrealEditor-PerforceSourceControl.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PerforceSourceControl/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PluginUtils/Binaries/Mac/UnrealEditor-PluginUtils.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PluginUtils/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PropertyAccessNode/Binaries/Mac/UnrealEditor-PropertyAccessNode.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PropertyAccessNode/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/RiderSourceCodeAccess/Binaries/Mac/UnrealEditor-RiderSourceCodeAccess.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/RiderSourceCodeAccess/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/SubversionSourceControl/Binaries/Mac/UnrealEditor-SubversionSourceControl.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/SubversionSourceControl/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/TextureFormatOodle/Binaries/Mac/UnrealEditor-TextureFormatOodle.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/TextureFormatOodle/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/UObjectPlugin/Binaries/Mac/UnrealEditor-UObjectPlugin.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/UObjectPlugin/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/VisualStudioCodeSourceCodeAccess/Binaries/Mac/UnrealEditor-VisualStudioCodeSourceCodeAccess.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/VisualStudioCodeSourceCodeAccess/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/XCodeSourceCodeAccess/Binaries/Mac/UnrealEditor-XCodeSourceCodeAccess.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/XCodeSourceCodeAccess/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/AssetManagerEditor/Binaries/Mac/UnrealEditor-AssetManagerEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/AssetManagerEditor/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/BlueprintHeaderView/Binaries/Mac/UnrealEditor-BlueprintHeaderView.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/BlueprintHeaderView/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ChangelistReview/Binaries/Mac/UnrealEditor-ChangelistReview.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ChangelistReview/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ColorGrading/Binaries/Mac/UnrealEditor-ColorGradingEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ColorGrading/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserAssetDataSource/Binaries/Mac/UnrealEditor-ContentBrowserAssetDataSource.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserAssetDataSource/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserClassDataSource/Binaries/Mac/UnrealEditor-ContentBrowserClassDataSource.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserClassDataSource/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserFileDataSource/Binaries/Mac/UnrealEditor-ContentBrowserFileDataSource.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserFileDataSource/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CryptoKeys/Binaries/Mac/UnrealEditor-CryptoKeys.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CryptoKeys/Binaries/Mac/UnrealEditor-CryptoKeysOpenSSL.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CryptoKeys/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CurveEditorTools/Binaries/Mac/UnrealEditor-CurveEditorTools.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CurveEditorTools/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/DataValidation/Binaries/Mac/UnrealEditor-DataValidation.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/DataValidation/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorDebugTools/Binaries/Mac/UnrealEditor-EditorDebugTools.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorDebugTools/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorScriptingUtilities/Binaries/Mac/UnrealEditor-EditorScriptingUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorScriptingUtilities/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EngineAssetDefinitions/Binaries/Mac/UnrealEditor-EngineAssetDefinitions.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EngineAssetDefinitions/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/FacialAnimation/Binaries/Mac/UnrealEditor-FacialAnimation.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/FacialAnimation/Binaries/Mac/UnrealEditor-FacialAnimationEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/FacialAnimation/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GameplayTagsEditor/Binaries/Mac/UnrealEditor-GameplayTagsEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GameplayTagsEditor/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/Binaries/Mac/UnrealEditor-BspMode.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/Binaries/Mac/UnrealEditor-GeometryMode.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/Binaries/Mac/UnrealEditor-TextureAlignMode.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/Localization/PortableObjectFileDataSource/Binaries/Mac/UnrealEditor-PortableObjectFileDataSource.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/Localization/PortableObjectFileDataSource/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MacGraphicsSwitching/Binaries/Mac/UnrealEditor-MacGraphicsSwitching.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MacGraphicsSwitching/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MaterialAnalyzer/Binaries/Mac/UnrealEditor-MaterialAnalyzer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MaterialAnalyzer/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MeshLODToolset/Binaries/Mac/UnrealEditor-MeshLODToolset.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MeshLODToolset/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MobileLauncherProfileWizard/Binaries/Mac/UnrealEditor-MobileLauncherProfileWizard.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MobileLauncherProfileWizard/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ModelingToolsEditorMode/Binaries/Mac/UnrealEditor-ModelingToolsEditorMode.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ModelingToolsEditorMode/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/LightMixer/Binaries/Mac/UnrealEditor-LightMixer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/LightMixer/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/ObjectMixer/Binaries/Mac/UnrealEditor-ObjectMixerEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/ObjectMixer/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/PluginBrowser/Binaries/Mac/UnrealEditor-PluginBrowser.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/PluginBrowser/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SequencerAnimTools/Binaries/Mac/UnrealEditor-SequencerAnimTools.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SequencerAnimTools/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SpeedTreeImporter/Binaries/Mac/UnrealEditor-SpeedTreeImporter.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SpeedTreeImporter/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/StylusInput/Binaries/Mac/UnrealEditor-StylusInput.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/StylusInput/Binaries/Mac/UnrealEditor-StylusInputDebugWidget.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/StylusInput/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UMGWidgetPreview/Binaries/Mac/UnrealEditor-UMGWidgetPreview.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UMGWidgetPreview/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/Binaries/Mac/UnrealEditor-UVEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/Binaries/Mac/UnrealEditor-UVEditorTools.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/Binaries/Mac/UnrealEditor-UVEditorToolsEditorOnly.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/WorldPartitionHLODUtilities/Binaries/Mac/UnrealEditor-WorldPartitionHLODUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/WorldPartitionHLODUtilities/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/Binaries/Mac/UnrealEditor-EnhancedInput.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/Binaries/Mac/UnrealEditor-InputBlueprintNodes.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/Binaries/Mac/UnrealEditor-InputEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/DatasmithContent/Binaries/Mac/UnrealEditor-DatasmithContent.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/DatasmithContent/Binaries/Mac/UnrealEditor-DatasmithContentEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/DatasmithContent/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/GLTFExporter/Binaries/Mac/UnrealEditor-GLTFExporter.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/GLTFExporter/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManager/Binaries/Mac/UnrealEditor-VariantManager.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManager/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManagerContent/Binaries/Mac/UnrealEditor-VariantManagerContent.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManagerContent/Binaries/Mac/UnrealEditor-VariantManagerContentEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManagerContent/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AdvancedRenamer/Binaries/Mac/UnrealEditor-AdvancedRenamer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AdvancedRenamer/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Animation/SkeletalMeshModelingTools/Binaries/Mac/UnrealEditor-SkeletalMeshModelingTools.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Animation/SkeletalMeshModelingTools/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AutomationUtils/Binaries/Mac/UnrealEditor-AutomationUtils.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AutomationUtils/Binaries/Mac/UnrealEditor-AutomationUtilsEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AutomationUtils/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/BackChannel/Binaries/Mac/UnrealEditor-BackChannel.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/BackChannel/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosCaching/Binaries/Mac/UnrealEditor-ChaosCaching.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosCaching/Binaries/Mac/UnrealEditor-ChaosCachingEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosCaching/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosEditor/Binaries/Mac/UnrealEditor-FractureEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosEditor/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosNiagara/Binaries/Mac/UnrealEditor-ChaosNiagara.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosNiagara/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosSolverPlugin/Binaries/Mac/UnrealEditor-ChaosSolverEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosSolverPlugin/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosUserDataPT/Binaries/Mac/UnrealEditor-ChaosUserDataPT.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosUserDataPT/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosVehiclesPlugin/Binaries/Mac/UnrealEditor-ChaosVehicles.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosVehiclesPlugin/Binaries/Mac/UnrealEditor-ChaosVehiclesEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosVehiclesPlugin/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterAI/Binaries/Mac/UnrealEditor-CharacterAI.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterAI/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterFXEditor/BaseCharacterFXEditor/Binaries/Mac/UnrealEditor-BaseCharacterFXEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterFXEditor/BaseCharacterFXEditor/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CineCameraSceneCapture/Binaries/Mac/UnrealEditor-CineCameraSceneCapture.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CineCameraSceneCapture/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Compositing/HoldoutComposite/Binaries/Mac/UnrealEditor-HoldoutComposite.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Compositing/HoldoutComposite/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Mac/UnrealEditor-DataflowAssetTools.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Mac/UnrealEditor-DataflowEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Mac/UnrealEditor-DataflowEnginePlugin.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Mac/UnrealEditor-DataflowNodes.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorDataStorage/Binaries/Mac/UnrealEditor-TedsCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorDataStorage/Binaries/Mac/UnrealEditor-TedsUI.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorDataStorage/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorPerformance/Binaries/Mac/UnrealEditor-EditorPerformance.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorPerformance/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorTelemetry/Binaries/Mac/UnrealEditor-EditorTelemetry.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorTelemetry/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Fracture/Binaries/Mac/UnrealEditor-FractureEngine.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Fracture/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/FullBodyIK/Binaries/Mac/UnrealEditor-FullBodyIK.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/FullBodyIK/Binaries/Mac/UnrealEditor-PBIK.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/FullBodyIK/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Mac/UnrealEditor-GeometryCollectionDepNodes.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Mac/UnrealEditor-GeometryCollectionEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Mac/UnrealEditor-GeometryCollectionNodes.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Mac/UnrealEditor-GeometryCollectionSequencer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Mac/UnrealEditor-GeometryCollectionTracks.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/Binaries/Mac/UnrealEditor-GeometryFlowCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/Binaries/Mac/UnrealEditor-GeometryFlowMeshProcessing.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/Binaries/Mac/UnrealEditor-GeometryFlowMeshProcessingEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/LocalizableMessage/Binaries/Mac/UnrealEditor-LocalizableMessage.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/LocalizableMessage/Binaries/Mac/UnrealEditor-LocalizableMessageBlueprint.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/LocalizableMessage/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Mac/UnrealEditor-MeshModelingToolsEditorOnlyExp.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Mac/UnrealEditor-MeshModelingToolsExp.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Mac/UnrealEditor-ModelingEditorUI.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Mac/UnrealEditor-ModelingUI.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Mac/UnrealEditor-SkeletalMeshModifiers.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MetaHuman/MetaHumanSDK/Binaries/Mac/UnrealEditor-MetaHumanSDKEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MetaHuman/MetaHumanSDK/Binaries/Mac/UnrealEditor-MetaHumanSDKRuntime.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MetaHuman/MetaHumanSDK/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlanarCutPlugin/Binaries/Mac/UnrealEditor-PlanarCut.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlanarCutPlugin/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/Binaries/Mac/UnrealEditor-PlatformCrypto.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/Binaries/Mac/UnrealEditor-PlatformCryptoOpenSSL.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/Binaries/Mac/UnrealEditor-PlatformCryptoTypes.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PythonScriptPlugin/Binaries/Mac/UnrealEditor-PythonScriptPlugin.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PythonScriptPlugin/Binaries/Mac/UnrealEditor-PythonScriptPluginPreload.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PythonScriptPlugin/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/SkeletalReduction/Binaries/Mac/UnrealEditor-SkeletalMeshReduction.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/SkeletalReduction/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/Binaries/Mac/UnrealEditor-AnalyticsHorde.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/Binaries/Mac/UnrealEditor-AnalyticsLog.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/Binaries/Mac/UnrealEditor-StudioTelemetry.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ToolPresets/Binaries/Mac/UnrealEditor-ToolPresetAsset.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ToolPresets/Binaries/Mac/UnrealEditor-ToolPresetEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ToolPresets/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Mac/UnrealEditor-Niagara.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Mac/UnrealEditor-NiagaraAnimNotifies.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Mac/UnrealEditor-NiagaraBlueprintNodes.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Mac/UnrealEditor-NiagaraCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Mac/UnrealEditor-NiagaraEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Mac/UnrealEditor-NiagaraEditorWidgets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Mac/UnrealEditor-NiagaraShader.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Mac/UnrealEditor-NiagaraVertexFactories.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/FX/NiagaraSimCaching/Binaries/Mac/UnrealEditor-NiagaraSimCaching.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/NiagaraSimCaching/Binaries/Mac/UnrealEditor-NiagaraSimCachingEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/NiagaraSimCaching/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Fab/Binaries/Mac/UnrealEditor-Fab.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Fab/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/FastBuildController/Binaries/Mac/UnrealEditor-FastBuildController.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FastBuildController/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Importers/AlembicImporter/Binaries/Mac/UnrealEditor-AlembicImporter.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Importers/AlembicImporter/Binaries/Mac/UnrealEditor-AlembicLibrary.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Importers/AlembicImporter/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/Binaries/Mac/UnrealEditor-InterchangeEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/Binaries/Mac/UnrealEditor-InterchangeEditorPipelines.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/Binaries/Mac/UnrealEditor-InterchangeEditorUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Mac/UnrealEditor-GLTFCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Mac/UnrealEditor-InterchangeCommon.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Mac/UnrealEditor-InterchangeCommonParser.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Mac/UnrealEditor-InterchangeDispatcher.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Mac/UnrealEditor-InterchangeExport.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Mac/UnrealEditor-InterchangeFactoryNodes.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Mac/UnrealEditor-InterchangeFbxParser.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Mac/UnrealEditor-InterchangeImport.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Mac/UnrealEditor-InterchangeMessages.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Mac/UnrealEditor-InterchangeNodes.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Mac/UnrealEditor-InterchangePipelines.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AndroidMedia/Binaries/Mac/UnrealEditor-AndroidMediaEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AndroidMedia/Binaries/Mac/UnrealEditor-AndroidMediaFactory.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AndroidMedia/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/Binaries/Mac/UnrealEditor-AvfMedia.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/Binaries/Mac/UnrealEditor-AvfMediaCapture.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/Binaries/Mac/UnrealEditor-AvfMediaEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/Binaries/Mac/UnrealEditor-AvfMediaFactory.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Mac/UnrealEditor-ExrReaderGpu.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Mac/UnrealEditor-ImgMedia.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Mac/UnrealEditor-ImgMediaEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Mac/UnrealEditor-ImgMediaEngine.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Mac/UnrealEditor-ImgMediaFactory.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Mac/UnrealEditor-OpenExrWrapper.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaCompositing/Binaries/Mac/UnrealEditor-MediaCompositing.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaCompositing/Binaries/Mac/UnrealEditor-MediaCompositingEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaCompositing/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlate/Binaries/Mac/UnrealEditor-MediaPlate.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlate/Binaries/Mac/UnrealEditor-MediaPlateEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlate/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlayerEditor/Binaries/Mac/UnrealEditor-MediaPlayerEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlayerEditor/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/Binaries/Mac/UnrealEditor-WebMMedia.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/Binaries/Mac/UnrealEditor-WebMMediaEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/Binaries/Mac/UnrealEditor-WebMMediaFactory.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/Binaries/Mac/UnrealEditor-WmfMediaEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/Binaries/Mac/UnrealEditor-WmfMediaFactory.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/MeshPainting/Binaries/Mac/UnrealEditor-MeshPaintEditorMode.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MeshPainting/Binaries/Mac/UnrealEditor-MeshPaintingToolset.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MeshPainting/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/TcpMessaging/Binaries/Mac/UnrealEditor-TcpMessaging.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/TcpMessaging/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/UdpMessaging/Binaries/Mac/UnrealEditor-UdpMessaging.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/UdpMessaging/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/ActorSequence/Binaries/Mac/UnrealEditor-ActorSequence.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/ActorSequence/Binaries/Mac/UnrealEditor-ActorSequenceEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/ActorSequence/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/LevelSequenceEditor/Binaries/Mac/UnrealEditor-LevelSequenceEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/LevelSequenceEditor/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/SequencerScripting/Binaries/Mac/UnrealEditor-SequencerScripting.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/SequencerScripting/Binaries/Mac/UnrealEditor-SequencerScriptingEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/SequencerScripting/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/TemplateSequence/Binaries/Mac/UnrealEditor-TemplateSequence.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/TemplateSequence/Binaries/Mac/UnrealEditor-TemplateSequenceEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/TemplateSequence/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNEDenoiser/Binaries/Mac/UnrealEditor-NNEDenoiser.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNEDenoiser/Binaries/Mac/UnrealEditor-NNEDenoiserShaders.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNEDenoiser/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/Binaries/Mac/UnrealEditor-NNERuntimeORT.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Online/EOSShared/Binaries/Mac/UnrealEditor-EOSShared.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/EOSShared/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineBase/Binaries/Mac/UnrealEditor-OnlineBase.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineBase/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/Binaries/Mac/UnrealEditor-OnlineServicesCommon.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/Binaries/Mac/UnrealEditor-OnlineServicesCommonEngineUtils.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/Binaries/Mac/UnrealEditor-OnlineServicesInterface.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystem/Binaries/Mac/UnrealEditor-OnlineSubsystem.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystem/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemNull/Binaries/Mac/UnrealEditor-OnlineSubsystemNull.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemNull/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemUtils/Binaries/Mac/UnrealEditor-OnlineBlueprintSupport.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemUtils/Binaries/Mac/UnrealEditor-OnlineSubsystemUtils.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemUtils/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Portal/LauncherChunkInstaller/Binaries/Mac/UnrealEditor-LauncherChunkInstaller.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Portal/LauncherChunkInstaller/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/RenderGraphInsights/Binaries/Mac/UnrealEditor-RenderGraphInsights.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/RenderGraphInsights/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ActorLayerUtilities/Binaries/Mac/UnrealEditor-ActorLayerUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ActorLayerUtilities/Binaries/Mac/UnrealEditor-ActorLayerUtilitiesEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ActorLayerUtilities/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidDeviceProfileSelector/Binaries/Mac/UnrealEditor-AndroidDeviceProfileCommandlets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidDeviceProfileSelector/Binaries/Mac/UnrealEditor-AndroidDeviceProfileSelector.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidDeviceProfileSelector/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidFileServer/Binaries/Mac/UnrealEditor-AndroidFileServer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidFileServer/Binaries/Mac/UnrealEditor-AndroidFileServerEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidFileServer/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidPermission/Binaries/Mac/UnrealEditor-AndroidPermission.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidPermission/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleImageUtils/Binaries/Mac/UnrealEditor-AppleImageUtils.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleImageUtils/Binaries/Mac/UnrealEditor-AppleImageUtilsBlueprintSupport.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleImageUtils/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleMoviePlayer/Binaries/Mac/UnrealEditor-AppleMoviePlayer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleMoviePlayer/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ArchVisCharacter/Binaries/Mac/UnrealEditor-ArchVisCharacter.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ArchVisCharacter/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AssetTags/Binaries/Mac/UnrealEditor-AssetTags.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AssetTags/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioCapture/Binaries/Mac/UnrealEditor-AudioCapture.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioCapture/Binaries/Mac/UnrealEditor-AudioCaptureEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioCapture/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/Binaries/Mac/UnrealEditor-AudioSynesthesia.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/Binaries/Mac/UnrealEditor-AudioSynesthesiaCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/Binaries/Mac/UnrealEditor-AudioSynesthesiaEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioWidgets/Binaries/Mac/UnrealEditor-AudioWidgets.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioWidgets/Binaries/Mac/UnrealEditor-AudioWidgetsEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioWidgets/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CableComponent/Binaries/Mac/UnrealEditor-CableComponent.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CableComponent/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ChunkDownloader/Binaries/Mac/UnrealEditor-ChunkDownloader.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ChunkDownloader/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ComputeFramework/Binaries/Mac/UnrealEditor-ComputeFramework.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ComputeFramework/Binaries/Mac/UnrealEditor-ComputeFrameworkEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ComputeFramework/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CustomMeshComponent/Binaries/Mac/UnrealEditor-CustomMeshComponent.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CustomMeshComponent/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Database/SQLiteCore/Binaries/Mac/UnrealEditor-SQLiteCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Database/SQLiteCore/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ExampleDeviceProfileSelector/Binaries/Mac/UnrealEditor-ExampleDeviceProfileSelector.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ExampleDeviceProfileSelector/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Mac/UnrealEditor-GeometryCache.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Mac/UnrealEditor-GeometryCacheEd.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Mac/UnrealEditor-GeometryCacheSequencer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Mac/UnrealEditor-GeometryCacheStreamer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Mac/UnrealEditor-GeometryCacheTracks.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/Binaries/Mac/UnrealEditor-DynamicMesh.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/Binaries/Mac/UnrealEditor-GeometryAlgorithms.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/Binaries/Mac/UnrealEditor-MeshFileUtils.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GooglePAD/Binaries/Mac/UnrealEditor-GooglePAD.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GooglePAD/Binaries/Mac/UnrealEditor-GooglePADEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GooglePAD/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HDRIBackdrop/Binaries/Mac/UnrealEditor-HDRIBackdrop.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HDRIBackdrop/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Mac/UnrealEditor-HairCardGeneratorFramework.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Mac/UnrealEditor-HairStrandsCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Mac/UnrealEditor-HairStrandsDeformer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Mac/UnrealEditor-HairStrandsEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Mac/UnrealEditor-HairStrandsRuntime.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/InputDebugging/Binaries/Mac/UnrealEditor-InputDebugging.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/InputDebugging/Binaries/Mac/UnrealEditor-InputDebuggingEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/InputDebugging/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/LocationServicesBPLibrary/Binaries/Mac/UnrealEditor-LocationServicesBPLibrary.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/LocationServicesBPLibrary/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Mac/UnrealEditor-MeshModelingTools.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Mac/UnrealEditor-MeshModelingToolsEditorOnly.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Mac/UnrealEditor-ModelingComponents.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Mac/UnrealEditor-ModelingComponentsEditorOnly.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Mac/UnrealEditor-ModelingOperators.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Mac/UnrealEditor-ModelingOperatorsEditorOnly.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Mac/UnrealEditor-MetasoundEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Mac/UnrealEditor-MetasoundEngine.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Mac/UnrealEditor-MetasoundEngineTest.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Mac/UnrealEditor-MetasoundFrontend.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Mac/UnrealEditor-MetasoundGenerator.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Mac/UnrealEditor-MetasoundGraphCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Mac/UnrealEditor-MetasoundStandardNodes.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MobilePatchingUtils/Binaries/Mac/UnrealEditor-MobilePatchingUtils.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MobilePatchingUtils/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MsQuic/Binaries/Mac/UnrealEditor-MsQuicRuntime.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MsQuic/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ProceduralMeshComponent/Binaries/Mac/UnrealEditor-ProceduralMeshComponent.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ProceduralMeshComponent/Binaries/Mac/UnrealEditor-ProceduralMeshComponentEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ProceduralMeshComponent/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/PropertyAccess/Binaries/Mac/UnrealEditor-PropertyAccessEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/PropertyAccess/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ResonanceAudio/Binaries/Mac/UnrealEditor-ResonanceAudio.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ResonanceAudio/Binaries/Mac/UnrealEditor-ResonanceAudioEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ResonanceAudio/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/Binaries/Mac/UnrealEditor-RigVM.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/Binaries/Mac/UnrealEditor-RigVMDeveloper.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/Binaries/Mac/UnrealEditor-RigVMEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SignificanceManager/Binaries/Mac/UnrealEditor-SignificanceManager.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SignificanceManager/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SoundFields/Binaries/Mac/UnrealEditor-SoundFields.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SoundFields/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/Binaries/Mac/UnrealEditor-StateTreeEditorModule.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/Binaries/Mac/UnrealEditor-StateTreeModule.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/Binaries/Mac/UnrealEditor-StateTreeTestSuite.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Synthesis/Binaries/Mac/UnrealEditor-Synthesis.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Synthesis/Binaries/Mac/UnrealEditor-SynthesisEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Synthesis/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Binaries/Mac/UnrealEditor-USDClasses.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Binaries/Mac/UnrealEditor-USDUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Binaries/Mac/UnrealEditor-UnrealUSDWrapper.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WaveTable/Binaries/Mac/UnrealEditor-WaveTable.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WaveTable/Binaries/Mac/UnrealEditor-WaveTableEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WaveTable/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WebMMoviePlayer/Binaries/Mac/UnrealEditor-WebMMoviePlayer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WebMMoviePlayer/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Tests/InterchangeTests/Binaries/Mac/UnrealEditor-InterchangeTestEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Tests/InterchangeTests/Binaries/Mac/UnrealEditor-InterchangeTests.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Tests/InterchangeTests/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/TraceUtilities/Binaries/Mac/UnrealEditor-EditorTraceUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/TraceUtilities/Binaries/Mac/UnrealEditor-TraceUtilities.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/TraceUtilities/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Mac/UnrealEditor-CacheTrackRecorder.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Mac/UnrealEditor-TakeMovieScene.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Mac/UnrealEditor-TakeRecorder.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Mac/UnrealEditor-TakeRecorderSources.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Mac/UnrealEditor-TakeSequencer.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Mac/UnrealEditor-TakeTrackRecorders.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Mac/UnrealEditor-TakesCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/Binaries/Mac/UnrealEditor-CsvMetrics.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/Binaries/Mac/UnrealEditor-WorldMetricsCore.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/Binaries/Mac/UnrealEditor-WorldMetricsTest.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/UnrealEditor-LuckyWorld.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Mac/UnrealEditor-AsyncLoadingScreen.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/BlueprintJson/Binaries/Mac/UnrealEditor-BlueprintJson.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/BlueprintJson/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/FileHelperPlugin/Binaries/Mac/UnrealEditor-FileHelper.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/FileHelperPlugin/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Mac/UnrealEditor-LuckyMujoco.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Mac/UnrealEditor-LuckyMujocoEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Mac/libmujoco.3.2.7.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyTextWrite/Binaries/Mac/UnrealEditor-LuckyTextWrite.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyTextWrite/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Mac/UnrealEditor-CoreUtility.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Mac/UnrealEditor-SIOJEditorPlugin.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Mac/UnrealEditor-SIOJson.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Mac/UnrealEditor-SocketIOClient.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Mac/UnrealEditor-SocketIOLib.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Mac/UnrealEditor-VaRest.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Mac/UnrealEditor-VaRestEditor.dylib", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Mac/UnrealEditor.modules", - "Type": "RequiredResource" - } - ], - "RuntimeDependencies": [ - { - "Path": "$(EngineDir)/Binaries/Mac/AgentInterface.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/AgentInterface.pdb", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/EpicWebHelper", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libNNEEditorOnnxTools.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_atomic-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_chrono-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_filesystem-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_iostreams-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_program_options-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_python311-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_regex-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_system-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libboost_thread-mt-a64.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/libmujoco.3.2.7.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.10.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.11.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.12.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.5.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.6.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.7.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.8.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/liboo2texmac64.2.9.9.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Mac/mujoco.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/EOSSDK/Mac/libEOSSDK-Mac-Shipping.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/FreeImage/Mac/libfreeimage-3.18.0.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Intel/TBB/Mac/libtbb.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Intel/TBB/Mac/libtbbmalloc.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Ogg/Mac/libogg.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/OpenColorIO/Mac/libOpenColorIO.2.3.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/2to3", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/2to3-3.11", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/idle3", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/idle3.11", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/pip3", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/pip3.11", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/pydoc3", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/pydoc3.11", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/python3", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/python3-config", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/python3-intel64", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/python3.11", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/python3.11-config", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/python3.11-intel64", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/libpython3.11.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/pkgconfig/python-3.11-embed.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/pkgconfig/python-3.11.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/pkgconfig/python3-embed.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/pkgconfig/python3.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/LICENSE.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/__future__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/__hello__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/__phello__/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/__phello__/spam.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_aix_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_bootsubprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_collections_abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_compat_pickle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_compression.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_markupbase.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_osx_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_py_abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_pydecimal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_pyio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_sitebuiltins.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_strptime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_sysconfigdata__darwin_darwin.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_threading_local.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/_weakrefset.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/aifc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/antigravity.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/argparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ast.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asynchat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/base_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/base_futures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/base_subprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/base_tasks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/constants.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/coroutines.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/format_helpers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/futures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/locks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/log.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/mixins.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/proactor_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/protocols.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/queues.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/runners.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/selector_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/sslproto.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/staggered.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/streams.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/subprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/taskgroups.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/tasks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/threads.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/timeouts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/transports.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/trsock.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/unix_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/windows_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncio/windows_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/asyncore.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/base64.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/bdb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/bisect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/bz2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/cProfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/calendar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/cgi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/cgitb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/chunk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/code.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/codecs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/codeop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/collections/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/collections/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/colorsys.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/compileall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/concurrent/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/concurrent/futures/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/concurrent/futures/_base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/concurrent/futures/process.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/concurrent/futures/thread.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/config-3.11-darwin/Makefile", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/config-3.11-darwin/Setup", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/config-3.11-darwin/Setup.bootstrap", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/config-3.11-darwin/Setup.local", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/config-3.11-darwin/Setup.stdlib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/config-3.11-darwin/config.c", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/config-3.11-darwin/config.c.in", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/config-3.11-darwin/install-sh", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/config-3.11-darwin/libpython3.11.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/config-3.11-darwin/makesetup", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/config-3.11-darwin/python-config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/config-3.11-darwin/python.o", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/configparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/contextlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/contextvars.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/copy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/copyreg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/crypt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/csv.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/_aix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/_endian.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/macholib/README.ctypes", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/macholib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/macholib/dyld.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/macholib/dylib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/macholib/fetch_macholib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/macholib/fetch_macholib.bat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/macholib/framework.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_anon.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_array_in_pointer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_arrays.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_as_parameter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_bitfields.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_buffers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_bytes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_byteswap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_callbacks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_cast.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_cfuncs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_checkretval.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_delattr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_errno.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_find.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_frombuffer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_funcptr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_functions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_incomplete.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_init.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_internals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_keeprefs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_libc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_loading.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_macholib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_memfunctions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_numbers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_objects.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_parameters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_pep3118.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_pickling.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_pointers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_prototypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_python_api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_random_things.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_refcounts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_repr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_returnfuncptrs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_simplesubclasses.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_sizes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_slicing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_stringptr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_strings.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_struct_fields.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_structures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_unaligned_structures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_values.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_varsize_struct.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_win32.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/test/test_wintypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ctypes/wintypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/curses/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/curses/ascii.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/curses/has_key.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/curses/panel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/curses/textpad.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/dataclasses.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/datetime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/dbm/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/dbm/dumb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/dbm/gnu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/dbm/ndbm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/decimal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/difflib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/dis.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/_msvccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/archive_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/bcppcompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/ccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/bdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/bdist_dumb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/bdist_rpm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/build.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/build_clib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/build_ext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/build_py.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/build_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/clean.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/command_template", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/install_data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/install_egg_info.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/install_headers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/install_lib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/install_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/register.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/sdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/command/upload.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/cygwinccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/debug.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/dep_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/dir_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/dist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/errors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/extension.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/fancy_getopt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/file_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/filelist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/log.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/msvc9compiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/msvccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/spawn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/sysconfig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/Setup.sample", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/includetest.rst", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_archive_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_bdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_bdist_dumb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_bdist_rpm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_build.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_build_clib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_build_ext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_build_py.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_build_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_clean.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_config_cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_cygwinccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_dep_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_dir_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_dist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_extension.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_file_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_filelist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_install_data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_install_headers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_install_lib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_install_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_log.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_msvc9compiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_msvccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_register.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_sdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_spawn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_sysconfig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_text_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_unixccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_upload.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/test_versionpredicate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/tests/xxmodule.c", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/text_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/unixccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/distutils/versionpredicate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/doctest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/_encoded_words.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/_header_value_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/_parseaddr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/_policybase.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/architecture.rst", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/base64mime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/charset.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/contentmanager.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/encoders.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/errors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/feedparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/generator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/header.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/headerregistry.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/iterators.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/message.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/mime/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/mime/application.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/mime/audio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/mime/base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/mime/image.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/mime/message.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/mime/multipart.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/mime/nonmultipart.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/mime/text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/policy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/quoprimime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/email/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/aliases.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/ascii.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/base64_codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/big5.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/big5hkscs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/bz2_codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/charmap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp037.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1006.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1026.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1125.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1140.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1250.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1251.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1252.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1253.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1254.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1255.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1256.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1257.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp1258.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp273.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp424.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp437.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp500.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp720.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp737.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp775.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp850.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp852.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp855.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp856.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp857.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp858.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp860.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp861.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp862.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp863.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp864.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp865.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp866.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp869.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp874.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp875.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp932.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp949.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/cp950.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/euc_jis_2004.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/euc_jisx0213.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/euc_jp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/euc_kr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/gb18030.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/gb2312.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/gbk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/hex_codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/hp_roman8.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/hz.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/idna.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso2022_jp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso2022_jp_1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso2022_jp_2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso2022_jp_2004.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso2022_jp_3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso2022_jp_ext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso2022_kr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_10.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_11.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_13.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_14.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_15.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_16.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_4.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_5.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_6.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_7.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_8.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/iso8859_9.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/johab.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/koi8_r.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/koi8_t.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/koi8_u.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/kz1048.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/latin_1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/mac_arabic.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/mac_croatian.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/mac_cyrillic.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/mac_farsi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/mac_greek.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/mac_iceland.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/mac_latin2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/mac_roman.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/mac_romanian.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/mac_turkish.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/mbcs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/oem.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/palmos.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/ptcp154.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/punycode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/quopri_codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/raw_unicode_escape.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/rot_13.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/shift_jis.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/shift_jis_2004.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/shift_jisx0213.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/tis_620.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/undefined.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/unicode_escape.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/utf_16.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/utf_16_be.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/utf_16_le.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/utf_32.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/utf_32_be.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/utf_32_le.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/utf_7.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/utf_8.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/utf_8_sig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/uu_codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/encodings/zlib_codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ensurepip/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ensurepip/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ensurepip/_bundled/pip-24.0-py3-none-any.whl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ensurepip/_uninstall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/enum.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/filecmp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/fileinput.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/fnmatch.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/fractions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ftplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/genericpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/getopt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/getpass.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/gettext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/glob.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/graphlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/gzip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/hashlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/heapq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/hmac.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/html/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/html/entities.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/html/parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/http/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/http/client.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/http/cookiejar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/http/cookies.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/http/server.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/CREDITS.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/ChangeLog", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/HISTORY.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/README.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/folder.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/idle.ico", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/idle_16.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/idle_16.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/idle_256.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/idle_32.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/idle_32.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/idle_48.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/idle_48.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/minusnode.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/openfolder.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/plusnode.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/python.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/Icons/tk.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/NEWS2x.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/News3.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/README.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/TODO.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/autocomplete.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/autocomplete_w.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/autoexpand.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/browser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/calltip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/calltip_w.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/codecontext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/colorizer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/config-extensions.def", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/config-highlight.def", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/config-keys.def", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/config-main.def", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/config_key.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/configdialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/debugger.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/debugger_r.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/debugobj.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/debugobj_r.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/delegator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/dynoption.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/editor.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/extend.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/filelist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/format.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/grep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/help.html", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/help.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/help_about.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/history.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/hyperparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle.bat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle.pyw", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/README.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/example_noext", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/example_stub.pyi", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/htest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/mock_idle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/mock_tk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/template.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_autocomplete.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_autocomplete_w.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_autoexpand.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_browser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_calltip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_calltip_w.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_codecontext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_colorizer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_config_key.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_configdialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_debugger.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_debugger_r.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_debugobj.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_debugobj_r.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_delegator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_editmenu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_editor.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_filelist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_format.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_grep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_help.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_help_about.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_history.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_hyperparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_iomenu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_macosx.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_mainmenu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_multicall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_outwin.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_parenmatch.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_pathbrowser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_percolator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_pyparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_pyshell.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_query.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_redirector.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_replace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_rpc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_run.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_runscript.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_scrolledlist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_search.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_searchbase.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_searchengine.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_sidebar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_squeezer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_stackviewer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_statusbar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_textview.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_tooltip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_tree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_undo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_warning.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_window.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_zoomheight.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/test_zzdummy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/iomenu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/macosx.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/mainmenu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/multicall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/outwin.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/parenmatch.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/pathbrowser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/percolator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/pyparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/pyshell.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/query.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/redirector.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/replace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/rpc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/run.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/runscript.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/scrolledlist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/search.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/searchbase.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/searchengine.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/sidebar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/squeezer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/stackviewer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/statusbar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/textview.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/tooltip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/tree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/undo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/window.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/zoomheight.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/idlelib/zzdummy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/imaplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/imghdr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/imp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/_abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/_bootstrap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/_bootstrap_external.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/machinery.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/metadata/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/metadata/_adapters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/metadata/_collections.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/metadata/_functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/metadata/_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/metadata/_meta.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/metadata/_text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/readers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/resources/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/resources/_adapters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/resources/_common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/resources/_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/resources/_legacy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/resources/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/resources/readers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/resources/simple.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/simple.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/importlib/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/inspect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/io.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ipaddress.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/json/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/json/decoder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/json/encoder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/json/scanner.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/json/tool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/keyword.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_asyncio.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_blake2.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_codecs_cn.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_codecs_hk.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_codecs_jp.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_codecs_kr.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_codecs_tw.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_contextvars.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_crypt.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_csv.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_ctypes.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_ctypes_test.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_curses.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_curses_panel.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_dbm.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_decimal.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_elementtree.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_hashlib.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_json.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_lsprof.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_md5.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_multibytecodec.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_multiprocessing.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_posixshmem.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_random.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_scproxy.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_sha1.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_sha256.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_sha3.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_sqlite3.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_ssl.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_statistics.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_testbuffer.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_testcapi.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_testclinic.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_testimportmultiple.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_testinternalcapi.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_testmultiphase.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_uuid.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_xxsubinterpreters.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_xxtestfuzz.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/_zoneinfo.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/array.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/audioop.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/cmath.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/grp.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/math.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/mmap.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/nis.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/readline.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/resource.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/select.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/syslog.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/termios.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/unicodedata.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/xxlimited.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/xxlimited_35.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/Grammar.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/Grammar3.11.8.final.0.pickle", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/PatternGrammar.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/PatternGrammar3.11.8.final.0.pickle", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/btm_matcher.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/btm_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixer_base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixer_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_apply.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_asserts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_basestring.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_buffer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_dict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_except.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_exec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_execfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_exitfunc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_filter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_funcattrs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_future.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_getcwdu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_has_key.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_idioms.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_import.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_imports.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_imports2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_input.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_intern.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_isinstance.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_itertools_imports.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_long.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_map.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_metaclass.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_methodattrs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_ne.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_next.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_nonzero.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_numliterals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_operator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_paren.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_print.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_raise.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_raw_input.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_reduce.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_reload.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_renames.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_repr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_set_literal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_standarderror.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_sys_exc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_throw.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_tuple_params.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_urllib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_ws_comma.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_xrange.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_xreadlines.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/fixes/fix_zip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/patcomp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/pgen2/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/pgen2/conv.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/pgen2/driver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/pgen2/grammar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/pgen2/literals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/pgen2/parse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/pgen2/pgen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/pgen2/token.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/pgen2/tokenize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/pygram.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/pytree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/refactor.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/bom.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/crlf.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/different_encoding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/false_encoding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/fixers/bad_order.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/fixers/myfixes/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_first.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_last.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/fixers/no_fixer_cls.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/fixers/parrot_example.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/infinite_recursion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/py2_test_grammar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/data/py3_test_grammar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/pytree_idempotency.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/test_all_fixers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/test_fixers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/test_main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/test_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/test_pytree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/test_refactor.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lib2to3/tests/test_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/linecache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/locale.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/logging/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/logging/config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/logging/handlers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/lzma.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/mailbox.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/mailcap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/mimetypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/modulefinder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/connection.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/context.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/dummy/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/dummy/connection.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/forkserver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/heap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/managers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/pool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/popen_fork.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/popen_forkserver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/popen_spawn_posix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/popen_spawn_win32.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/process.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/queues.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/reduction.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/resource_sharer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/resource_tracker.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/shared_memory.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/sharedctypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/spawn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/synchronize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/multiprocessing/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/netrc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/nntplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ntpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/nturl2path.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/numbers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/opcode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/operator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/optparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/os.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pathlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pdb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pickle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pickletools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pipes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pkgutil.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/platform.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/plistlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/poplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/posixpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pprint.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/profile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pstats.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pty.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/py_compile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pyclbr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pydoc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pydoc_data/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pydoc_data/_pydoc.css", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/pydoc_data/topics.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/queue.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/quopri.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/random.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/re/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/re/_casefix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/re/_compiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/re/_constants.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/re/_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/reprlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/rlcompleter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/runpy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/sched.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/secrets.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/selectors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/shelve.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/shlex.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/shutil.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/signal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/README.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/_distutils_hack/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/_distutils_hack/override.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/distutils-precedence.pth", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip-24.0.dist-info/AUTHORS.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip-24.0.dist-info/INSTALLER", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip-24.0.dist-info/LICENSE.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip-24.0.dist-info/METADATA", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip-24.0.dist-info/RECORD", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip-24.0.dist-info/REQUESTED", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip-24.0.dist-info/WHEEL", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip-24.0.dist-info/entry_points.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip-24.0.dist-info/top_level.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/__pip-runner__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/build_env.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cli/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cli/autocompletion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cli/base_command.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cli/cmdoptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cli/command_context.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cli/main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cli/main_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cli/parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cli/progress_bars.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cli/req_command.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cli/spinners.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/cli/status_codes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/completion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/configuration.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/debug.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/download.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/freeze.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/hash.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/help.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/index.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/inspect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/list.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/search.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/show.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/uninstall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/commands/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/configuration.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/distributions/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/distributions/base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/distributions/installed.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/distributions/sdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/distributions/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/index/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/index/collector.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/index/package_finder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/index/sources.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/locations/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/locations/_distutils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/locations/_sysconfig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/locations/base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/metadata/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/metadata/_json.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/metadata/base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_dists.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_envs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/metadata/pkg_resources.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/models/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/models/candidate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/models/direct_url.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/models/format_control.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/models/index.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/models/installation_report.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/models/link.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/models/scheme.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/models/search_scope.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/models/selection_prefs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/models/target_python.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/models/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/network/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/network/auth.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/network/cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/network/download.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/network/lazy_wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/network/session.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/network/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/network/xmlrpc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/build/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/build/build_tracker.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/build/metadata.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/build/metadata_editable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/build/metadata_legacy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/build/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/build/wheel_editable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/build/wheel_legacy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/freeze.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/install/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/install/editable_legacy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/install/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/operations/prepare.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/pyproject.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/req/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/req/constructors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/req/req_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/req/req_install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/req/req_set.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/req/req_uninstall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/legacy/resolver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/candidates.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/factory.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/provider.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/reporter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/requirements.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/resolver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/self_outdated_check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/_jaraco_text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/_log.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/appdirs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/compatibility_tags.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/datetime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/deprecation.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/direct_url_helpers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/egg_link.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/encoding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/entrypoints.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/filesystem.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/filetypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/glibc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/hashes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/logging.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/models.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/packaging.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/setuptools_build.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/subprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/temp_dir.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/unpacking.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/urls.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/virtualenv.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/utils/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/vcs/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/vcs/bazaar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/vcs/git.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/vcs/mercurial.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/vcs/subversion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/vcs/versioncontrol.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_internal/wheel_builder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/_cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/adapter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/controller.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/filewrapper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/heuristics.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/serialize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/cachecontrol/wrapper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/certifi/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/certifi/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/certifi/cacert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/certifi/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/certifi/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/big5freq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/big5prober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/chardistribution.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/charsetgroupprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/charsetprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/cli/chardetect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachine.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachinedict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/cp949prober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/enums.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/escprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/escsm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/eucjpprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/euckrfreq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/euckrprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/euctwfreq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/euctwprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312freq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312prober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/hebrewprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/jisfreq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/johabfreq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/johabprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/jpcntx.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/langbulgarianmodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/langgreekmodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/langhebrewmodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/langhungarianmodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/langrussianmodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/langthaimodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/langturkishmodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/latin1prober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/macromanprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/mbcharsetprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/mbcsgroupprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/mbcssm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/languages.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/resultdict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/sbcharsetprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/sbcsgroupprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/sjisprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/universaldetector.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/utf1632prober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/utf8prober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/chardet/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/ansi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/ansitowin32.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/initialise.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansi_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/tests/initialise_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/tests/isatty_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/tests/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/tests/winterm_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/win32.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/colorama/winterm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/database.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/index.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/locators.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/manifest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/markers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/metadata.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/resources.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/t32.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/t64-arm.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/t64.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/w32.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/w64-arm.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/w64.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distlib/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distro/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distro/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distro/distro.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/distro/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/idna/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/idna/codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/idna/compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/idna/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/idna/idnadata.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/idna/intranges.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/idna/package_data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/idna/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/idna/uts46data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/msgpack/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/msgpack/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/msgpack/ext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/msgpack/fallback.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/packaging/__about__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/packaging/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/packaging/_manylinux.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/packaging/_musllinux.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/packaging/_structures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/packaging/markers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/packaging/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/packaging/requirements.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/packaging/specifiers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/packaging/tags.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/packaging/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/packaging/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pkg_resources/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/platformdirs/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/platformdirs/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/platformdirs/android.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/platformdirs/api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/platformdirs/macos.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/platformdirs/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/platformdirs/unix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/platformdirs/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/platformdirs/windows.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/cmdline.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/console.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/filter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/filters/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/_mapping.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/bbcode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/groff.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/html.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/img.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/irc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/latex.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/other.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/rtf.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/svg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/terminal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/terminal256.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/lexer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/lexers/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/lexers/_mapping.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/lexers/python.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/modeline.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/plugin.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/regexopt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/scanner.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/sphinxext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/style.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/styles/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/token.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/unistring.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pygments/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyparsing/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyparsing/actions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyparsing/common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyparsing/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyparsing/diagram/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyparsing/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyparsing/helpers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyparsing/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyparsing/results.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyparsing/testing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyparsing/unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyparsing/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_impl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/__version__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/_internal_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/adapters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/auth.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/certs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/cookies.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/help.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/hooks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/models.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/packages.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/sessions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/status_codes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/structures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/requests/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/resolvelib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/resolvelib/providers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/resolvelib/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/resolvelib/reporters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/resolvelib/resolvers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/resolvelib/structs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_cell_widths.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_codes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_replace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_export_format.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_extension.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_fileno.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_inspect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_log_render.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_loop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_null_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_palettes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_pick.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_ratio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_spinners.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_stack.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_timer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_win32_console.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_windows.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_windows_renderer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/_wrap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/align.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/ansi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/bar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/box.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/cells.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/color.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/color_triplet.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/columns.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/console.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/constrain.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/containers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/control.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/default_styles.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/diagnose.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/emoji.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/errors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/file_proxy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/filesize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/highlighter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/json.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/jupyter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/layout.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/live.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/live_render.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/logging.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/markup.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/measure.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/padding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/pager.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/palette.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/panel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/pretty.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/progress.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/progress_bar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/prompt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/protocol.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/region.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/repr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/rule.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/scope.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/screen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/segment.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/spinner.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/status.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/style.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/styled.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/syntax.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/table.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/terminal_theme.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/theme.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/themes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/traceback.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/rich/tree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/six.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tenacity/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tenacity/_asyncio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tenacity/_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tenacity/after.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tenacity/before.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tenacity/before_sleep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tenacity/nap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tenacity/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tenacity/retry.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tenacity/stop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tenacity/tornadoweb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tenacity/wait.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tomli/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tomli/_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tomli/_re.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tomli/_types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/tomli/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/truststore/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/truststore/_api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/truststore/_macos.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/truststore/_openssl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/truststore/_ssl_constants.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/truststore/_windows.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/truststore/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/typing_extensions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/_collections.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/_version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/connection.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/connectionpool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/appengine.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/securetransport.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/socks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/fields.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/filepost.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/six.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/poolmanager.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/request.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/response.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/connection.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/proxy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/queue.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/request.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/response.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/retry.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ssl_.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ssltransport.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/timeout.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/url.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/urllib3/util/wait.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/vendor.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/webencodings/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/webencodings/labels.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/webencodings/mklabels.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/webencodings/tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/_vendor/webencodings/x_user_defined.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pip/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/appdirs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/readers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/simple.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/context.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/more_itertools/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/more_itertools/more.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/more_itertools/recipes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__about__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/_manylinux.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/_musllinux.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/_structures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/markers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/requirements.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/specifiers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/tags.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/actions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/diagram/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/helpers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/results.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/testing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/_vendor/zipp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/pkg_resources/extern/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/INSTALLER", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/LICENSE", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/METADATA", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/RECORD", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/REQUESTED", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/WHEEL", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/entry_points.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/top_level.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_deprecation_warning.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/_collections.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/_functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/_macos_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/_msvccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/archive_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/bcppcompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/ccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/_framework_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/bdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/bdist_dumb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/bdist_rpm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/build.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/build_clib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/build_ext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/build_py.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/build_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/clean.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/install_data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/install_egg_info.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/install_headers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/install_lib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/install_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/py37compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/register.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/sdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/command/upload.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/cygwinccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/debug.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/dep_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/dir_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/dist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/errors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/extension.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/fancy_getopt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/file_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/filelist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/log.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/msvc9compiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/msvccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/py38compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/py39compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/spawn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/sysconfig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/text_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/unixccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_distutils/versionpredicate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_entry_points.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_imp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_importlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_path.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_reqs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_collections.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_meta.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_adapters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_legacy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/readers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/simple.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/jaraco/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/jaraco/context.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/jaraco/functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/jaraco/text/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/more.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/recipes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/ordered_set.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/packaging/__about__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/packaging/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/packaging/_manylinux.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/packaging/_musllinux.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/packaging/_structures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/packaging/markers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/packaging/requirements.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/packaging/specifiers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/packaging/tags.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/packaging/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/packaging/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/actions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/diagram/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/helpers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/results.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/testing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/tomli/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/tomli/_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/tomli/_re.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/tomli/_types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/typing_extensions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/_vendor/zipp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/archive_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/build_meta.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/cli-32.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/cli-64.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/cli-arm64.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/cli.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/alias.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/bdist_egg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/bdist_rpm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/build.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/build_clib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/build_ext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/build_py.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/develop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/dist_info.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/easy_install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/editable_wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/egg_info.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/install_egg_info.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/install_lib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/install_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/launcher manifest.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/py36compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/register.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/rotate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/saveopts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/sdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/setopt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/upload.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/command/upload_docs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/config/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/config/_apply_pyprojecttoml.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/error_reporting.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/extra_validations.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/formats.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/config/expand.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/config/setupcfg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/dep_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/depends.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/discovery.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/dist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/errors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/extension.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/extern/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/glob.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/gui-32.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/gui-64.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/gui-arm64.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/gui.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/installer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/launch.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/logging.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/monkey.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/msvc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/namespaces.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/package_index.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/py34compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/sandbox.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/script (dev).tmpl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/script.tmpl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/unicode_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site-packages/setuptools/windows_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/site.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/smtpd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/smtplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/sndhdr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/socket.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/socketserver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/sqlite3/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/sqlite3/dbapi2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/sqlite3/dump.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/sre_compile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/sre_constants.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/sre_parse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/ssl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/stat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/statistics.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/string.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/stringprep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/struct.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/subprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/sunau.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/symtable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/sysconfig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tabnanny.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tarfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/telnetlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tempfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/Sine-1000Hz-300ms.aif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/_test_atexit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/_test_eintr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/_test_embed_set_config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/_test_embed_structseq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/_test_multiprocessing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/_test_venv_multiprocessing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/archiver_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-alaw.aifc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-pcm16.aiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-pcm16.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-pcm16.wav", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-pcm24.aiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-pcm24.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-pcm24.wav", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-pcm32.aiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-pcm32.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-pcm32.wav", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-pcm8.aiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-pcm8.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-pcm8.wav", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-ulaw.aifc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiodata/pluck-ulaw.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiotest.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audiotests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/audit-tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/autotest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/bisect_cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/allsans.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/badcert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/badkey.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/capath/4e1295a3.0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/capath/5ed36f99.0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/capath/6e88d7b8.0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/capath/99d0fa06.0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/capath/b1930218.0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/capath/ceff1710.0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/ffdh3072.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/idnsans.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/keycert.passwd.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/keycert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/keycert2.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/keycert3.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/keycert4.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/keycertecc.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/make_ssl_certs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/nokia.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/nosan.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/nullbytecert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/nullcert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/pycacert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/pycakey.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/revocation.crl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/secp384r1.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/selfsigned_pythontestdotnet.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/ssl_cert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/ssl_key.passwd.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/ssl_key.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/certdata/talos-2019-0758.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/big5-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/big5.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/big5hkscs-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/big5hkscs.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/cp949-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/cp949.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/euc_jisx0213-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/euc_jisx0213.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/euc_jp-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/euc_jp.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/euc_kr-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/euc_kr.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/gb18030-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/gb18030.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/gb2312-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/gb2312.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/gbk-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/gbk.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/hz-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/hz.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/iso2022_jp-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/iso2022_jp.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/iso2022_kr-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/iso2022_kr.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/johab-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/johab.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/shift_jis-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/shift_jis.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/shift_jisx0213-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cjkencodings/shift_jisx0213.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/clinic.test.c", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/cmath_testcases.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/configdata/cfgparser.1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/configdata/cfgparser.2", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/configdata/cfgparser.3", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/crashers/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/crashers/bogus_code_obj.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/crashers/gc_inspection.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/crashers/infinite_loop_re.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/crashers/mutation_inside_cyclegc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/crashers/recursive_call.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/crashers/trace_at_recursion_limit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/crashers/underlying_dict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/curses_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/data/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/datetimetester.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/abs.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/add.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/and.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/base.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/clamp.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/class.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/compare.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/comparetotal.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/comparetotmag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/copy.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/copyabs.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/copynegate.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/copysign.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddAbs.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddAdd.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddAnd.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddBase.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddCanonical.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddClass.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddCompare.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddCompareSig.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddCompareTotal.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddCompareTotalMag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddCopy.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddCopyAbs.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddCopyNegate.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddCopySign.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddDivide.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddDivideInt.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddEncode.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddFMA.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddInvert.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddLogB.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddMax.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddMaxMag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddMin.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddMinMag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddMinus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddMultiply.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddNextMinus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddNextPlus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddNextToward.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddOr.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddPlus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddQuantize.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddReduce.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddRemainder.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddRemainderNear.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddRotate.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddSameQuantum.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddScaleB.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddShift.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddSubtract.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddToIntegral.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ddXor.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/decDouble.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/decQuad.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/decSingle.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/divide.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/divideint.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqAbs.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqAdd.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqAnd.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqBase.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqCanonical.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqClass.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqCompare.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqCompareSig.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqCompareTotal.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqCompareTotalMag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqCopy.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqCopyAbs.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqCopyNegate.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqCopySign.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqDivide.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqDivideInt.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqEncode.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqFMA.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqInvert.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqLogB.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqMax.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqMaxMag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqMin.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqMinMag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqMinus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqMultiply.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqNextMinus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqNextPlus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqNextToward.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqOr.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqPlus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqQuantize.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqReduce.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqRemainder.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqRemainderNear.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqRotate.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqSameQuantum.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqScaleB.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqShift.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqSubtract.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqToIntegral.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dqXor.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dsBase.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/dsEncode.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/exp.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/extra.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/fma.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/inexact.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/invert.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/ln.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/log10.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/logb.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/max.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/maxmag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/min.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/minmag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/minus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/multiply.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/nextminus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/nextplus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/nexttoward.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/or.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/plus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/power.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/powersqrt.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/quantize.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/randomBound32.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/randoms.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/reduce.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/remainder.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/remainderNear.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/rescale.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/rotate.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/rounding.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/samequantum.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/scaleb.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/shift.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/squareroot.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/subtract.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/testall.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/tointegral.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/tointegralx.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/decimaltestdata/xor.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dis_module.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/assert_usable.d", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/assert_usable.stp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/call_stack.d", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/call_stack.d.expected", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/call_stack.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/call_stack.stp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/call_stack.stp.expected", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/gc.d", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/gc.d.expected", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/gc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/gc.stp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/gc.stp.expected", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/instance.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/line.d", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/line.d.expected", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/dtracedata/line.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/empty.vbs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/encoded_modules/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/encoded_modules/module_iso_8859_1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/encoded_modules/module_koi8_r.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/exception_hierarchy.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/floating_points.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/fork_wait.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/formatfloat_testcases.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/ieee754.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python-raw.jpg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.bmp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.exr", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.jpg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.pbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.pgm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.ppm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.ras", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.sgi", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.tiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.webp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imghdrdata/python.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/imp_dummy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/leakers/README.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/leakers/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/leakers/test_ctypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/leakers/test_selftype.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/cmdline.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/filter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/findtests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/logger.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/mypy.ini", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/pgo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/refleak.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/result.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/results.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/run_workers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/runtests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/save_env.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/setup.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/single.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/testresult.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/win_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/libregrtest/worker.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/list_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/lock_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/mailcap.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/mapping_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/math_testcases.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/memory_watchdog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/mime.types", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/mock_socket.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/mp_fork_bomb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/mp_preload.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/multibytecodec_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/pickletester.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/profilee.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/pstats.pck", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/pyclbr_input.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/pydoc_mod.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/pydocfodder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/pythoninfo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/randv2_32.pck", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/randv2_64.pck", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/randv3.pck", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/re_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/recursion.tar", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/regrtest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/regrtestdata/import_from_tests/test_regrtest_a.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/regrtestdata/import_from_tests/test_regrtest_b/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/regrtestdata/import_from_tests/test_regrtest_b/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/regrtestdata/import_from_tests/test_regrtest_c.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/relimport.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/reperf.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/seq_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/signalinterproctester.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/sndhdrdata/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/sndhdrdata/sndhdr.8svx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/sndhdrdata/sndhdr.aifc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/sndhdrdata/sndhdr.aiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/sndhdrdata/sndhdr.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/sndhdrdata/sndhdr.hcom", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/sndhdrdata/sndhdr.sndt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/sndhdrdata/sndhdr.voc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/sndhdrdata/sndhdr.wav", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/sortperf.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/ssl_servers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/ssltests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/string_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/subprocessdata/fd_status.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/subprocessdata/input_reader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/subprocessdata/qcat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/subprocessdata/qgrep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/subprocessdata/sigchild_ignore.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/support/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/support/bytecode_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/support/hashlib_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/support/import_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/support/interpreters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/support/logging_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/support/os_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/support/pty_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/support/script_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/support/socket_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/support/threading_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/support/warnings_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test___all__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test__locale.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test__opcode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test__osx_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test__xxsubinterpreters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_abstract_numbers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_aifc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_argparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_array.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asdl_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ast.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncgen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asynchat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/echo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/echo2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/echo3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/functional.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_base_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_buffered_proto.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_context.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_futures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_futures2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_locks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_pep492.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_proactor_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_protocols.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_queues.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_runners.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_selector_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_sendfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_server.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_sock_lowlevel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_ssl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_sslproto.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_streams.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_subprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_taskgroups.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_tasks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_threads.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_timeouts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_transports.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_unix_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_waitfor.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_windows_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/test_windows_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncio/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_asyncore.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_atexit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_audioop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_audit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_augassign.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_base64.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_baseexception.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_bdb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_bigaddrspace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_bigmem.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_binascii.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_binop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_bisect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_bool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_buffer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_bufio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_builtin.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_bytes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_bz2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_c_locale_coercion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_calendar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_call.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_capi/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_capi/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_capi/test_codecs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_capi/test_eval_code_ex.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_capi/test_getargs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_capi/test_misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_capi/test_structmembers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_capi/test_unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_cgi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_cgitb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_charmapcodec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_check_c_globals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_class.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_clinic.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_cmath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_cmd_line.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_cmd_line_script.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_code.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_code_module.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codeccallbacks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codecencodings_cn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codecencodings_hk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codecencodings_iso2022.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codecencodings_jp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codecencodings_kr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codecencodings_tw.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codecmaps_cn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codecmaps_hk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codecmaps_jp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codecmaps_kr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codecmaps_tw.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codecs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_codeop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_collections.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_colorsys.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_compare.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_compile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_compileall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_complex.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_configparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_contains.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_context.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_contextlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_contextlib_async.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_copy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_copyreg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_coroutines.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_cppext/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_cppext/extension.cpp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_cppext/setup.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_cprofile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_crashers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_crypt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_csv.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ctypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_curses.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dataclasses/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dataclasses/dataclass_module_1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dataclasses/dataclass_module_1_str.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dataclasses/dataclass_module_2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dataclasses/dataclass_module_2_str.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dataclasses/dataclass_textanno.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_datetime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dbm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dbm_dumb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dbm_gnu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dbm_ndbm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_decimal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_decorators.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_defaultdict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_deque.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_descr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_descrtut.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_devpoll.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dict_version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dictcomps.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dictviews.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_difflib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_difflib_expect.html", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dis.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_distutils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_doctest/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_doctest/doctest_aliases.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_doctest/doctest_lineno.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_doctest/sample_doctest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_doctest/sample_doctest_no_docstrings.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_doctest/sample_doctest_no_doctests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_doctest/test_doctest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_doctest/test_doctest.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_doctest/test_doctest2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_doctest/test_doctest2.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_doctest/test_doctest3.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_doctest/test_doctest4.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_docxmlrpc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dtrace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dynamic.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_dynamicclassattribute.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_eintr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_01.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_02.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_03.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_04.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_05.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_06.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_07.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_08.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_09.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_10.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_11.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_12.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_12a.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_13.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_14.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_15.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_16.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_17.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_18.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_19.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_20.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_21.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_22.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_23.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_24.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_25.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_26.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_27.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_28.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_29.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_30.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_31.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_32.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_33.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_34.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_35.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_36.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_37.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_38.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_39.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_40.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_41.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_42.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_43.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_44.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_45.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_46.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/msg_47.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.bmp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.exr", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.jpg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.pbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.pgm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.ppm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.ras", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.sgi", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.tiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.webp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/python.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/sndhdr.aifc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/sndhdr.aiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/sndhdr.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/data/sndhdr.wav", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test__encoded_words.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test__header_value_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test_asian_codecs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test_contentmanager.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test_defect_handling.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test_email.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test_generator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test_headerregistry.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test_inversion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test_message.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test_pickleable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test_policy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/test_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_email/torture_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_embed.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ensurepip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_enum.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_enumerate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_eof.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_epoll.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_errno.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_except_star.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_exception_group.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_exception_hierarchy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_exception_variations.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_extcall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_faulthandler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_fcntl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_file_eintr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_filecmp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_fileinput.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_fileio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_fileutils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_finalization.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_float.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_flufl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_fnmatch.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_fork1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_format.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_fractions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_frame.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_frozen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_fstring.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ftplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_funcattrs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/badsyntax_future10.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/badsyntax_future3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/badsyntax_future4.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/badsyntax_future5.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/badsyntax_future6.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/badsyntax_future7.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/badsyntax_future8.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/badsyntax_future9.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/future_test1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/future_test2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/test_future.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/test_future_flags.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/test_future_multiple_features.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/test_future_multiple_imports.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_future_stmt/test_future_single_import.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_gc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_gdb/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_gdb/gdb_sample.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_gdb/test_backtrace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_gdb/test_cfunction.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_gdb/test_cfunction_full.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_gdb/test_misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_gdb/test_pretty_print.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_gdb/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_generator_stop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_generators.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_genericalias.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_genericclass.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_genericpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_genexps.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_getopt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_getpass.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_getpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_gettext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_glob.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_global.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_grammar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_graphlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_grp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_gzip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_hash.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_hashlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_heapq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_hmac.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_html.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_htmlparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_http_cookiejar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_http_cookies.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_httplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_httpservers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_idle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_imaplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_imghdr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_imp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/basic.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/basic2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/binding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/binding2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/from_cycle1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/from_cycle2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/indirect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/rebinding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/rebinding2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/source.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/subpackage.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/subpkg/subpackage2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/subpkg/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/subpkg2/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/subpkg2/parent/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/subpkg2/parent/child.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/use.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/circular_imports/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/double_const.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/package/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/package/submodule.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/package2/submodule1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/package2/submodule2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/unwritable/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_import/data/unwritable/x.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/builtin/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/builtin/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/builtin/test_finder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/builtin/test_loader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data/example-21.12-py3-none-any.whl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data/example-21.12-py3.6.egg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data/example2-1.0.0-py3-none-any.whl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data01/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data01/binary.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data01/subdirectory/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data01/subdirectory/binary.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data01/utf-16.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data01/utf-8.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data02/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data02/one/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data02/one/resource1.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data02/two/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data02/two/resource2.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data03/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data03/namespace/portion1/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data03/namespace/portion2/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/data03/namespace/resource1.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/extension/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/extension/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/extension/test_case_sensitivity.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/extension/test_finder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/extension/test_loader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/extension/test_path_hook.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/fixtures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/frozen/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/frozen/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/frozen/test_finder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/frozen/test_loader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/import_/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/import_/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/import_/test___loader__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/import_/test___package__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/import_/test_api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/import_/test_caching.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/import_/test_fromlist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/import_/test_meta_path.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/import_/test_packages.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/import_/test_path.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/import_/test_relative_imports.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/both_portions/foo/one.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/both_portions/foo/two.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/missing_directory.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/nested_portion1.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/portion1/foo/one.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/portion2/foo/two.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/project1/parent/child/one.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/project2/parent/child/two.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/project3/parent/child/three.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespace_pkgs/top_level_portion1.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespacedata01/binary.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespacedata01/utf-16.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/namespacedata01/utf-8.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/partial/cfimport.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/partial/pool_in_threads.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/resources/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/resources/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/source/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/source/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/source/test_case_sensitivity.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/source/test_file_loader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/source/test_finder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/source/test_path_hook.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/source/test_source_encoding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/stubs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_compatibilty_files.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_contents.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_files.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_lazy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_locks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_metadata_api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_namespace_pkgs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_open.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_path.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_pkg_import.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_read.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_reader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_resource.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_spec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_threaded_import.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_windows.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/test_zip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/threaded_import_hangers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/update-zips.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/zipdata01/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/zipdata01/ziptestdata.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/zipdata02/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_importlib/zipdata02/ziptestdata.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_index.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_inspect/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_inspect/inspect_fodder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_inspect/inspect_fodder2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_inspect/inspect_stock_annotations.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_inspect/inspect_stringized_annotations.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_inspect/inspect_stringized_annotations_2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_inspect/test_inspect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_int.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_int_literal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_interpreters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_io.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ioctl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ipaddress.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_isinstance.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_iter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_iterlen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_decode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_default.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_dump.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_encode_basestring_ascii.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_enum.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_fail.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_float.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_indent.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_pass1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_pass2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_pass3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_recursion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_scanstring.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_separators.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_speedups.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_tool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_json/test_unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_keyword.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_keywordonlyarg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_kqueue.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_largefile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_launcher.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_lib2to3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_linecache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_list.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_listcomps.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_lltrace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_locale.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_logging.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_long.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_longexp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_lzma.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_mailbox.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_mailcap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_marshal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_math.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_memoryio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_memoryview.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_metaclass.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_mimetypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_minidom.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_mmap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_module/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_module/bad_getattr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_module/bad_getattr2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_module/bad_getattr3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_module/final_a.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_module/final_b.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_module/good_getattr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_modulefinder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_msilib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_multibytecodec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_multiprocessing_main_handling.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_named_expressions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_netrc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_nis.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_nntplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ntpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_numeric_tower.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_opcache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_opcodes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_openpty.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_operator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_optparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ordered_dict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_os.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ossaudiodev.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_osx_env.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pathlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_patma.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pdb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_peepholer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_peg_generator/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_peg_generator/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_peg_generator/test_c_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_peg_generator/test_first_sets.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_peg_generator/test_grammar_validator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_peg_generator/test_pegen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pep646_syntax.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pickle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_picklebuffer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pickletools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pipes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pkg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pkgutil.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_platform.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_plistlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_poll.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_popen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_poplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_positional_only_arg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_posix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_posixpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pow.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pprint.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_print.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_profile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_property.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pstats.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pty.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pulldom.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pwd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_py_compile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pyclbr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pydoc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_pyexpat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_queue.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_quopri.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_raise.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_random.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_range.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_re.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_readline.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_regrtest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_repl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_reprlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_resource.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_richcmp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_rlcompleter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_robotparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_runpy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sax.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sched.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_scope.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_script_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_secrets.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_select.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_selectors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_set.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_setcomps.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_shelve.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_shlex.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_shutil.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_signal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_site.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_slice.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_smtpd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_smtplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_smtpnet.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sndhdr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_socket.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_socketserver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sort.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_source_encoding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_spwd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sqlite3/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sqlite3/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sqlite3/test_backup.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sqlite3/test_dbapi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sqlite3/test_dump.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sqlite3/test_factory.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sqlite3/test_hooks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sqlite3/test_regression.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sqlite3/test_transactions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sqlite3/test_types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sqlite3/test_userfunctions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ssl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_stable_abi_ctypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_startfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_stat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_statistics.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_strftime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_string.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_string_literals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_stringprep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_strptime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_strtod.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_struct.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_structseq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_subclassinit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_subprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sunau.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sundry.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_super.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_symtable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_syntax.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sys.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sys_setprofile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sys_settrace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_sysconfig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_syslog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tabnanny.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tarfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tcl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_telnetlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tempfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_termios.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_textwrap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_thread.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_threadedtempfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_threading.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_threading_local.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_threadsignals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_time.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_timeit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_timeout.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tokenize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/burntsushi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/array-missing-comma.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/array-of-tables/overwrite-array-in-parent.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/array-of-tables/overwrite-bool-with-aot.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/array/file-end-after-val.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/array/unclosed-after-item.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/array/unclosed-empty.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/basic-str-ends-in-escape.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/boolean/invalid-false-casing.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/boolean/invalid-true-casing.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/dates-and-times/invalid-day.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/dotted-keys/access-non-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/dotted-keys/extend-defined-aot.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/dotted-keys/extend-defined-table-with-subtable.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/dotted-keys/extend-defined-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/inline-table-missing-comma.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/inline-table/define-twice-in-subtable.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/inline-table/define-twice.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/inline-table/file-end-after-key-val.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/inline-table/mutate.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/inline-table/override-val-in-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/inline-table/override-val-with-array.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/inline-table/override-val-with-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/inline-table/overwrite-implicitly.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/inline-table/overwrite-value-in-inner-array.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/inline-table/overwrite-value-in-inner-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/inline-table/unclosed-empty.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/invalid-comment-char.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/invalid-escaped-unicode.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/invalid-hex.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/keys-and-vals/ends-early-table-def.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/keys-and-vals/ends-early.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/keys-and-vals/no-value.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/keys-and-vals/only-ws-after-dot.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/keys-and-vals/overwrite-with-deep-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/literal-str/unclosed.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/missing-closing-double-square-bracket.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/missing-closing-square-bracket.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/multiline-basic-str/carriage-return.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/multiline-basic-str/escape-only.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/multiline-basic-str/file-ends-after-opening.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/multiline-basic-str/last-line-escape.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/multiline-basic-str/unclosed-ends-in-whitespace-escape.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/multiline-literal-str/file-ends-after-opening.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/multiline-literal-str/unclosed.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/non-scalar-escaped.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/table/eof-after-opening.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/table/redefine-1.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/table/redefine-2.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/unclosed-multiline-string.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/invalid/unclosed-string.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/apostrophes-in-literal-string.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/apostrophes-in-literal-string.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/array/array-subtables.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/array/array-subtables.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/array/open-parent-table.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/array/open-parent-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/boolean.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/boolean.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/dates-and-times/datetimes.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/dates-and-times/datetimes.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/dates-and-times/localtime.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/dates-and-times/localtime.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/empty-inline-table.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/empty-inline-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/five-quotes.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/five-quotes.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/hex-char.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/hex-char.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/multiline-basic-str/ends-in-whitespace-escape.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/multiline-basic-str/ends-in-whitespace-escape.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/no-newlines.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/no-newlines.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/trailing-comma.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/data/valid/trailing-comma.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/test_data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/test_error.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tomllib/test_misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/test_fixcid.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/test_freeze.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/test_gprof2html.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/test_i18n.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/test_lll.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/test_md5sum.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/test_pathfix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/test_pdeps.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/test_pindent.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/test_reindent.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tools/test_sundry.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_trace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_traceback.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tracemalloc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ttk_guionly.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ttk_textonly.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tty.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_tuple.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_turtle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_type_annotations.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_type_cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_type_comments.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_typechecks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_typing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_ucn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_unary.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_unicode_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_unicode_file_functions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_unicode_identifiers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_unicodedata.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_unittest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_univnewlines.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_unpack.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_unpack_ex.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_unparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_urllib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_urllib2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_urllib2_localnet.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_urllib2net.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_urllib_response.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_urllibnet.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_urlparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_userdict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_userlist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_userstring.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_utf8_mode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_utf8source.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_uu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_uuid.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_venv.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_wait3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_wait4.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_warnings/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_warnings/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_warnings/data/import_warning.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_warnings/data/stacklevel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_wave.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_weakref.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_weakset.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_webbrowser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_winconsoleio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_winreg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_winsound.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_with.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_wsgiref.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_xdrlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_xml_dom_minicompat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_xml_etree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_xml_etree_c.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_xmlrpc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_xmlrpc_net.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_xxlimited.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_xxtestfuzz.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_yield_from.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_zipapp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_zipfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_zipfile64.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_zipimport.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_zipimport_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_zlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_zoneinfo/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_zoneinfo/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_zoneinfo/_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_zoneinfo/data/update_test_data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_zoneinfo/data/zoneinfo_data.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/test_zoneinfo/test_zoneinfo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/testcodec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/testtar.tar", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/testtar.tar.xz", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tf_inherit_check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/time_hashlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tokenizedata/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tokenizedata/bad_coding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tokenizedata/bad_coding2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tokenizedata/badsyntax_3131.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tokenizedata/badsyntax_pep3120.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tokenizedata/coding20731.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tokenizedata/tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tokenizedata/tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tokenizedata/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tokenizedata/tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tokenizedata/tokenize_tests.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tracedmodules/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/tracedmodules/testmod.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/typinganndata/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/typinganndata/_typed_dict_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/typinganndata/ann_module.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/typinganndata/ann_module2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/typinganndata/ann_module3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/typinganndata/ann_module4.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/typinganndata/ann_module5.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/typinganndata/ann_module6.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/typinganndata/ann_module7.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/typinganndata/ann_module8.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/typinganndata/ann_module9.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/typinganndata/mod_generics_cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/win_console_handler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/c14nComment.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/c14nPrefixQname.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/c14nPrefixQnameXpathElem.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/c14nQname.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/c14nQnameElem.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/c14nQnameXpathElem.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/c14nTrim.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/doc.dtd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/doc.xsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inC14N1.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inC14N2.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inC14N3.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inC14N4.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inC14N5.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inC14N6.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inNsContent.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inNsDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inNsPushdown.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inNsRedecl.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inNsSort.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inNsSuperfluous.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/inNsXml.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inC14N1_c14nComment.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inC14N1_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inC14N2_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inC14N2_c14nTrim.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inC14N3_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inC14N3_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inC14N3_c14nTrim.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inC14N4_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inC14N4_c14nTrim.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inC14N5_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inC14N5_c14nTrim.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inC14N6_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsContent_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsContent_c14nPrefixQnameXpathElem.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsContent_c14nQnameElem.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsContent_c14nQnameXpathElem.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsDefault_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsDefault_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsPushdown_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsPushdown_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsRedecl_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsRedecl_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsSort_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsSort_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsSuperfluous_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsSuperfluous_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsXml_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsXml_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsXml_c14nPrefixQname.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/out_inNsXml_c14nQname.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/c14n-20/world.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/expat224_utf8_bug.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/simple-ns.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/simple.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/test.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltestdata/test.xml.out", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/xmltests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/zip_cp437_header.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/zipdir.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/ziptestdata/README.md", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/ziptestdata/exe_with_z64", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/ziptestdata/exe_with_zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/ziptestdata/header.sh", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/test/ziptestdata/testdata_module_inside_zip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/textwrap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/this.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/threading.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/timeit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/colorchooser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/commondialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/constants.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/dialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/dnd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/filedialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/font.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/messagebox.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/scrolledtext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/simpledialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_tkinter/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_tkinter/test_colorchooser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_tkinter/test_font.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_tkinter/test_geometry_managers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_tkinter/test_images.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_tkinter/test_loadtk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_tkinter/test_messagebox.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_tkinter/test_misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_tkinter/test_simpledialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_tkinter/test_text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_tkinter/test_variables.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_tkinter/test_widgets.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_ttk/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_ttk/test_extensions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_ttk/test_style.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/test_ttk/test_widgets.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/test/widget_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/tix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tkinter/ttk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/token.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tokenize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tomllib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tomllib/_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tomllib/_re.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tomllib/_types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/trace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/traceback.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tracemalloc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/tty.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/bytedesign.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/chaos.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/clock.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/colormixer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/forest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/fractalcurves.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/lindenmayer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/minimal_hanoi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/nim.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/paint.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/peace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/penrose.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/planet_and_moon.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/rosette.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/round_dance.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/sorting_animate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/tree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/turtle.cfg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/two_canvases.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/turtledemo/yinyang.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/typing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/_log.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/async_case.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/case.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/loader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/mock.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/result.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/runner.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/signals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/suite.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/_test_warnings.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/dummy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_assertions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_async_case.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_break.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_case.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_discovery.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_functiontestcase.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_loader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_program.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_result.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_runner.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_setups.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_skipping.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/test_suite.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/testmock/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/testmock/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/testmock/support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/testmock/testasync.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/testmock/testcallable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/testmock/testhelpers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/testmock/testmagicmethods.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/testmock/testmock.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/testmock/testpatch.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/testmock/testsealable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/testmock/testsentinel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/test/testmock/testwith.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/unittest/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/urllib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/urllib/error.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/urllib/parse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/urllib/request.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/urllib/response.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/urllib/robotparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/uu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/uuid.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/venv/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/venv/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/venv/scripts/common/Activate.ps1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/venv/scripts/common/activate", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/venv/scripts/posix/activate.csh", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/venv/scripts/posix/activate.fish", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/warnings.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/wave.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/weakref.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/webbrowser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/wsgiref/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/wsgiref/handlers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/wsgiref/headers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/wsgiref/simple_server.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/wsgiref/types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/wsgiref/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/wsgiref/validate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xdrlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/dom/NodeFilter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/dom/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/dom/domreg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/dom/expatbuilder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/dom/minicompat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/dom/minidom.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/dom/pulldom.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/dom/xmlbuilder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/etree/ElementInclude.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/etree/ElementPath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/etree/ElementTree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/etree/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/etree/cElementTree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/parsers/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/parsers/expat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/sax/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/sax/_exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/sax/expatreader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/sax/handler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/sax/saxutils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xml/sax/xmlreader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xmlrpc/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xmlrpc/client.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/xmlrpc/server.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/zipapp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/zipfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/zipimport.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/zoneinfo/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/zoneinfo/_common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/zoneinfo/_tzpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/lib/python3.11/zoneinfo/_zoneinfo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Mac/libpython3.11.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/ShaderConductor/Mac/libdxcompiler.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/ar/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/glf/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/glf/resources/shaders/pcfShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/glf/resources/shaders/simpleLighting.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hd/resources/codegenTemplates/schemaClass.cpp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hd/resources/codegenTemplates/schemaClass.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hd/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdGp/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/basisCurves.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/compute.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/domeLight.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/edgeId.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/fallbackLighting.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/fallbackLightingShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/fallbackMaterialNetwork.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/fallbackVolume.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/frustumCull.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/imageShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/instancing.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/invalidMaterialNetwork.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/mesh.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/meshFaceCull.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/meshNormal.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/meshWire.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/pointId.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/points.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/ptexTexture.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/renderPass.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/renderPassShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/simpleLightingShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/surfaceHelpers.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/terminals.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/visibility.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/shaders/volume.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdSt/resources/textures/fallbackBlackDomeLight.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdStorm/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/boundingBox.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/colorChannel.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/colorCorrection.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/fullscreen.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/oitResolveImageShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/outline.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPass.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassColorAndSelectionShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassColorShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassColorWithOccludedSelectionShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassIdShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassOitOpaqueShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassOitShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassOitVolumeShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassPickingShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/renderPassShadowShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/selection.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/skydome.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/shaders/visualize.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/textures/StinsonBeach.hdr", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hdx/resources/textures/StinsonBeach.tex", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hgiGL/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hgiMetal/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/hio/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/ndr/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/sdf/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/sdrGlslfx/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/unreal/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/unreal/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/unreal/resources/unreal/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/api.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/schemaClass.cpp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/schemaClass.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/tokens.cpp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/tokens.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/wrapSchemaClass.cpp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/codegenTemplates/wrapTokens.cpp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usd/resources/usd/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdAbc/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdGeom/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdGeom/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdGeom/resources/usdGeom/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdHydra/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdHydra/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdHydra/resources/shaders/empty.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdHydra/resources/shaders/shaderDefs.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdHydra/resources/usdHydra/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdImaging/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdImagingGL/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdLux/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdLux/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdLux/resources/usdLux/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdMedia/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdMedia/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdMedia/resources/usdMedia/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdMtlx/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdPhysics/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdPhysics/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdPhysics/resources/usdPhysics/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdProc/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdProc/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdProc/resources/usdProc/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdProcImaging/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRender/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRender/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRender/resources/usdRender/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRi/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRi/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRi/resources/usdRi/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdRiPxrImaging/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShade/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShade/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShade/resources/usdShade/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShaders/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShaders/resources/shaders/previewSurface.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShaders/resources/shaders/primvarReader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShaders/resources/shaders/shaderDefs.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShaders/resources/shaders/transform2d.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdShaders/resources/shaders/uvTexture.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdSkel/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdSkel/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdSkel/resources/usdSkel/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdSkelImaging/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdSkelImaging/resources/shaders/skinning.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdUI/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdUI/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdUI/resources/usdUI/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdVol/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdVol/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdVol/resources/usdVol/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Mac/plugins/usdVolImaging/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Vorbis/Mac/libvorbis.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/libsndfile/Mac/libsndfile.1.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/apr-1-config", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/apriconv", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/apu-1-config", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/svn", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/svnadmin", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/svnbench", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/svndumpfilter", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/svnfsfs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/svnlook", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/svnmucc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/svnrdump", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/svnserve", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/svnsync", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/bin/svnversion", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/build-1/apr_rules.mk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/build-1/libtool", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/build-1/make_exports.awk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/build-1/make_var_export.awk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/build-1/mkdir.sh", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/api_version.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_allocator.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_anylock.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_atomic.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_base64.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_buckets.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_crypto.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_date.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_dbd.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_dbm.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_dso.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_env.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_errno.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_escape.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_file_info.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_file_io.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_fnmatch.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_general.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_getopt.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_global_mutex.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_hash.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_hooks.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_iconv.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_inherit.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_ldap.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_ldap_init.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_ldap_option.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_ldap_rebind.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_ldap_url.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_lib.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_md4.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_md5.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_memcache.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_mmap.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_network_io.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_optional.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_optional_hooks.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_poll.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_pools.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_portable.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_proc_mutex.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_queue.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_random.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_reslist.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_ring.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_rmm.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_sdbm.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_sha1.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_shm.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_signal.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_skiplist.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_strings.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_strmatch.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_support.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_tables.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_thread_cond.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_thread_mutex.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_thread_pool.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_thread_proc.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_thread_rwlock.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_time.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_uri.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_user.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_uuid.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_version.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_want.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_xlate.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apr_xml.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apu.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apu_errno.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apu_version.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/apr-1/apu_want.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/serf-1/serf.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/serf-1/serf_bucket_types.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/serf-1/serf_bucket_util.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/mod_authz_svn.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/mod_dav_svn.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn-revision.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_auth.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_base64.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_cache_config.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_checksum.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_client.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_cmdline.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_compat.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_config.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_ctype.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_dav.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_delta.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_diff.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_dirent_uri.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_dso.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_error.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_error_codes.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_fs.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_hash.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_io.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_iter.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_md5.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_mergeinfo.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_nls.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_opt.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_path.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_pools.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_props.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_quoprint.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_ra.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_ra_svn.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_repos.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_sorts.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_string.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_subst.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_time.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_types.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_user.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_utf.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_version.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_wc.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_x509.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/include/subversion-1/svn_xml.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/apr-util-1/apr_dbd_sqlite3.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/apr-util-1/libapr_dbd_sqlite3.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/apr.exp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/aprutil.exp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/_tbl_simple.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/adobe-stdenc.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/adobe-symbol.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/adobe-zdingbats.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/big5.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cns11643-plane1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cns11643-plane14.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cns11643-plane2.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp037.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp038.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp10000.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp10006.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp10007.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp10029.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp1006.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp10079.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp10081.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp1026.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp273.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp274.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp275.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp277.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp278.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp280.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp281.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp284.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp285.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp290.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp297.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp420.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp423.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp424.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp437.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp500.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp737.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp775.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp850.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp851.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp852.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp855.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp856.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp857.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp860.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp861.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp862.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp863.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp864.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp865.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp866.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp868.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp869.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp870.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp871.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp874.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp875.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp880.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp891.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp903.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp904.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp905.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp918.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp932.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp936.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp949.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/cp950.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/dec-mcs.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-at-de-a.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-at-de.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-ca-fr.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-dk-no-a.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-dk-no.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-es-a.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-es-s.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-es.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-fi-se-a.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-fi-se.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-fr.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-it.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-pt.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-uk.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ebcdic-us.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/euc-jp.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/euc-kr.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/euc-tw.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/gb12345.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/gb2312.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/gb_2312-80.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/hp-roman8.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-10646-ucs-2.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-10646-ucs-4.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-2022-cn.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-2022-jp-2.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-2022-jp.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-2022-kr.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-10.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-13.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-14.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-15.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-2.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-3.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-4.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-5.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-6.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-7.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-8.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-8859-9.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-10.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-102.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-103.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-11.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-111.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-121.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-122.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-123.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-128.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-13.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-139.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-14.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-141.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-142.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-143.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-146.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-147.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-15.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-150.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-151.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-152.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-153.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-154.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-155.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-158.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-16.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-17.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-18.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-19.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-2.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-21.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-25.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-27.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-37.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-4.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-47.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-49.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-50.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-51.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-54.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-55.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-57.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-60.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-61.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-69.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-70.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-8-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-8-2.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-84.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-85.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-86.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-88.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-89.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-9-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-9-2.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-90.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-91.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-92.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-93.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-94.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-95.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-96.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-98.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso-ir-99.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso646-dk.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/iso646-kr.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/jis_x0201.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/jis_x0208-1983.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/jis_x0212-1990.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/johab.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/koi8-r.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/koi8-ru.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/koi8-u.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ksx1001.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/lib_tbl_simple.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libadobe-stdenc.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libadobe-symbol.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libadobe-zdingbats.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libbig5.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcns11643-plane1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcns11643-plane14.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcns11643-plane2.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp037.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp038.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp10000.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp10006.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp10007.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp10029.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp1006.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp10079.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp10081.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp1026.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp273.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp274.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp275.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp277.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp278.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp280.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp281.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp284.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp285.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp290.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp297.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp420.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp423.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp424.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp437.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp500.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp737.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp775.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp850.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp851.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp852.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp855.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp856.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp857.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp860.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp861.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp862.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp863.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp864.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp865.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp866.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp868.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp869.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp870.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp871.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp874.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp875.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp880.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp891.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp903.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp904.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp905.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp918.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp932.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp936.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp949.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libcp950.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libdec-mcs.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-at-de-a.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-at-de.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-ca-fr.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-dk-no-a.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-dk-no.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-es-a.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-es-s.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-es.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-fi-se-a.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-fi-se.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-fr.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-it.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-pt.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-uk.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libebcdic-us.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libeuc-jp.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libeuc-kr.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libeuc-tw.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libgb12345.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libgb2312.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libgb_2312-80.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libhp-roman8.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-10646-ucs-2.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-10646-ucs-4.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-2022-cn.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-2022-jp-2.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-2022-jp.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-2022-kr.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-10.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-13.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-14.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-15.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-2.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-3.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-4.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-5.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-6.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-7.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-8.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-8859-9.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-10.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-102.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-103.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-11.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-111.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-121.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-122.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-123.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-128.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-13.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-139.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-14.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-141.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-142.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-143.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-146.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-147.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-15.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-150.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-151.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-152.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-153.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-154.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-155.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-158.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-16.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-17.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-18.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-19.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-2.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-21.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-25.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-27.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-37.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-4.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-47.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-49.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-50.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-51.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-54.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-55.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-57.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-60.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-61.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-69.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-70.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-8-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-8-2.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-84.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-85.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-86.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-88.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-89.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-9-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-9-2.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-90.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-91.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-92.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-93.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-94.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-95.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-96.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-98.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso-ir-99.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso646-dk.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libiso646-kr.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libjis_x0201.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libjis_x0208-1983.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libjis_x0212-1990.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libjohab.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libkoi8-r.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libkoi8-ru.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libkoi8-u.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libksx1001.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmac-ce.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmac-croatian.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmac-cyrillic.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmac-dingbats.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmac-greek.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmac-iceland.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmac-japan.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmac-roman.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmac-romania.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmac-thai.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmac-turkish.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmac-ukraine.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libmacintosh.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libosd_ebcdic_df04_1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libosd_ebcdic_df04_15.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libshift_jis.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libucs2-internal.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libucs4-internal.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libunicode-1-1-utf-7.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libus-ascii.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libutf-16.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libutf-8.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libwindows-1250.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libwindows-1251.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libwindows-1252.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libwindows-1253.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libwindows-1254.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libwindows-1255.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libwindows-1256.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libwindows-1257.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/libwindows-1258.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/mac-ce.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/mac-croatian.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/mac-cyrillic.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/mac-dingbats.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/mac-greek.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/mac-iceland.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/mac-japan.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/mac-roman.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/mac-romania.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/mac-thai.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/mac-turkish.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/mac-ukraine.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/macintosh.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/osd_ebcdic_df04_1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/osd_ebcdic_df04_15.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/shift_jis.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ucs2-internal.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/ucs4-internal.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/unicode-1-1-utf-7.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/us-ascii.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/utf-16.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/utf-8.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/windows-1250.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/windows-1251.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/windows-1252.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/windows-1253.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/windows-1254.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/windows-1255.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/windows-1256.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/windows-1257.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/iconv/windows-1258.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libapr-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libapr-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libapriconv-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libapriconv-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libaprutil-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libaprutil-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libserf-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libserf-1.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_client-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_client-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_delta-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_delta-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_diff-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_diff-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_fs-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_fs-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_fs_base-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_fs_base-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_fs_fs-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_fs_fs-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_fs_util-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_fs_util-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_fs_x-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_fs_x-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_ra-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_ra-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_ra_local-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_ra_local-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_ra_serf-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_ra_serf-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_ra_svn-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_ra_svn-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_repos-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_repos-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_subr-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_subr-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_wc-1.a", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/libsvn_wc-1.la", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/pkgconfig/apr-1.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/pkgconfig/apr-util-1.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/lib/pkgconfig/serf-1.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/license/APR-Iconv.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/license/APR-Util.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/license/APR.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/license/Berkeley-DB.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/license/CyrusSASL.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/license/OpenSSL.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/license/Serf.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/license/Subversion.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/license/Swig.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/license/ZLib.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/man/man1/svn.1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/man/man1/svnadmin.1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/man/man1/svndumpfilter.1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/man/man1/svnlook.1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/man/man1/svnmucc.1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/man/man1/svnrdump.1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/man/man1/svnsync.1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/man/man1/svnversion.1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/man/man5/svnserve.conf.5", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/man/man8/svnserve.8", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_client.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_delta.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_diff.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_fs.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_fs_base.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_fs_fs.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_fs_util.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_fs_x.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_ra.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_ra_local.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_ra_serf.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_ra_svn.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_repos.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_subr.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Mac/share/pkgconfig/libsvn_wc.pc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Content/Renderer/TessellationTable.bin", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/DeveloperDirectoryContent.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/EditorGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/ErrorFilter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/ExcludedTestsFilter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Fail.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/GameGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Groups.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/InProcess.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/NoSessionWarning.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/NotEnoughParticipants.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/NotRun.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Participant.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/ParticipantsWarning.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/RefreshTests.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/RefreshWorkers.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/RunTests.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/SmokeTest.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/SmokeTestFilter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/SmokeTestParent.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/StopTests.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Success.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/TrackTestHistory.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/VisualCommandlet.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Warning.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/WarningFilter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Checkerboard.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/BoxShadow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Button.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Button_Disabled.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Button_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Button_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Check.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Checked.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Checked_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Undetermined.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Undetermined_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Checker.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Circle.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorGradingWheel.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorPicker_Mode_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorPicker_Separator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorPicker_SliderHandle.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorSpectrum.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorWheel.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeader.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeaderMenuButton_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeaderMenuButton_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeader_Arrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeader_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ComboArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CursorPing.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DarkGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DebugBorder.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Delimiter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DownArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DropZoneIndicator_Above.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DropZoneIndicator_Below.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DropZoneIndicator_Onto.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/EditableTextSelectionBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/EventMessage_Default.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ExpansionButton_CloseOverlay.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/GroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/GroupBorder_Shape.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/HeaderSplitterGrip.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/LastColumnHeader_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/LeftArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/LightGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/NoiseBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/PlainBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProfileVisualizer_Mono.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProfileVisualizer_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProfileVisualizer_Selected.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProgressBar_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProgressBar_Fill.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProgressBar_Marquee.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/RadioButton_SelectedBack_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/RadioButton_Selected_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/RadioButton_Unselected_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/RoundedSelection_16x.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBorderShadowBottom.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBorderShadowTop.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBoxShadowBottom.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBoxShadowLeft.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBoxShadowRight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBoxShadowTop.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Scrollbar_Background_Horizontal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Scrollbar_Background_Vertical.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Scrollbar_Thumb.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SearchGlass.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Selection.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Selector.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Separator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheck.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Checked.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Checked_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Undetermined.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Undetermined_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SortDownArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SortDownArrows.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SortUpArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SortUpArrows.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SpinArrows.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Fill.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Fill_Dark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Fill_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Fill_Hovered_Dark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SplitterHandleHighlight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SubmenuArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TableViewHeader.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TableViewMajorColumn.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBlockHighlightShape.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBlockHighlightShape_Empty.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBoxLabelBorder.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Dark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Hovered_Dark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_ReadOnly.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Special.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Special_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Throbber_Piece.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TreeArrow_Collapsed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TreeArrow_Collapsed_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TreeArrow_Expanded.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TreeArrow_Expanded_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/UpArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VerticalBoxDragIndicator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VerticalBoxDragIndicatorShort.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_High.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_Low.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_Mid.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_Muted.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_Off.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/WhiteGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Close_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Close_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Close_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Maximize_Disabled.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Maximize_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Maximize_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Maximize_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Minimize_Disabled.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Minimize_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Minimize_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Minimize_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Restore_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Restore_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Restore_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowOutline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowTitle.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowTitle_Flashing.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowTitle_Inactive.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/X.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/CrashTracker/MouseCursor.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/CrashTracker/Record.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTabContentArea.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTabWellSeparator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_Active.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_ColorOverlay.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_ColorOverlayIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_Foreground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_Inactive.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/CloseApp_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/CloseApp_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/CloseApp_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/DockingIndicator_Center.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/OuterDockingIndicator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/ShowTabwellButton_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/ShowTabwellButton_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/ShowTabwellButton_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/TabContentArea.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/TabWellSeparator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Active.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_ColorOverlay.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_ColorOverlayIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Foreground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Inactive.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Shape.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/DroidSans.tps", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/DroidSansFallback.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/DroidSansMono.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Noto.tps", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/NotoNaskhArabicUI-Regular.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/NotoSansThai-Regular.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Black.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-BlackItalic.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Bold.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-BoldCondensed.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-BoldCondensedItalic.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-BoldItalic.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Italic.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Light.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Medium.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Regular.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto.tps", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/BackIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Cross_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/DefaultAppIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Copy_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Cut_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Delete_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Duplicate_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Paste_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Rename_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Empty_14x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/NextIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButton.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonBottom.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonCentre.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonLeft.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonRight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonTop.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_025x_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_025x_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_025x_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_05x_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_05x_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_05x_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_1x_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_1x_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_1x_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_Screen_Rotation_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_Screen_Rotation_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_Screen_Rotation_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PlusSymbol_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/GroupBorder-16Gray.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Average_Event_Graph_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Border_L_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Border_R_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Border_TB_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Cull_Events_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Culled_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Custom_Tooltip_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Data_Capture_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Events_Flat_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Events_Flat_Coalesced_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Events_Hierarchial_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_FPS_Chart_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Filter_Events_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Filter_Presets_Tab_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Filtered_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Graph_View_Tab_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Has_Culled_Children_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_History_Back_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_History_Fwd_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_LoadMultiple_Profiler_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Load_Profiler_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Max_Event_Graph_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Settings_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Tab_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_ThreadView_SampleBorder_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Calls_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CollapseAll_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CollapseSelection_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CollapseThread_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CopyToClipboard_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CulledEvents_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Disconnect_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Event_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ExpandAll_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ExpandHotPath_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ExpandSelection_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ExpandThread_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_GameThread_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_GenericFilter_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_GenericGroup_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_HotPath_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Memory_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Number_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_OpenEventGraph_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_RenderThread_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ResetColumn_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ResetToDefault_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SelectStack_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SetRoot_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ShowGraphData_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SortAscending_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SortBy_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SortDescending_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ViewColumn_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_mem_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_stats_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_sync_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/TrashCan.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/TrashCan_Small.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/cursor_cardinal_cross.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/cursor_grab.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/denied_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/ellipsis_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/eyedropper_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_Downloads_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_error_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_generic_toolbar.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_help_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_info_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_redo_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_tab_Tools_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_tab_WidgetReflector_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_tab_WidgetReflector_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_tab_toolbar_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_undo_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_warning_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/notificationlist_fail.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/notificationlist_success.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/toolbar_expand_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/All_Platforms_128x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/All_Platforms_24x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Commandlet.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Editor.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Game.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Other.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Server.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Unknown.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Advanced.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Back.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Build.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Delete.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Deploy.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_EditSettings.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Launch.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Run.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/MessageLog/Log_Error.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/MessageLog/Log_Note.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/MessageLog/Log_Warning.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Border.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Button.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/DashedBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/HyperlinkDotted.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/HyperlinkUnderline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Menu_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Menu_Background_Inverted_Border_Bold.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Notification_Border_Flash.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/ActionMenuButtonBG.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/ArrowBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/ArrowLeft.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Arrow_D.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Arrow_L.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Arrow_R.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Arrow_U.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/BoxEdgeHighlight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CalloutBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CalloutBox2.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CalloutBox3.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Callout_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Callout_Glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Callout_Outline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CircleBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CircleBox2.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CodeBlock_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CodeBlock_Glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CodeBlock_Outline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DiamondBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DiamondBox_B.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DiamondBox_T.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_L.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_LR.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_LR_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_L_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_R.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_R_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_L.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_LR.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_LR_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_R.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_R_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Hat.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Outer/alertOutline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Outer/alertSolid.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/PrePost_RoundedBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/PrePost_RoundedBox_B.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/PrePost_RoundedBox_T.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/QMark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Roboto-Bold.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedBoxBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedTileFaded.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedTile_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedTile_Glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedTile_Outline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/SolidWhite.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/SquareBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/SquareBox_Solid_L.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/SquigglyBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Tile_Highlight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Underline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/bigdot.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/blank.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_head.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_head_glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_highlight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_shadow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_stick.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/ping.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/selectionbar/selectionbar_0.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/selectionbar/selectionbar_1.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/selectionbar/selectionbar_2.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/smalldot.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/ToolBar_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/ToolTip_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/ToolTip_BrightBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/White.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Advanced.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/AllSavedAssets.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/AutomationTools.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/CPP.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Calendar.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Console.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Copy.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Cut.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Dash_Horizontal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Dash_Vertical.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Delete.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Developer.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/DropTargetBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Duplicate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/EyeDropper.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Favorite.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/FilterAuto.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/FlipHorizontal.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/FlipVertical.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Group_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/HiddenInGame.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Info.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Layout.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Linked.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/LookAt.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Merge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Monitor.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/OutputLog.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/ParentHierarchy.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Paste.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/PlayerController.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Preferences.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/ProjectLauncher.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Recent.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Redo.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Rename.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Role.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Rotate180.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Rotate90Clockwise.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Rotate90Counterclockwise.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Search_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/SessionFrontend.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/SortDown.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/SortUp.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Test.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UELogo.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UELogo.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Undo.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UndoHistory.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Unlinked.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UnsavedAssets.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UnsavedAssetsWarning.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Update.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/VisibleInGame.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Visualizer.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/alert-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/alert-triangle-64.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/alert-triangle-large.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/alert-triangle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/arrow-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/arrow-left.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/arrow-right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/arrow-up.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/badge-modified.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/badge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/blueprint.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/box-perspective.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/bullet-point.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/bullet-point16.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/caret-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/caret-right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/check-circle-large.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/check-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/check.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/checker.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/chevron-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/chevron-left.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/chevron-right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/chevron-up.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/circle-arrow-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/circle-arrow-left.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/circle-arrow-right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/circle-arrow-up.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/close-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/close-small.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/close.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/color-grading-cross.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/color-grading-selector.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/color-grading-spinbox-selector.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/curve-editor-append-key-20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/cylinder.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/delete-outline.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/drag-handle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/edit.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/ellipsis-horizontal-narrow.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/ellipsis-vertical-narrow.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/export.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/export_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/favorites-category.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/fieldnotify_off.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/fieldnotify_on.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/file-tree-open.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/file-tree.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/file.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/filled-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/filter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-cleanup.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-closed.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-open.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-plus.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-virtual-closed.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-virtual-open.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/help.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/hidden.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/import.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/import_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/layout-header-body.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/layout-spreadsheet.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/lock-unlocked.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/lock.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/menu.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/minus-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/minus.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/normalize.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/play.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/plus-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/plus.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/pyriamid.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/refresh.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/reject.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/save-modified.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/save.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/search.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/server.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/settings.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/sphere.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/stop.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/tile.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/unreal-circle-thick.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/unreal-circle-thin.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/unreal-small.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/visible.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/world.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/x-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/CheckBoxIndeterminate_12.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/CheckBoxIndeterminate_14.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/check.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/indeterminate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/radio-off.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/radio-on.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/ComboBox/corner-dropdown.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/ComboBox/wide-chevron-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/FilterBar/FilterColorSegment.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/NumericEntryBox/NarrowDecorator.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/ProgressBar/ProgressMarquee.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/SegmentedBox/left.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/SegmentedBox/left.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/SegmentedBox/right.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/SegmentedBox/right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/TableView/sort-down-arrow.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/TableView/sort-down-arrows.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/TableView/sort-up-arrow.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/TableView/sort-up-arrows.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/Window/close.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/Window/maximize.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/Window/minimize.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/Window/restore.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/DockTab_Active.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/DockTab_Foreground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/DockTab_Hover.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/Dock_Tab_Active.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/drawer-shadow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/pin.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/show-tab-well.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/AllTracks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/AutoScrollDown_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/AutoScrollRight_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Callees.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Callees_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Callers.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Callers_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Connection.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ControlsFirst.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ControlsLast.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ControlsNext.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ControlsPrevious.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Counter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Counter_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/CpuGpuTracks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Filter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/FilterConfig.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Frames.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Frames_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Function.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/HotPath_12.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/InfoTag_12.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Log.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Log_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemAllocTable.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemInvestigation.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemInvestigation_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemTags.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemTags_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Memory.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/NetStats.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/NetStats_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Networking.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/PacketContent.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/PacketContent_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Packets.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Packets_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/PluginTracks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Session.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeLarge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeLarge_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeMedium.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeMedium_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeSmall.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeSmall_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SpecialTracks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Tasks.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Tasks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Timer.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Timer_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Timing.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Timing_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceStore.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceStore_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/RecordTraceCenter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/RecordTraceOutline.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/RecordTraceRecording.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TracePause.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TraceResume.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TraceSnapshot.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TraceStart.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TraceStop.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/UTrace.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/UnrealInsights.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ViewMode_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ZeroCountFilter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Launcher/PaperAirplane.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Notifications/Throbber.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Added.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_BranchModifiedBadge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckCircleLine.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckIn.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckInAvailable.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckInAvailableRewound.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckedBranch.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckedBranchBadge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckedOther.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckedOtherBadge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_ConflictResolution_Clear.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_ConflictResolution_OpenExternal.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Conflicted.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_ConflictedState.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Diff.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_DiskSize.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_File.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_LineCircle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_MarkedForAdd.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Modified.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_ModifiedLocally.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_NewerVersion.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Promote.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Promote_Large.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Removed.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Rewind.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Rewound.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_StatusLocalUpToDate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_StatusLocalUpload.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_StatusRemoteDownload.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_StatusRemoteUpToDate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Sync.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_SyncAndCheckOut.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_VerticalLine.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_VerticalLineDashed.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_VerticalLineStart.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Action_Diff.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Action_Integrate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Branched.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Changelist.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_CheckedOut.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_ContentAdd.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_DlgCheckedOutOther.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_DlgNotCurrent.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_DlgReadOnly.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Lock.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_MarkedForDelete.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_ModifiedOtherBranch.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_NotInDepot.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SourceControl.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/Status/RevisionControl.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/Status/RevisionControlBadgeConnected.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/Status/RevisionControlBadgeWarning.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/icon_SCC_Change_Source_Control_Settings.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/icon_SCC_History.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/icon_SCC_Revert.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/StatusBar/drawer-shadow-bottom.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/BrushWireframe.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/DefaultPawn_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/FlatColorSquare.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/Hyperlink.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/Lit.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/NewLevelBlank.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/TestRotation.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/Unlit.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/Wireframe.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Tutorials/TutorialBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Tutorials/TutorialShadow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/SlateDebug/Fonts/LastResort.tps", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Content/SlateDebug/Fonts/LastResort.ttf", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Extras/GPUDumpViewer/GPUDumpViewer.html", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Extras/GPUDumpViewer/OpenGPUDumpViewer.bat", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Extras/GPUDumpViewer/OpenGPUDumpViewer.sh", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Paper2D.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/AI/AISupport/AISupport.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/AI/EnvironmentQueryEditor/EnvironmentQueryEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ACLPlugin/ACLPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationData/AnimationData.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationModifierLibrary/AnimationModifierLibrary.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/BlendSpaceMotionAnalysis/BlendSpaceMotionAnalysis.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/ControlRig.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRigModules/ControlRigModules.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRigSpline/ControlRigSpline.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/DeformerGraph.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/IKRig.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/LiveLink.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/RigLogic.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Bridge/Bridge.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/CameraShakePreviewer/CameraShakePreviewer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/EngineCameras/EngineCameras.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/GameplayCameras.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosCloth/ChaosCloth.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosVD/ChaosVD.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Compositing/OpenColorIO/OpenColorIO.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Compression/OodleNetwork/OodleNetwork.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/AnimationSharing/AnimationSharing.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/CLionSourceCodeAccess/CLionSourceCodeAccess.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/ConcertMain.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/ConcertSyncClient.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/ConcertSyncCore.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/DumpGPUServices/DumpGPUServices.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/GitSourceControl/GitSourceControl.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PerforceSourceControl/PerforceSourceControl.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PluginUtils/PluginUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PropertyAccessNode/PropertyAccessNode.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/RiderSourceCodeAccess/RiderSourceCodeAccess.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/SubversionSourceControl/SubversionSourceControl.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/TextureFormatOodle/TextureFormatOodle.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/UObjectPlugin/UObjectPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/VisualStudioCodeSourceCodeAccess/VisualStudioCodeSourceCodeAccess.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/XCodeSourceCodeAccess/XCodeSourceCodeAccess.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/AssetManagerEditor/AssetManagerEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/BlueprintHeaderView/BlueprintHeaderView.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ChangelistReview/ChangelistReview.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ColorGrading/ColorGrading.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserAssetDataSource/ContentBrowserAssetDataSource.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserClassDataSource/ContentBrowserClassDataSource.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserFileDataSource/ContentBrowserFileDataSource.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CryptoKeys/CryptoKeys.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CurveEditorTools/CurveEditorTools.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/DataValidation/DataValidation.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorDebugTools/EditorDebugTools.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorScriptingUtilities/EditorScriptingUtilities.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EngineAssetDefinitions/EngineAssetDefinitions.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/FacialAnimation/FacialAnimation.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GameplayTagsEditor/GameplayTagsEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/GeometryMode.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/Localization/PortableObjectFileDataSource/PortableObjectFileDataSource.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MacGraphicsSwitching/MacGraphicsSwitching.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MaterialAnalyzer/MaterialAnalyzer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MeshLODToolset/MeshLODToolset.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MobileLauncherProfileWizard/MobileLauncherProfileWizard.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ModelingToolsEditorMode/ModelingToolsEditorMode.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/LightMixer/LightMixer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/ObjectMixer/ObjectMixer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/PluginBrowser/PluginBrowser.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ProxyLODPlugin/ProxyLODPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SequencerAnimTools/SequencerAnimTools.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SpeedTreeImporter/SpeedTreeImporter.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/StylusInput/StylusInput.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UMGWidgetPreview/UMGWidgetPreview.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/UVEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/WorldPartitionHLODUtilities/WorldPartitionHLODUtilities.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/EnhancedInput.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/DatasmithContent/DatasmithContent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/GLTFExporter/GLTFExporter.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManager/VariantManager.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManagerContent/VariantManagerContent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AdvancedRenamer/AdvancedRenamer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Animation/SkeletalMeshModelingTools/SkeletalMeshModelingTools.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AutomationUtils/AutomationUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/BackChannel/BackChannel.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosCaching/ChaosCaching.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosEditor/ChaosEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosNiagara/ChaosNiagara.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosSolverPlugin/ChaosSolverPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosUserDataPT/ChaosUserDataPT.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosVehiclesPlugin/ChaosVehiclesPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterAI/CharacterAI.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterFXEditor/BaseCharacterFXEditor/BaseCharacterFXEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CineCameraSceneCapture/CineCameraSceneCapture.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Compositing/HoldoutComposite/HoldoutComposite.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Dataflow.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorDataStorage/EditorDataStorage.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorPerformance/EditorPerformance.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorTelemetry/EditorTelemetry.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Fracture/Fracture.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/FullBodyIK/FullBodyIK.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/GeometryCollectionPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/GeometryFlow.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/LocalizableMessage/LocalizableMessage.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/MeshModelingToolsetExp.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MetaHuman/MetaHumanSDK/MetaHumanSDK.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlanarCutPlugin/PlanarCut.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/PlatformCrypto.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PythonScriptPlugin/PythonScriptPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/SkeletalReduction/SkeletalReduction.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/StudioTelemetry.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ToolPresets/ToolPresets.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Niagara.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/FX/NiagaraSimCaching/NiagaraSimCaching.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Fab/Fab.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/FastBuildController/FastBuildController.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Importers/AlembicImporter/AlembicImporter.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Assets/InterchangeAssets.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/InterchangeEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Interchange.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AndroidMedia/AndroidMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/AvfMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/ImgMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaCompositing/MediaCompositing.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlate/MediaPlate.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlayerEditor/MediaPlayerEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/WebMMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/WmfMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MeshPainting/MeshPainting.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/TcpMessaging/TcpMessaging.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/UdpMessaging/UdpMessaging.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/ActorSequence/ActorSequence.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/LevelSequenceEditor/LevelSequenceEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/SequencerScripting/SequencerScripting.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/TemplateSequence/TemplateSequence.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNEDenoiser/NNEDenoiser.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/Binaries/ThirdParty/Onnxruntime/Mac/libonnxruntime.1.17.1.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/Binaries/ThirdParty/Onnxruntime/Mac/libonnxruntime.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/NNERuntimeORT.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/Android/OnlineSubsystemGooglePlay/OnlineSubsystemGooglePlay.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/EOSShared/EOSShared.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/IOS/OnlineSubsystemIOS/OnlineSubsystemIOS.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineBase/OnlineBase.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/OnlineServices.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystem/OnlineSubsystem.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemNull/OnlineSubsystemNull.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemUtils/OnlineSubsystemUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Portal/LauncherChunkInstaller/LauncherChunkInstaller.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/RenderGraphInsights/RenderGraphInsights.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ActorLayerUtilities/ActorLayerUtilities.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidDeviceProfileSelector/AndroidDeviceProfileSelector.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidFileServer/AndroidFileServer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidPermission/AndroidPermission.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleImageUtils/AppleImageUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleMoviePlayer/AppleMoviePlayer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ArchVisCharacter/ArchVisCharacter.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AssetTags/AssetTags.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioCapture/AudioCapture.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/AudioSynesthesia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioWidgets/AudioWidgets.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CableComponent/CableComponent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ChunkDownloader/ChunkDownloader.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ComputeFramework/ComputeFramework.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CustomMeshComponent/CustomMeshComponent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Database/SQLiteCore/SQLiteCore.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ExampleDeviceProfileSelector/ExampleDeviceProfileSelector.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/GeometryCache.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/GeometryProcessing.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GooglePAD/GooglePAD.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HDRIBackdrop/HDRIBackdrop.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/HairStrands.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/InputDebugging/InputDebugging.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/LocationServicesBPLibrary/LocationServicesBPLibrary.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/MeshModelingToolset.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Metasound.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MobilePatchingUtils/MobilePatchingUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MsQuic/MsQuic.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ProceduralMeshComponent/ProceduralMeshComponent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/PropertyAccess/PropertyAccessEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ResonanceAudio/ResonanceAudio.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/RigVM.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SignificanceManager/SignificanceManager.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SoundFields/SoundFields.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/StateTree.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Synthesis/Synthesis.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/hdStorm.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_ar.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_arch.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_cameraUtil.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_garch.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_geomUtil.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_gf.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_glf.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hd.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hdGp.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hdMtlx.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hdSt.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hdar.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hdsi.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hdx.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hf.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hgi.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hgiGL.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hgiInterop.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hgiMetal.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_hio.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_js.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_kind.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_ndr.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_pcp.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_plug.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_pxOsd.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_sdf.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_sdr.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_tf.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_trace.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_ts.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usd.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdAppUtils.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdBakeMtlx.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdGeom.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdHydra.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdImaging.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdImagingGL.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdLux.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdMedia.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdMtlx.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdPhysics.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdProc.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdProcImaging.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdRender.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdRi.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdRiPxrImaging.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdShade.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdSkel.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdSkelImaging.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdUI.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdUtils.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdVol.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_usdVolImaging.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_vt.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/libusd_work.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/sdrGlslfx.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/usdAbc.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Source/ThirdParty/Mac/bin/usdShaders.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/USDCore.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WaveTable/WaveTable.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WebMMoviePlayer/WebMMoviePlayer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Tests/InterchangeTests/InterchangeTests.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/TraceUtilities/TraceUtilities.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Takes.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/WorldMetrics.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/LuckyWorld.uproject", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/AsyncLoac1ceae7b44acV11/AsyncLoadingScreen.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/BlueprintJson/BlueprintJson.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/FileHelperPlugin/FileHelper.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Mac/libmujoco.3.2.7.dylib", - "Type": "NonUFS" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/LuckyMujoco.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyTextWrite/LuckyTextWrite.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/SocketIOClient.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/VaRestPlugin/VaRest.uplugin", - "Type": "UFS" - } - ], - "BuildPlugins": [ - "ACLPlugin", - "AISupport", - "ActorLayerUtilities", - "ActorSequence", - "AdvancedRenamer", - "AlembicImporter", - "AndroidDeviceProfileSelector", - "AndroidFileServer", - "AndroidMedia", - "AndroidMoviePlayer", - "AndroidPermission", - "AnimationData", - "AnimationModifierLibrary", - "AnimationSharing", - "AppleImageUtils", - "AppleMoviePlayer", - "ArchVisCharacter", - "AssetManagerEditor", - "AssetTags", - "AsyncLoadingScreen", - "AudioCapture", - "AudioSynesthesia", - "AudioWidgets", - "AutomationUtils", - "AvfMedia", - "BackChannel", - "BaseCharacterFXEditor", - "BlendSpaceMotionAnalysis", - "BlueprintHeaderView", - "BlueprintJson", - "Bridge", - "CLionSourceCodeAccess", - "CableComponent", - "CameraShakePreviewer", - "ChangelistReview", - "ChaosCaching", - "ChaosCloth", - "ChaosEditor", - "ChaosNiagara", - "ChaosSolverPlugin", - "ChaosUserDataPT", - "ChaosVD", - "ChaosVehiclesPlugin", - "CharacterAI", - "ChunkDownloader", - "CineCameraSceneCapture", - "CmdLinkServer", - "CodeLiteSourceCodeAccess", - "ColorGrading", - "ComputeFramework", - "ConcertMain", - "ConcertSyncClient", - "ConcertSyncCore", - "ContentBrowserAssetDataSource", - "ContentBrowserClassDataSource", - "ContentBrowserFileDataSource", - "ControlRig", - "ControlRigModules", - "ControlRigSpline", - "CryptoKeys", - "CurveEditorTools", - "CustomMeshComponent", - "DataValidation", - "Dataflow", - "DatasmithContent", - "DeformerGraph", - "DumpGPUServices", - "EOSShared", - "EditorDataStorage", - "EditorDebugTools", - "EditorPerformance", - "EditorScriptingUtilities", - "EditorTelemetry", - "EngineAssetDefinitions", - "EngineCameras", - "EnhancedInput", - "EnvironmentQueryEditor", - "ExampleDeviceProfileSelector", - "Fab", - "FacialAnimation", - "FastBuildController", - "FileHelper", - "Fracture", - "FullBodyIK", - "GLTFExporter", - "GameplayCameras", - "GameplayTagsEditor", - "GeometryCache", - "GeometryCollectionPlugin", - "GeometryFlow", - "GeometryMode", - "GeometryProcessing", - "GitSourceControl", - "GoogleCloudMessaging", - "GooglePAD", - "HDRIBackdrop", - "HairStrands", - "HoldoutComposite", - "IKRig", - "IOSDeviceProfileSelector", - "ImgMedia", - "InputDebugging", - "Interchange", - "InterchangeAssets", - "InterchangeEditor", - "InterchangeTests", - "KDevelopSourceCodeAccess", - "LauncherChunkInstaller", - "LevelSequenceEditor", - "LightMixer", - "LinuxDeviceProfileSelector", - "LiveLink", - "LocalizableMessage", - "LocationServicesBPLibrary", - "LuckyMujoco", - "LuckyTextWrite", - "MacGraphicsSwitching", - "MaterialAnalyzer", - "MediaCompositing", - "MediaPlate", - "MediaPlayerEditor", - "MeshLODToolset", - "MeshModelingToolset", - "MeshModelingToolsetExp", - "MeshPainting", - "MetaHumanSDK", - "Metasound", - "MobileLauncherProfileWizard", - "MobilePatchingUtils", - "ModelingToolsEditorMode", - "MsQuic", - "N10XSourceCodeAccess", - "NFORDenoise", - "NNEDenoiser", - "NNERuntimeORT", - "Niagara", - "NiagaraSimCaching", - "NullSourceCodeAccess", - "ObjectMixer", - "OnlineBase", - "OnlineServices", - "OnlineSubsystem", - "OnlineSubsystemGooglePlay", - "OnlineSubsystemIOS", - "OnlineSubsystemNull", - "OnlineSubsystemUtils", - "OodleNetwork", - "OpenColorIO", - "Paper2D", - "PerforceSourceControl", - "PixWinPlugin", - "PlanarCut", - "PlasticSourceControl", - "PlatformCrypto", - "PluginBrowser", - "PluginUtils", - "PortableObjectFileDataSource", - "ProceduralMeshComponent", - "PropertyAccessEditor", - "PropertyAccessNode", - "ProxyLODPlugin", - "PythonScriptPlugin", - "RenderDocPlugin", - "RenderGraphInsights", - "ResonanceAudio", - "RiderSourceCodeAccess", - "RigLogic", - "RigVM", - "SQLiteCore", - "SequencerAnimTools", - "SequencerScripting", - "SignificanceManager", - "SkeletalMeshModelingTools", - "SkeletalReduction", - "SocketIOClient", - "SoundFields", - "SpeedTreeImporter", - "StateTree", - "StudioTelemetry", - "StylusInput", - "SubversionSourceControl", - "Synthesis", - "Takes", - "TcpMessaging", - "TemplateSequence", - "TextureFormatOodle", - "ToolPresets", - "TraceUtilities", - "UMGWidgetPreview", - "UObjectPlugin", - "USDCore", - "UVEditor", - "UbaController", - "UdpMessaging", - "VaRest", - "VariantManager", - "VariantManagerContent", - "VisualStudioCodeSourceCodeAccess", - "VisualStudioSourceCodeAccess", - "WaveTable", - "WebMMedia", - "WebMMoviePlayer", - "WindowsDeviceProfileSelector", - "WindowsMoviePlayer", - "WmfMedia", - "WorldMetrics", - "WorldPartitionHLODUtilities", - "XCodeSourceCodeAccess", - "XGEController", - "XInputDevice" - ], - "AdditionalProperties": [ - { - "Name": "SDK", - "Value": "Not Applicable" - } - ] -} \ No newline at end of file diff --git a/Binaries/Mac/UnrealEditor-LuckyWorld.dylib b/Binaries/Mac/UnrealEditor-LuckyWorld.dylib deleted file mode 100755 index 6856ab91..00000000 Binary files a/Binaries/Mac/UnrealEditor-LuckyWorld.dylib and /dev/null differ diff --git a/Binaries/Mac/UnrealEditor.modules b/Binaries/Mac/UnrealEditor.modules deleted file mode 100644 index 0bcb2fc5..00000000 --- a/Binaries/Mac/UnrealEditor.modules +++ /dev/null @@ -1,7 +0,0 @@ -{ - "BuildId": "37670630", - "Modules": - { - "LuckyWorld": "UnrealEditor-LuckyWorld.dylib" - } -} \ No newline at end of file diff --git a/Binaries/Win64/LuckyrobotsEditor.target b/Binaries/Win64/LuckyrobotsEditor.target deleted file mode 100644 index 0a72a43a..00000000 --- a/Binaries/Win64/LuckyrobotsEditor.target +++ /dev/null @@ -1,35039 +0,0 @@ -{ - "TargetName": "LuckyrobotsEditor", - "Platform": "Win64", - "Configuration": "Development", - "TargetType": "Editor", - "IsTestTarget": false, - "Architecture": "x64", - "Project": "../../Luckyrobots.uproject", - "Launch": "$(EngineDir)/Binaries/Win64/UnrealEditor.exe", - "LaunchCmd": "$(EngineDir)/Binaries/Win64/UnrealEditor-Cmd.exe", - "Version": - { - "MajorVersion": 5, - "MinorVersion": 5, - "PatchVersion": 2, - "Changelist": 0, - "CompatibleChangelist": 37670630, - "IsLicenseeVersion": 0, - "IsPromotedBuild": 0, - "BranchName": "UE5", - "BuildId": "827e4aed-aff1-4853-85bd-51def0d581c9" - }, - "BuildProducts": [ - { - "Path": "$(ProjectDir)/Binaries/Win64/UnrealEditor-Luckyrobots.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Binaries/Win64/UnrealEditor-Luckyrobots.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Win64/UnrealEditor-AsyncLoadingScreen.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Win64/UnrealEditor-AsyncLoadingScreen.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor-BlueprintJson.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor-BlueprintJson.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/CPathfinding/Binaries/Win64/UnrealEditor-CPathfinding.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/CPathfinding/Binaries/Win64/UnrealEditor-CPathfinding.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/CPathfinding/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor-FileHelper.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor-FileHelper.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujoco.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujoco.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujocoEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujocoEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor-LuckyTextWrite.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor-LuckyTextWrite.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3MovieRenderPipeline/Binaries/Win64/UnrealEditor-FSR3MovieRenderPipeline.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3MovieRenderPipeline/Binaries/Win64/UnrealEditor-FSR3MovieRenderPipeline.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3MovieRenderPipeline/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12Backend.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12Backend.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Api.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Api.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Settings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Settings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3TemporalUpscaling.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3TemporalUpscaling.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolation.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolation.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolationApi.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolationApi.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXOpticalFlowApi.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXOpticalFlowApi.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXRHIBackend.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXRHIBackend.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXShared.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXShared.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-CoreUtility.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-CoreUtility.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJEditorPlugin.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJEditorPlugin.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJson.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJson.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOClient.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOClient.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOLib.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOLib.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRest.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRest.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRestEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRestEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/shaders/pcfShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/shaders/simpleLighting.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/basisCurves.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/compute.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/domeLight.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/edgeId.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/fallbackLighting.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/fallbackLightingShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/fallbackMaterialNetwork.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/fallbackVolume.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/frustumCull.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/imageShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/instancing.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/invalidMaterialNetwork.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/mesh.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/meshFaceCull.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/meshNormal.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/meshWire.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/pointId.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/points.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/ptexTexture.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/renderPass.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/renderPassShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/simpleLightingShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/surfaceHelpers.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/terminals.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/visibility.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/volume.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/textures/fallbackBlackDomeLight.png", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/codegenTemplates/schemaClass.cpp", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/codegenTemplates/schemaClass.h", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/boundingBox.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/colorChannel.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/colorCorrection.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/fullscreen.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/oitResolveImageShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/outline.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPass.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassColorAndSelectionShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassColorShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassColorWithOccludedSelectionShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassIdShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassOitOpaqueShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassOitShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassOitVolumeShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassPickingShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassShadowShader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/selection.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/skydome.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/visualize.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/textures/StinsonBeach.hdr", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/textures/StinsonBeach.tex", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/unreal/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/unreal/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/unreal/resources/unreal/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/usdGeom/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/shaders/empty.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/shaders/shaderDefs.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/usdHydra/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/usdLux/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/usdMedia/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/usdPhysics/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/usdProc/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/usdRender/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/usdRi/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/usdShade/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/shaders/previewSurface.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/shaders/primvarReader.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/shaders/shaderDefs.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/shaders/transform2d.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/shaders/uvTexture.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/shaders/skinning.glslfx", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/usdSkel/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/usdUI/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/usdVol/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/api.h", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/schemaClass.cpp", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/schemaClass.h", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/tokens.cpp", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/tokens.h", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/wrapSchemaClass.cpp", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/wrapTokens.cpp", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/generatedSchema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/usd/schema.usda", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/AgentInterface.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor-AndroidDeviceDetection.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor-AndroidDeviceDetection.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor-AndroidPlatformEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor-AndroidPlatformEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor-AndroidRuntimeSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor-AndroidRuntimeSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor-AndroidTargetPlatform.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor-AndroidTargetPlatform.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor-AndroidTargetPlatformControls.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor-AndroidTargetPlatformControls.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor-AndroidTargetPlatformSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor-AndroidTargetPlatformSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Android/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/D3D12/D3D12Core.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/D3D12/d3d12SDKLayers.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/DML/DirectML.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/EOSSDK-Win64-Shipping.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/IOS/UnrealEditor-IOSTargetPlatformSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/IOS/UnrealEditor-IOSTargetPlatformSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/IOS/UnrealEditor-TVOSTargetPlatformSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/IOS/UnrealEditor-TVOSTargetPlatformSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/IOS/UnrealEditor-VisionOSTargetPlatformSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/IOS/UnrealEditor-VisionOSTargetPlatformSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/IOS/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/LinuxArm64/UnrealEditor-LinuxArm64TargetPlatform.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/LinuxArm64/UnrealEditor-LinuxArm64TargetPlatform.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/LinuxArm64/UnrealEditor-LinuxArm64TargetPlatformControls.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/LinuxArm64/UnrealEditor-LinuxArm64TargetPlatformControls.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/LinuxArm64/UnrealEditor-LinuxArm64TargetPlatformSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/LinuxArm64/UnrealEditor-LinuxArm64TargetPlatformSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/LinuxArm64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Linux/UnrealEditor-LinuxTargetPlatform.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Linux/UnrealEditor-LinuxTargetPlatform.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Linux/UnrealEditor-LinuxTargetPlatformControls.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Linux/UnrealEditor-LinuxTargetPlatformControls.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Linux/UnrealEditor-LinuxTargetPlatformSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Linux/UnrealEditor-LinuxTargetPlatformSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/Linux/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/NNEEditorOnnxTools.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/OpenColorIO_2_3.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AIGraph.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AIGraph.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AIModule.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AIModule.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AITestSuite.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AITestSuite.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AVEncoder.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AVEncoder.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AVIWriter.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AVIWriter.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ActionableMessage.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ActionableMessage.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ActorPickerMode.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ActorPickerMode.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AddContentDialog.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AddContentDialog.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AdpcmAudioDecoder.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AdpcmAudioDecoder.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AdvancedPreviewScene.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AdvancedPreviewScene.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AdvancedWidgets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AdvancedWidgets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Advertising.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Advertising.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Analytics.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Analytics.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnalyticsET.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnalyticsET.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimGraph.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimGraph.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimGraphRuntime.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimGraphRuntime.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationBlueprintEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationBlueprintEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationBlueprintLibrary.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationBlueprintLibrary.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationDataController.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationDataController.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationEditMode.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationEditMode.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationEditorWidgets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationEditorWidgets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationModifiers.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationModifiers.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationWidgets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AnimationWidgets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AppFramework.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AppFramework.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ApplicationCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ApplicationCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AssetDefinition.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AssetDefinition.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AssetRegistry.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AssetRegistry.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AssetTagsEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AssetTagsEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AssetTools.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AssetTools.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioAnalyzer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioAnalyzer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioCaptureCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioCaptureCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioCaptureRtAudio.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioCaptureRtAudio.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioCaptureWasapi.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioCaptureWasapi.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioExtensions.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioExtensions.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioFormatADPCM.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioFormatADPCM.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioFormatBink.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioFormatBink.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioFormatOgg.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioFormatOgg.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioFormatOpus.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioFormatOpus.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioFormatRad.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioFormatRad.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioLinkCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioLinkCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioLinkEngine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioLinkEngine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioMixer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioMixer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioMixerCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioMixerCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioMixerPlatformAudioLink.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioMixerPlatformAudioLink.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioMixerWasapi.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioMixerWasapi.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioMixerXAudio2.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioMixerXAudio2.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioPlatformConfiguration.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioPlatformConfiguration.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioPlatformSupportWasapi.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioPlatformSupportWasapi.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioSettingsEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AudioSettingsEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AutomationController.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AutomationController.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AutomationDriver.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AutomationDriver.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AutomationMessages.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AutomationMessages.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AutomationTest.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AutomationTest.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AutomationWindow.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AutomationWindow.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AutomationWorker.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-AutomationWorker.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BSPUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BSPUtils.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BehaviorTreeEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BehaviorTreeEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BinkAudioDecoder.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BinkAudioDecoder.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BlueprintEditorLibrary.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BlueprintEditorLibrary.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BlueprintGraph.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BlueprintGraph.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BlueprintRuntime.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BlueprintRuntime.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Blutility.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Blutility.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BuildPatchServices.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BuildPatchServices.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BuildSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-BuildSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CEF3Utils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CEF3Utils.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CSVtoSVG.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CSVtoSVG.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CUDA.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CUDA.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Cascade.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Cascade.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Cbor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Cbor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Chaos.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Chaos.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ChaosCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ChaosCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ChaosSolverEngine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ChaosSolverEngine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ChaosVDData.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ChaosVDData.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ChaosVDRuntime.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ChaosVDRuntime.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ChaosVehiclesCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ChaosVehiclesCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ChaosVehiclesEngine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ChaosVehiclesEngine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CinematicCamera.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CinematicCamera.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClassViewer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClassViewer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClothPainter.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClothPainter.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClothingSystemEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClothingSystemEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClothingSystemEditorInterface.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClothingSystemEditorInterface.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClothingSystemRuntimeCommon.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClothingSystemRuntimeCommon.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClothingSystemRuntimeInterface.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClothingSystemRuntimeInterface.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClothingSystemRuntimeNv.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ClothingSystemRuntimeNv.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Cmd.exe", - "Type": "Executable" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Cmd.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CollectionManager.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CollectionManager.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CollisionAnalyzer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CollisionAnalyzer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CommonMenuExtensions.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CommonMenuExtensions.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ComponentVisualizers.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ComponentVisualizers.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ConfigEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ConfigEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Constraints.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Constraints.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ContentBrowser.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ContentBrowser.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ContentBrowserData.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ContentBrowserData.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CookMetadata.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CookMetadata.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CookOnTheFly.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CookOnTheFly.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CookOnTheFlyNetServer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CookOnTheFlyNetServer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CookedEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CookedEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Core.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Core.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CoreOnline.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CoreOnline.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CorePreciseFP.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CorePreciseFP.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CoreUObject.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CoreUObject.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CurveAssetEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CurveAssetEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CurveEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CurveEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CurveTableEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-CurveTableEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-D3D11RHI.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-D3D11RHI.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-D3D12RHI.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-D3D12RHI.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DataLayerEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DataLayerEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DataTableEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DataTableEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DataflowCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DataflowCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DataflowEngine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DataflowEngine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DataflowSimulation.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DataflowSimulation.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DerivedDataCache.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DerivedDataCache.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DerivedDataEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DerivedDataEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DesktopPlatform.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DesktopPlatform.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DesktopWidgets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DesktopWidgets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DetailCustomizations.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DetailCustomizations.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DeveloperSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DeveloperSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DeveloperToolSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DeveloperToolSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DeviceManager.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DeviceManager.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DeviceProfileEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DeviceProfileEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DeviceProfileServices.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DeviceProfileServices.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DirectoryWatcher.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DirectoryWatcher.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DistCurveEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DistCurveEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Documentation.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Documentation.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DrawPrimitiveDebugger.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-DrawPrimitiveDebugger.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorAnalyticsSession.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorAnalyticsSession.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorConfig.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorConfig.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorFramework.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorFramework.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorInteractiveToolsFramework.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorInteractiveToolsFramework.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorSettingsViewer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorSettingsViewer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorStyle.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorStyle.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorSubsystem.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorSubsystem.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorWidgets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EditorWidgets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Engine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Engine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EngineMessages.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EngineMessages.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EngineSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EngineSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EnvironmentLightingViewer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EnvironmentLightingViewer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EventLoop.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EventLoop.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ExternalImagePicker.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ExternalImagePicker.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EyeTracker.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-EyeTracker.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-FieldNotification.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-FieldNotification.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-FieldSystemEngine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-FieldSystemEngine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-FileUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-FileUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Foliage.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Foliage.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-FoliageEdit.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-FoliageEdit.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-FontEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-FontEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-FunctionalTesting.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-FunctionalTesting.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameProjectGeneration.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameProjectGeneration.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameplayDebugger.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameplayDebugger.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameplayDebuggerEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameplayDebuggerEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameplayMediaEncoder.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameplayMediaEncoder.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameplayTags.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameplayTags.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameplayTasks.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameplayTasks.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameplayTasksEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GameplayTasksEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GeometryCollectionEngine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GeometryCollectionEngine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GeometryCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GeometryCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GeometryFramework.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GeometryFramework.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GeometryProcessingInterfaces.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GeometryProcessingInterfaces.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GraphColor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GraphColor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GraphEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-GraphEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HTTP.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HTTP.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HTTPServer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HTTPServer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HardwareTargeting.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HardwareTargeting.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HeadMountedDisplay.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HeadMountedDisplay.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HierarchicalLODOutliner.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HierarchicalLODOutliner.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HierarchicalLODUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HierarchicalLODUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Horde.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Horde.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HotReload.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HotReload.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HttpNetworkReplayStreaming.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-HttpNetworkReplayStreaming.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-IESFile.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-IESFile.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Icmp.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Icmp.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ImageCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ImageCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ImageWrapper.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ImageWrapper.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ImageWriteQueue.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ImageWriteQueue.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InputBindingEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InputBindingEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InputCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InputCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InputDevice.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InputDevice.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InstallBundleManager.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InstallBundleManager.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InteractiveToolsFramework.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InteractiveToolsFramework.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InterchangeCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InterchangeCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InterchangeEngine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InterchangeEngine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InternationalizationSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-InternationalizationSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-IoStoreUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-IoStoreUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-IrisCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-IrisCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Json.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Json.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-JsonObjectGraph.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-JsonObjectGraph.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-JsonUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-JsonUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Kismet.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Kismet.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-KismetCompiler.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-KismetCompiler.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-KismetWidgets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-KismetWidgets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Landscape.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Landscape.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LandscapeEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LandscapeEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LandscapeEditorUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LandscapeEditorUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LauncherPlatform.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LauncherPlatform.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LauncherServices.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LauncherServices.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Layers.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Layers.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LevelEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LevelEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LevelInstanceEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LevelInstanceEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LevelSequence.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LevelSequence.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LiveCoding.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LiveCoding.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LiveLinkAnimationCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LiveLinkAnimationCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LiveLinkInterface.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LiveLinkInterface.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LiveLinkMessageBusFramework.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LiveLinkMessageBusFramework.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LocalFileNetworkReplayStreaming.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LocalFileNetworkReplayStreaming.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Localization.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Localization.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LocalizationCommandletExecution.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LocalizationCommandletExecution.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LocalizationDashboard.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LocalizationDashboard.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LocalizationService.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LocalizationService.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LogVisualizer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-LogVisualizer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MRMesh.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MRMesh.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MacTargetPlatformSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MacTargetPlatformSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MainFrame.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MainFrame.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MassEntity.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MassEntity.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MassEntityDebugger.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MassEntityDebugger.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MassEntityEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MassEntityEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MassEntityTestSuite.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MassEntityTestSuite.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MaterialBaking.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MaterialBaking.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MaterialEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MaterialEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MaterialShaderQualitySettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MaterialShaderQualitySettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MaterialUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MaterialUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MathCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MathCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Media.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Media.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MediaAssets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MediaAssets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MediaUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MediaUtils.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Merge.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Merge.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MergeActors.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MergeActors.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshBoneReduction.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshBoneReduction.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshBuilder.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshBuilder.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshBuilderCommon.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshBuilderCommon.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshConversion.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshConversion.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshConversionEngineTypes.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshConversionEngineTypes.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshDescription.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshDescription.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshMergeUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshMergeUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshPaint.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshPaint.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshReductionInterface.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshReductionInterface.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshUtilitiesCommon.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshUtilitiesCommon.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshUtilitiesEngine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MeshUtilitiesEngine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MessageLog.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MessageLog.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Messaging.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Messaging.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MessagingCommon.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MessagingCommon.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MessagingRpc.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MessagingRpc.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MetalShaderFormat.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MetalShaderFormat.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MoviePlayer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MoviePlayer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MoviePlayerProxy.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MoviePlayerProxy.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MovieScene.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MovieScene.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MovieSceneCapture.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MovieSceneCapture.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MovieSceneCaptureDialog.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MovieSceneCaptureDialog.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MovieSceneTools.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MovieSceneTools.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MovieSceneTracks.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-MovieSceneTracks.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NNE.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NNE.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NNEEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NNEEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NaniteBuilder.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NaniteBuilder.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NaniteUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NaniteUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Nanosvg.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Nanosvg.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NavigationSystem.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NavigationSystem.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Navmesh.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Navmesh.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NetCommon.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NetCommon.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NetCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NetCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NetworkFile.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NetworkFile.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NetworkFileSystem.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NetworkFileSystem.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NetworkReplayStreaming.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NetworkReplayStreaming.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Networking.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Networking.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NewLevelDialog.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NewLevelDialog.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NonRealtimeAudioRenderer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NonRealtimeAudioRenderer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NullDrv.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NullDrv.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NullNetworkReplayStreaming.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-NullNetworkReplayStreaming.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-OpenColorIOWrapper.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-OpenColorIOWrapper.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-OpenGLDrv.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-OpenGLDrv.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-OpusAudioDecoder.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-OpusAudioDecoder.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-OutputLog.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-OutputLog.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Overlay.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Overlay.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-OverlayEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-OverlayEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PIEPreviewDeviceProfileSelector.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PIEPreviewDeviceProfileSelector.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PIEPreviewDeviceSpecification.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PIEPreviewDeviceSpecification.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PListEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PListEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PackagesDialog.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PackagesDialog.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PacketHandler.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PacketHandler.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PakFile.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PakFile.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PakFileUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PakFileUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PerfCounters.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PerfCounters.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Persona.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Persona.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PhysicsAssetEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PhysicsAssetEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PhysicsCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PhysicsCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PhysicsUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PhysicsUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PinnedCommandList.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PinnedCommandList.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PixelInspectorModule.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PixelInspectorModule.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PlacementMode.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PlacementMode.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PortalMessages.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PortalMessages.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PortalProxies.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PortalProxies.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PortalRpc.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PortalRpc.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PortalServices.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PortalServices.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PreLoadScreen.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PreLoadScreen.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ProfileVisualizer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ProfileVisualizer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ProjectLauncher.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ProjectLauncher.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ProjectSettingsViewer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ProjectSettingsViewer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ProjectTargetPlatformEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ProjectTargetPlatformEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Projects.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Projects.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PropertyEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PropertyEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PropertyPath.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-PropertyPath.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-QuadricMeshReduction.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-QuadricMeshReduction.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RHI.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RHI.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RHICore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RHICore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RSA.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RSA.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RadAudioDecoder.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RadAudioDecoder.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RawMesh.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RawMesh.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RealtimeProfiler.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RealtimeProfiler.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ReliabilityHandlerComponent.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ReliabilityHandlerComponent.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RenderCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RenderCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RenderResourceViewer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RenderResourceViewer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Renderer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Renderer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RewindDebuggerInterface.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-RewindDebuggerInterface.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SSL.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SSL.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SandboxFile.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SandboxFile.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SceneDepthPickerMode.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SceneDepthPickerMode.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SceneOutliner.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SceneOutliner.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ScreenShotComparison.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ScreenShotComparison.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ScreenShotComparisonTools.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ScreenShotComparisonTools.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ScriptDisassembler.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ScriptDisassembler.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ScriptableEditorWidgets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ScriptableEditorWidgets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SequenceRecorder.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SequenceRecorder.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Sequencer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Sequencer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SequencerCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SequencerCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SequencerWidgets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SequencerWidgets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Serialization.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Serialization.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SerializedRecorderInterface.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SerializedRecorderInterface.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SessionFrontend.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SessionFrontend.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SessionMessages.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SessionMessages.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SessionServices.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SessionServices.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Settings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Settings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SettingsEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SettingsEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ShaderCompilerCommon.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ShaderCompilerCommon.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ShaderFormatD3D.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ShaderFormatD3D.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ShaderFormatOpenGL.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ShaderFormatOpenGL.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ShaderFormatVectorVM.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ShaderFormatVectorVM.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ShaderPreprocessor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ShaderPreprocessor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SharedSettingsWidgets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SharedSettingsWidgets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SignalProcessing.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SignalProcessing.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SkeletalMeshDescription.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SkeletalMeshDescription.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SkeletalMeshEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SkeletalMeshEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SkeletalMeshUtilitiesCommon.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SkeletalMeshUtilitiesCommon.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SkeletonEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SkeletonEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Slate.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Slate.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SlateCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SlateCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SlateNullRenderer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SlateNullRenderer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SlateRHIRenderer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SlateRHIRenderer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SlateReflector.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SlateReflector.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Sockets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Sockets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SoundFieldRendering.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SoundFieldRendering.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SourceCodeAccess.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SourceCodeAccess.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SourceControl.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SourceControl.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SourceControlWindowExtender.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SourceControlWindowExtender.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SourceControlWindows.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SourceControlWindows.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SparseVolumeTexture.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SparseVolumeTexture.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StaticMeshDescription.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StaticMeshDescription.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StaticMeshEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StaticMeshEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StatsViewer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StatsViewer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StatusBar.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StatusBar.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StorageServerClient.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StorageServerClient.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StorageServerClientDebug.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StorageServerClientDebug.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StreamingFile.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StreamingFile.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StreamingPauseRendering.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StreamingPauseRendering.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StringTableEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StringTableEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StructUtilsEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StructUtilsEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StructUtilsTestSuite.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StructUtilsTestSuite.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StructViewer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-StructViewer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SubobjectDataInterface.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SubobjectDataInterface.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SubobjectEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SubobjectEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SwarmInterface.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SwarmInterface.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SynthBenchmark.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-SynthBenchmark.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TargetDeviceServices.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TargetDeviceServices.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TargetPlatform.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TargetPlatform.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TelemetryUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TelemetryUtils.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureBuild.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureBuild.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureBuildUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureBuildUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureCompressor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureCompressor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureFormat.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureFormat.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureFormatASTC.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureFormatASTC.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureFormatDXT.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureFormatDXT.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureFormatETC2.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureFormatETC2.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureFormatIntelISPCTexComp.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureFormatIntelISPCTexComp.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureFormatUncompressed.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureFormatUncompressed.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureUtilitiesCommon.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TextureUtilitiesCommon.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TimeManagement.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TimeManagement.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ToolMenus.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ToolMenus.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ToolMenusEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ToolMenusEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ToolWidgets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ToolWidgets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceAnalysis.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceAnalysis.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceInsights.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceInsights.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceInsightsCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceInsightsCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceInsightsFrontend.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceInsightsFrontend.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceLog.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceLog.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceServices.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceServices.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceTools.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TraceTools.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TranslationEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TranslationEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TreeMap.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TreeMap.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TurnkeyIO.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TurnkeyIO.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TurnkeySupport.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TurnkeySupport.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TypedElementFramework.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TypedElementFramework.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TypedElementRuntime.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-TypedElementRuntime.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UATHelper.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UATHelper.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UELibSampleRate.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UELibSampleRate.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UMG.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UMG.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UMGEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UMGEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UbaCoordinatorHorde.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UbaCoordinatorHorde.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UncontrolledChangelists.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UncontrolledChangelists.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UndoHistory.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UndoHistory.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UndoHistoryEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UndoHistoryEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UniversalObjectLocator.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UniversalObjectLocator.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UniversalObjectLocatorEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UniversalObjectLocatorEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UnrealEd.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UnrealEd.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UnrealEdMessages.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UnrealEdMessages.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UnsavedAssetsTracker.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-UnsavedAssetsTracker.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VREditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VREditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VectorVM.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VectorVM.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ViewportInteraction.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ViewportInteraction.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ViewportSnapping.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-ViewportSnapping.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VirtualFileCache.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VirtualFileCache.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VirtualTexturingEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VirtualTexturingEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Virtualization.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Virtualization.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VirtualizationEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VirtualizationEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VisualGraphUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VisualGraphUtils.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Voice.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Voice.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VorbisAudioDecoder.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VorbisAudioDecoder.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Voronoi.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Voronoi.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VulkanRHI.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VulkanRHI.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VulkanShaderFormat.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-VulkanShaderFormat.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WebBrowser.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WebBrowser.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WidgetCarousel.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WidgetCarousel.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WidgetRegistration.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WidgetRegistration.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WindowsMMDeviceEnumeration.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WindowsMMDeviceEnumeration.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WindowsPlatformEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WindowsPlatformEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WindowsPlatformFeatures.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WindowsPlatformFeatures.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WindowsTargetPlatform.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WindowsTargetPlatform.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WindowsTargetPlatformControls.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WindowsTargetPlatformControls.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WindowsTargetPlatformSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WindowsTargetPlatformSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WorkspaceMenuStructure.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WorkspaceMenuStructure.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WorldBrowser.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WorldBrowser.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WorldPartitionEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-WorldPartitionEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-XmlParser.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-XmlParser.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Zen.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor-Zen.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor.exe", - "Type": "Executable" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/UnrealEditor.version", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/amd_fidelityfx_dx12.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_atomic-mt-x64.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_chrono-mt-x64.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_filesystem-mt-x64.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_iostreams-mt-x64.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_program_options-mt-x64.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_python311-mt-x64.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_regex-mt-x64.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_system-mt-x64.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_thread-mt-x64.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/embree3.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/hdStorm.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/libfbxsdk.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/mujoco.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.10.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.11.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.12.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.5.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.6.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.7.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.8.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.9.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/python311.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/sdrGlslfx.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/tbb.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/tbb.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/tbb12.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/tbbmalloc.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/tbbmalloc.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usdAbc.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usdShaders.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_ar.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_arch.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_cameraUtil.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_garch.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_geomUtil.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_gf.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_glf.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hd.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hdGp.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hdMtlx.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hdSt.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hdar.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hdsi.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hdx.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hf.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hgi.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hgiGL.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hgiInterop.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hio.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_js.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_kind.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_ndr.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_pcp.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_plug.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_pxOsd.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_sdf.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_sdr.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_tf.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_trace.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_ts.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usd.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdAppUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdBakeMtlx.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdGeom.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdHydra.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdImaging.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdImagingGL.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdLux.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdMedia.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdMtlx.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdPhysics.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdProc.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdProcImaging.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdRender.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdRi.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdRiPxrImaging.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdShade.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdSkel.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdSkelImaging.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdUI.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdVol.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdVolImaging.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_vt.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_work.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Win64/UnrealEditor-Paper2D.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Win64/UnrealEditor-Paper2D.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Win64/UnrealEditor-Paper2DEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Win64/UnrealEditor-Paper2DEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Win64/UnrealEditor-PaperSpriteSheetImporter.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Win64/UnrealEditor-PaperSpriteSheetImporter.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Win64/UnrealEditor-PaperTiledImporter.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Win64/UnrealEditor-PaperTiledImporter.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Win64/UnrealEditor-SmartSnapping.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Win64/UnrealEditor-SmartSnapping.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/AI/AISupport/Binaries/Win64/UnrealEditor-AISupportModule.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/AI/AISupport/Binaries/Win64/UnrealEditor-AISupportModule.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/AI/AISupport/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/AI/EnvironmentQueryEditor/Binaries/Win64/UnrealEditor-EnvironmentQueryEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/AI/EnvironmentQueryEditor/Binaries/Win64/UnrealEditor-EnvironmentQueryEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/AI/EnvironmentQueryEditor/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ACLPlugin/Binaries/Win64/UnrealEditor-ACLPlugin.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ACLPlugin/Binaries/Win64/UnrealEditor-ACLPlugin.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ACLPlugin/Binaries/Win64/UnrealEditor-ACLPluginEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ACLPlugin/Binaries/Win64/UnrealEditor-ACLPluginEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ACLPlugin/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationData/Binaries/Win64/UnrealEditor-AnimationData.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationData/Binaries/Win64/UnrealEditor-AnimationData.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationData/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationModifierLibrary/Binaries/Win64/UnrealEditor-AnimationModifierLibrary.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationModifierLibrary/Binaries/Win64/UnrealEditor-AnimationModifierLibrary.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationModifierLibrary/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/BlendSpaceMotionAnalysis/Binaries/Win64/UnrealEditor-BlendSpaceMotionAnalysis.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/BlendSpaceMotionAnalysis/Binaries/Win64/UnrealEditor-BlendSpaceMotionAnalysis.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/BlendSpaceMotionAnalysis/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRigSpline/Binaries/Win64/UnrealEditor-ControlRigSpline.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRigSpline/Binaries/Win64/UnrealEditor-ControlRigSpline.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRigSpline/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/Binaries/Win64/UnrealEditor-ControlRig.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/Binaries/Win64/UnrealEditor-ControlRig.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/Binaries/Win64/UnrealEditor-ControlRigDeveloper.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/Binaries/Win64/UnrealEditor-ControlRigDeveloper.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/Binaries/Win64/UnrealEditor-ControlRigEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/Binaries/Win64/UnrealEditor-ControlRigEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Win64/UnrealEditor-OptimusCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Win64/UnrealEditor-OptimusCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Win64/UnrealEditor-OptimusDeveloper.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Win64/UnrealEditor-OptimusDeveloper.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Win64/UnrealEditor-OptimusEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Win64/UnrealEditor-OptimusEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Win64/UnrealEditor-OptimusSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Win64/UnrealEditor-OptimusSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/Binaries/Win64/UnrealEditor-IKRig.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/Binaries/Win64/UnrealEditor-IKRig.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/Binaries/Win64/UnrealEditor-IKRigDeveloper.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/Binaries/Win64/UnrealEditor-IKRigDeveloper.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/Binaries/Win64/UnrealEditor-IKRigEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/Binaries/Win64/UnrealEditor-IKRigEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLink.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLink.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLinkComponents.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLinkComponents.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLinkEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLinkEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLinkGraphNode.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLinkGraphNode.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLinkMovieScene.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLinkMovieScene.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLinkMultiUser.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLinkMultiUser.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLinkSequencer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor-LiveLinkSequencer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Win64/UnrealEditor-RigLogicDeveloper.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Win64/UnrealEditor-RigLogicDeveloper.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Win64/UnrealEditor-RigLogicEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Win64/UnrealEditor-RigLogicEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Win64/UnrealEditor-RigLogicLib.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Win64/UnrealEditor-RigLogicLib.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Win64/UnrealEditor-RigLogicLibTest.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Win64/UnrealEditor-RigLogicLibTest.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Win64/UnrealEditor-RigLogicModule.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Win64/UnrealEditor-RigLogicModule.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Bridge/Binaries/Win64/UnrealEditor-Bridge.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Bridge/Binaries/Win64/UnrealEditor-Bridge.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Bridge/Binaries/Win64/UnrealEditor-MegascansPlugin.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Bridge/Binaries/Win64/UnrealEditor-MegascansPlugin.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Bridge/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/CameraShakePreviewer/Binaries/Win64/UnrealEditor-CameraShakePreviewer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/CameraShakePreviewer/Binaries/Win64/UnrealEditor-CameraShakePreviewer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/CameraShakePreviewer/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/EngineCameras/Binaries/Win64/UnrealEditor-EngineCameras.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/EngineCameras/Binaries/Win64/UnrealEditor-EngineCameras.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/EngineCameras/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/Binaries/Win64/UnrealEditor-GameplayCameras.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/Binaries/Win64/UnrealEditor-GameplayCameras.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/Binaries/Win64/UnrealEditor-GameplayCamerasEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/Binaries/Win64/UnrealEditor-GameplayCamerasEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/Binaries/Win64/UnrealEditor-GameplayCamerasUncookedOnly.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/Binaries/Win64/UnrealEditor-GameplayCamerasUncookedOnly.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosClothAsset/Binaries/Win64/UnrealEditor-ChaosClothAsset.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosClothAsset/Binaries/Win64/UnrealEditor-ChaosClothAsset.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosClothAsset/Binaries/Win64/UnrealEditor-ChaosClothAssetEngine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosClothAsset/Binaries/Win64/UnrealEditor-ChaosClothAssetEngine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosClothAsset/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosCloth/Binaries/Win64/UnrealEditor-ChaosCloth.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosCloth/Binaries/Win64/UnrealEditor-ChaosCloth.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosCloth/Binaries/Win64/UnrealEditor-ChaosClothEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosCloth/Binaries/Win64/UnrealEditor-ChaosClothEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosCloth/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosVD/Binaries/Win64/UnrealEditor-ChaosVD.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosVD/Binaries/Win64/UnrealEditor-ChaosVD.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosVD/Binaries/Win64/UnrealEditor-ChaosVDBlueprint.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosVD/Binaries/Win64/UnrealEditor-ChaosVDBlueprint.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosVD/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/CmdLinkServer/Binaries/Win64/UnrealEditor-CmdLinkServer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/CmdLinkServer/Binaries/Win64/UnrealEditor-CmdLinkServer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/CmdLinkServer/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Compositing/OpenColorIO/Binaries/Win64/UnrealEditor-OpenColorIO.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Compositing/OpenColorIO/Binaries/Win64/UnrealEditor-OpenColorIO.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Compositing/OpenColorIO/Binaries/Win64/UnrealEditor-OpenColorIOEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Compositing/OpenColorIO/Binaries/Win64/UnrealEditor-OpenColorIOEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Compositing/OpenColorIO/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Compression/OodleNetwork/Binaries/Win64/UnrealEditor-OodleNetworkHandlerComponent.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Compression/OodleNetwork/Binaries/Win64/UnrealEditor-OodleNetworkHandlerComponent.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Compression/OodleNetwork/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/AnimationSharing/Binaries/Win64/UnrealEditor-AnimationSharing.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/AnimationSharing/Binaries/Win64/UnrealEditor-AnimationSharing.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/AnimationSharing/Binaries/Win64/UnrealEditor-AnimationSharingEd.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/AnimationSharing/Binaries/Win64/UnrealEditor-AnimationSharingEd.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/AnimationSharing/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/CLionSourceCodeAccess/Binaries/Win64/UnrealEditor-CLionSourceCodeAccess.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/CLionSourceCodeAccess/Binaries/Win64/UnrealEditor-CLionSourceCodeAccess.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/CLionSourceCodeAccess/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Win64/UnrealEditor-Concert.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Win64/UnrealEditor-Concert.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Win64/UnrealEditor-ConcertClient.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Win64/UnrealEditor-ConcertClient.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Win64/UnrealEditor-ConcertServer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Win64/UnrealEditor-ConcertServer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Win64/UnrealEditor-ConcertTransport.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Win64/UnrealEditor-ConcertTransport.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Binaries/Win64/UnrealEditor-ConcertSyncClient.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Binaries/Win64/UnrealEditor-ConcertSyncClient.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Binaries/Win64/UnrealEditor-ConcertSyncCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Binaries/Win64/UnrealEditor-ConcertSyncCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertUI/ConcertSharedSlate/Binaries/Win64/UnrealEditor-ConcertSharedSlate.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertUI/ConcertSharedSlate/Binaries/Win64/UnrealEditor-ConcertSharedSlate.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertUI/ConcertSharedSlate/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/DumpGPUServices/Binaries/Win64/UnrealEditor-DumpGPUServices.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/DumpGPUServices/Binaries/Win64/UnrealEditor-DumpGPUServices.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/DumpGPUServices/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/GitSourceControl/Binaries/Win64/UnrealEditor-GitSourceControl.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/GitSourceControl/Binaries/Win64/UnrealEditor-GitSourceControl.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/GitSourceControl/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/N10XSourceCodeAccess/Binaries/Win64/UnrealEditor-N10XSourceCodeAccess.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/N10XSourceCodeAccess/Binaries/Win64/UnrealEditor-N10XSourceCodeAccess.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/N10XSourceCodeAccess/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PerforceSourceControl/Binaries/Win64/UnrealEditor-PerforceSourceControl.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PerforceSourceControl/Binaries/Win64/UnrealEditor-PerforceSourceControl.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PerforceSourceControl/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PixWinPlugin/Binaries/Win64/UnrealEditor-PixWinPlugin.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PixWinPlugin/Binaries/Win64/UnrealEditor-PixWinPlugin.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PixWinPlugin/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PlasticSourceControl/Binaries/Win64/UnrealEditor-PlasticSourceControl.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PlasticSourceControl/Binaries/Win64/UnrealEditor-PlasticSourceControl.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PlasticSourceControl/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PluginUtils/Binaries/Win64/UnrealEditor-PluginUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PluginUtils/Binaries/Win64/UnrealEditor-PluginUtils.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PluginUtils/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PropertyAccessNode/Binaries/Win64/UnrealEditor-PropertyAccessNode.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PropertyAccessNode/Binaries/Win64/UnrealEditor-PropertyAccessNode.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PropertyAccessNode/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/RenderDocPlugin/Binaries/Win64/UnrealEditor-RenderDocPlugin.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/RenderDocPlugin/Binaries/Win64/UnrealEditor-RenderDocPlugin.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/RenderDocPlugin/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/RiderSourceCodeAccess/Binaries/Win64/UnrealEditor-RiderSourceCodeAccess.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/RiderSourceCodeAccess/Binaries/Win64/UnrealEditor-RiderSourceCodeAccess.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/RiderSourceCodeAccess/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/SubversionSourceControl/Binaries/Win64/UnrealEditor-SubversionSourceControl.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/SubversionSourceControl/Binaries/Win64/UnrealEditor-SubversionSourceControl.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/SubversionSourceControl/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/TextureFormatOodle/Binaries/Win64/UnrealEditor-TextureFormatOodle.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/TextureFormatOodle/Binaries/Win64/UnrealEditor-TextureFormatOodle.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/TextureFormatOodle/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/UObjectPlugin/Binaries/Win64/UnrealEditor-UObjectPlugin.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/UObjectPlugin/Binaries/Win64/UnrealEditor-UObjectPlugin.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/UObjectPlugin/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/VisualStudioCodeSourceCodeAccess/Binaries/Win64/UnrealEditor-VisualStudioCodeSourceCodeAccess.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/VisualStudioCodeSourceCodeAccess/Binaries/Win64/UnrealEditor-VisualStudioCodeSourceCodeAccess.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/VisualStudioCodeSourceCodeAccess/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/VisualStudioSourceCodeAccess/Binaries/Win64/UnrealEditor-VisualStudioSourceCodeAccess.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/VisualStudioSourceCodeAccess/Binaries/Win64/UnrealEditor-VisualStudioSourceCodeAccess.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/VisualStudioSourceCodeAccess/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/AssetManagerEditor/Binaries/Win64/UnrealEditor-AssetManagerEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/AssetManagerEditor/Binaries/Win64/UnrealEditor-AssetManagerEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/AssetManagerEditor/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/BlueprintHeaderView/Binaries/Win64/UnrealEditor-BlueprintHeaderView.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/BlueprintHeaderView/Binaries/Win64/UnrealEditor-BlueprintHeaderView.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/BlueprintHeaderView/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ChangelistReview/Binaries/Win64/UnrealEditor-ChangelistReview.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ChangelistReview/Binaries/Win64/UnrealEditor-ChangelistReview.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ChangelistReview/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ColorGrading/Binaries/Win64/UnrealEditor-ColorGradingEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ColorGrading/Binaries/Win64/UnrealEditor-ColorGradingEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ColorGrading/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ConsoleVariablesEditor/Binaries/Win64/UnrealEditor-ConsoleVariablesEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ConsoleVariablesEditor/Binaries/Win64/UnrealEditor-ConsoleVariablesEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ConsoleVariablesEditor/Binaries/Win64/UnrealEditor-ConsoleVariablesEditorRuntime.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ConsoleVariablesEditor/Binaries/Win64/UnrealEditor-ConsoleVariablesEditorRuntime.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ConsoleVariablesEditor/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserAssetDataSource/Binaries/Win64/UnrealEditor-ContentBrowserAssetDataSource.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserAssetDataSource/Binaries/Win64/UnrealEditor-ContentBrowserAssetDataSource.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserAssetDataSource/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserClassDataSource/Binaries/Win64/UnrealEditor-ContentBrowserClassDataSource.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserClassDataSource/Binaries/Win64/UnrealEditor-ContentBrowserClassDataSource.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserClassDataSource/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserFileDataSource/Binaries/Win64/UnrealEditor-ContentBrowserFileDataSource.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserFileDataSource/Binaries/Win64/UnrealEditor-ContentBrowserFileDataSource.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserFileDataSource/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CryptoKeys/Binaries/Win64/UnrealEditor-CryptoKeys.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CryptoKeys/Binaries/Win64/UnrealEditor-CryptoKeys.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CryptoKeys/Binaries/Win64/UnrealEditor-CryptoKeysOpenSSL.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CryptoKeys/Binaries/Win64/UnrealEditor-CryptoKeysOpenSSL.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CryptoKeys/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CurveEditorTools/Binaries/Win64/UnrealEditor-CurveEditorTools.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CurveEditorTools/Binaries/Win64/UnrealEditor-CurveEditorTools.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CurveEditorTools/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/DataValidation/Binaries/Win64/UnrealEditor-DataValidation.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/DataValidation/Binaries/Win64/UnrealEditor-DataValidation.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/DataValidation/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorDebugTools/Binaries/Win64/UnrealEditor-EditorDebugTools.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorDebugTools/Binaries/Win64/UnrealEditor-EditorDebugTools.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorDebugTools/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorScriptingUtilities/Binaries/Win64/UnrealEditor-EditorScriptingUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorScriptingUtilities/Binaries/Win64/UnrealEditor-EditorScriptingUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorScriptingUtilities/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EngineAssetDefinitions/Binaries/Win64/UnrealEditor-EngineAssetDefinitions.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EngineAssetDefinitions/Binaries/Win64/UnrealEditor-EngineAssetDefinitions.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EngineAssetDefinitions/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/FacialAnimation/Binaries/Win64/UnrealEditor-FacialAnimation.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/FacialAnimation/Binaries/Win64/UnrealEditor-FacialAnimation.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/FacialAnimation/Binaries/Win64/UnrealEditor-FacialAnimationEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/FacialAnimation/Binaries/Win64/UnrealEditor-FacialAnimationEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/FacialAnimation/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GameplayTagsEditor/Binaries/Win64/UnrealEditor-GameplayTagsEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GameplayTagsEditor/Binaries/Win64/UnrealEditor-GameplayTagsEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GameplayTagsEditor/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/Binaries/Win64/UnrealEditor-BspMode.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/Binaries/Win64/UnrealEditor-BspMode.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/Binaries/Win64/UnrealEditor-GeometryMode.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/Binaries/Win64/UnrealEditor-GeometryMode.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/Binaries/Win64/UnrealEditor-TextureAlignMode.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/Binaries/Win64/UnrealEditor-TextureAlignMode.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/Localization/PortableObjectFileDataSource/Binaries/Win64/UnrealEditor-PortableObjectFileDataSource.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/Localization/PortableObjectFileDataSource/Binaries/Win64/UnrealEditor-PortableObjectFileDataSource.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/Localization/PortableObjectFileDataSource/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MaterialAnalyzer/Binaries/Win64/UnrealEditor-MaterialAnalyzer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MaterialAnalyzer/Binaries/Win64/UnrealEditor-MaterialAnalyzer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MaterialAnalyzer/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MeshLODToolset/Binaries/Win64/UnrealEditor-MeshLODToolset.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MeshLODToolset/Binaries/Win64/UnrealEditor-MeshLODToolset.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MeshLODToolset/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MobileLauncherProfileWizard/Binaries/Win64/UnrealEditor-MobileLauncherProfileWizard.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MobileLauncherProfileWizard/Binaries/Win64/UnrealEditor-MobileLauncherProfileWizard.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MobileLauncherProfileWizard/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ModelingToolsEditorMode/Binaries/Win64/UnrealEditor-ModelingToolsEditorMode.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ModelingToolsEditorMode/Binaries/Win64/UnrealEditor-ModelingToolsEditorMode.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ModelingToolsEditorMode/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/LightMixer/Binaries/Win64/UnrealEditor-LightMixer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/LightMixer/Binaries/Win64/UnrealEditor-LightMixer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/LightMixer/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/ObjectMixer/Binaries/Win64/UnrealEditor-ObjectMixerEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/ObjectMixer/Binaries/Win64/UnrealEditor-ObjectMixerEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/ObjectMixer/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/PluginBrowser/Binaries/Win64/UnrealEditor-PluginBrowser.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/PluginBrowser/Binaries/Win64/UnrealEditor-PluginBrowser.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/PluginBrowser/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ProxyLODPlugin/Binaries/Win64/UnrealEditor-ProxyLODMeshReduction.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ProxyLODPlugin/Binaries/Win64/UnrealEditor-ProxyLODMeshReduction.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ProxyLODPlugin/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SequencerAnimTools/Binaries/Win64/UnrealEditor-SequencerAnimTools.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SequencerAnimTools/Binaries/Win64/UnrealEditor-SequencerAnimTools.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SequencerAnimTools/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SpeedTreeImporter/Binaries/Win64/UnrealEditor-SpeedTreeImporter.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SpeedTreeImporter/Binaries/Win64/UnrealEditor-SpeedTreeImporter.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SpeedTreeImporter/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/StylusInput/Binaries/Win64/UnrealEditor-StylusInput.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/StylusInput/Binaries/Win64/UnrealEditor-StylusInput.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/StylusInput/Binaries/Win64/UnrealEditor-StylusInputDebugWidget.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/StylusInput/Binaries/Win64/UnrealEditor-StylusInputDebugWidget.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/StylusInput/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UMGWidgetPreview/Binaries/Win64/UnrealEditor-UMGWidgetPreview.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UMGWidgetPreview/Binaries/Win64/UnrealEditor-UMGWidgetPreview.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UMGWidgetPreview/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/Binaries/Win64/UnrealEditor-UVEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/Binaries/Win64/UnrealEditor-UVEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/Binaries/Win64/UnrealEditor-UVEditorTools.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/Binaries/Win64/UnrealEditor-UVEditorTools.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/Binaries/Win64/UnrealEditor-UVEditorToolsEditorOnly.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/Binaries/Win64/UnrealEditor-UVEditorToolsEditorOnly.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/WorldPartitionHLODUtilities/Binaries/Win64/UnrealEditor-WorldPartitionHLODUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/WorldPartitionHLODUtilities/Binaries/Win64/UnrealEditor-WorldPartitionHLODUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/WorldPartitionHLODUtilities/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/Binaries/Win64/UnrealEditor-EnhancedInput.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/Binaries/Win64/UnrealEditor-EnhancedInput.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/Binaries/Win64/UnrealEditor-InputBlueprintNodes.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/Binaries/Win64/UnrealEditor-InputBlueprintNodes.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/Binaries/Win64/UnrealEditor-InputEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/Binaries/Win64/UnrealEditor-InputEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/DatasmithContent/Binaries/Win64/UnrealEditor-DatasmithContent.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/DatasmithContent/Binaries/Win64/UnrealEditor-DatasmithContent.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/DatasmithContent/Binaries/Win64/UnrealEditor-DatasmithContentEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/DatasmithContent/Binaries/Win64/UnrealEditor-DatasmithContentEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/DatasmithContent/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/GLTFExporter/Binaries/Win64/UnrealEditor-GLTFExporter.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/GLTFExporter/Binaries/Win64/UnrealEditor-GLTFExporter.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/GLTFExporter/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManagerContent/Binaries/Win64/UnrealEditor-VariantManagerContent.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManagerContent/Binaries/Win64/UnrealEditor-VariantManagerContent.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManagerContent/Binaries/Win64/UnrealEditor-VariantManagerContentEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManagerContent/Binaries/Win64/UnrealEditor-VariantManagerContentEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManagerContent/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManager/Binaries/Win64/UnrealEditor-VariantManager.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManager/Binaries/Win64/UnrealEditor-VariantManager.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManager/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AdvancedRenamer/Binaries/Win64/UnrealEditor-AdvancedRenamer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AdvancedRenamer/Binaries/Win64/UnrealEditor-AdvancedRenamer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AdvancedRenamer/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Animation/SkeletalMeshModelingTools/Binaries/Win64/UnrealEditor-SkeletalMeshModelingTools.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Animation/SkeletalMeshModelingTools/Binaries/Win64/UnrealEditor-SkeletalMeshModelingTools.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Animation/SkeletalMeshModelingTools/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AutomationUtils/Binaries/Win64/UnrealEditor-AutomationUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AutomationUtils/Binaries/Win64/UnrealEditor-AutomationUtils.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AutomationUtils/Binaries/Win64/UnrealEditor-AutomationUtilsEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AutomationUtils/Binaries/Win64/UnrealEditor-AutomationUtilsEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AutomationUtils/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/BackChannel/Binaries/Win64/UnrealEditor-BackChannel.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/BackChannel/Binaries/Win64/UnrealEditor-BackChannel.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/BackChannel/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosCaching/Binaries/Win64/UnrealEditor-ChaosCaching.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosCaching/Binaries/Win64/UnrealEditor-ChaosCaching.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosCaching/Binaries/Win64/UnrealEditor-ChaosCachingEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosCaching/Binaries/Win64/UnrealEditor-ChaosCachingEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosCaching/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosEditor/Binaries/Win64/UnrealEditor-FractureEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosEditor/Binaries/Win64/UnrealEditor-FractureEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosEditor/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosNiagara/Binaries/Win64/UnrealEditor-ChaosNiagara.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosNiagara/Binaries/Win64/UnrealEditor-ChaosNiagara.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosNiagara/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosSolverPlugin/Binaries/Win64/UnrealEditor-ChaosSolverEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosSolverPlugin/Binaries/Win64/UnrealEditor-ChaosSolverEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosSolverPlugin/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosUserDataPT/Binaries/Win64/UnrealEditor-ChaosUserDataPT.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosUserDataPT/Binaries/Win64/UnrealEditor-ChaosUserDataPT.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosUserDataPT/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosVehiclesPlugin/Binaries/Win64/UnrealEditor-ChaosVehicles.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosVehiclesPlugin/Binaries/Win64/UnrealEditor-ChaosVehicles.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosVehiclesPlugin/Binaries/Win64/UnrealEditor-ChaosVehiclesEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosVehiclesPlugin/Binaries/Win64/UnrealEditor-ChaosVehiclesEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosVehiclesPlugin/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterAI/Binaries/Win64/UnrealEditor-CharacterAI.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterAI/Binaries/Win64/UnrealEditor-CharacterAI.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterAI/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterFXEditor/BaseCharacterFXEditor/Binaries/Win64/UnrealEditor-BaseCharacterFXEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterFXEditor/BaseCharacterFXEditor/Binaries/Win64/UnrealEditor-BaseCharacterFXEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterFXEditor/BaseCharacterFXEditor/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CineCameraSceneCapture/Binaries/Win64/UnrealEditor-CineCameraSceneCapture.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CineCameraSceneCapture/Binaries/Win64/UnrealEditor-CineCameraSceneCapture.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CineCameraSceneCapture/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Compositing/HoldoutComposite/Binaries/Win64/UnrealEditor-HoldoutComposite.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Compositing/HoldoutComposite/Binaries/Win64/UnrealEditor-HoldoutComposite.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Compositing/HoldoutComposite/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Win64/UnrealEditor-DataflowAssetTools.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Win64/UnrealEditor-DataflowAssetTools.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Win64/UnrealEditor-DataflowEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Win64/UnrealEditor-DataflowEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Win64/UnrealEditor-DataflowEnginePlugin.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Win64/UnrealEditor-DataflowEnginePlugin.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Win64/UnrealEditor-DataflowNodes.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Win64/UnrealEditor-DataflowNodes.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorDataStorage/Binaries/Win64/UnrealEditor-TedsCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorDataStorage/Binaries/Win64/UnrealEditor-TedsCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorDataStorage/Binaries/Win64/UnrealEditor-TedsUI.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorDataStorage/Binaries/Win64/UnrealEditor-TedsUI.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorDataStorage/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorPerformance/Binaries/Win64/UnrealEditor-EditorPerformance.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorPerformance/Binaries/Win64/UnrealEditor-EditorPerformance.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorPerformance/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorTelemetry/Binaries/Win64/UnrealEditor-EditorTelemetry.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorTelemetry/Binaries/Win64/UnrealEditor-EditorTelemetry.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorTelemetry/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Fracture/Binaries/Win64/UnrealEditor-FractureEngine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Fracture/Binaries/Win64/UnrealEditor-FractureEngine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Fracture/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/FullBodyIK/Binaries/Win64/UnrealEditor-FullBodyIK.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/FullBodyIK/Binaries/Win64/UnrealEditor-FullBodyIK.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/FullBodyIK/Binaries/Win64/UnrealEditor-PBIK.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/FullBodyIK/Binaries/Win64/UnrealEditor-PBIK.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/FullBodyIK/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Win64/UnrealEditor-GeometryCollectionDepNodes.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Win64/UnrealEditor-GeometryCollectionDepNodes.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Win64/UnrealEditor-GeometryCollectionEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Win64/UnrealEditor-GeometryCollectionEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Win64/UnrealEditor-GeometryCollectionNodes.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Win64/UnrealEditor-GeometryCollectionNodes.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Win64/UnrealEditor-GeometryCollectionSequencer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Win64/UnrealEditor-GeometryCollectionSequencer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Win64/UnrealEditor-GeometryCollectionTracks.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Win64/UnrealEditor-GeometryCollectionTracks.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/Binaries/Win64/UnrealEditor-GeometryFlowCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/Binaries/Win64/UnrealEditor-GeometryFlowCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/Binaries/Win64/UnrealEditor-GeometryFlowMeshProcessing.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/Binaries/Win64/UnrealEditor-GeometryFlowMeshProcessing.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/Binaries/Win64/UnrealEditor-GeometryFlowMeshProcessingEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/Binaries/Win64/UnrealEditor-GeometryFlowMeshProcessingEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/LocalizableMessage/Binaries/Win64/UnrealEditor-LocalizableMessage.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/LocalizableMessage/Binaries/Win64/UnrealEditor-LocalizableMessage.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/LocalizableMessage/Binaries/Win64/UnrealEditor-LocalizableMessageBlueprint.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/LocalizableMessage/Binaries/Win64/UnrealEditor-LocalizableMessageBlueprint.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/LocalizableMessage/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor-GeometryProcessingAdapters.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor-GeometryProcessingAdapters.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor-MeshModelingToolsEditorOnlyExp.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor-MeshModelingToolsEditorOnlyExp.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor-MeshModelingToolsExp.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor-MeshModelingToolsExp.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor-ModelingEditorUI.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor-ModelingEditorUI.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor-ModelingUI.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor-ModelingUI.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor-SkeletalMeshModifiers.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor-SkeletalMeshModifiers.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MetaHuman/MetaHumanSDK/Binaries/Win64/UnrealEditor-MetaHumanSDKEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MetaHuman/MetaHumanSDK/Binaries/Win64/UnrealEditor-MetaHumanSDKEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MetaHuman/MetaHumanSDK/Binaries/Win64/UnrealEditor-MetaHumanSDKRuntime.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MetaHuman/MetaHumanSDK/Binaries/Win64/UnrealEditor-MetaHumanSDKRuntime.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MetaHuman/MetaHumanSDK/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/NFORDenoise/Binaries/Win64/UnrealEditor-NFORDenoise.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/NFORDenoise/Binaries/Win64/UnrealEditor-NFORDenoise.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/NFORDenoise/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlanarCutPlugin/Binaries/Win64/UnrealEditor-PlanarCut.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlanarCutPlugin/Binaries/Win64/UnrealEditor-PlanarCut.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlanarCutPlugin/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/Binaries/Win64/UnrealEditor-PlatformCrypto.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/Binaries/Win64/UnrealEditor-PlatformCrypto.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/Binaries/Win64/UnrealEditor-PlatformCryptoOpenSSL.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/Binaries/Win64/UnrealEditor-PlatformCryptoOpenSSL.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/Binaries/Win64/UnrealEditor-PlatformCryptoTypes.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/Binaries/Win64/UnrealEditor-PlatformCryptoTypes.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PythonScriptPlugin/Binaries/Win64/UnrealEditor-PythonScriptPlugin.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PythonScriptPlugin/Binaries/Win64/UnrealEditor-PythonScriptPlugin.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PythonScriptPlugin/Binaries/Win64/UnrealEditor-PythonScriptPluginPreload.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PythonScriptPlugin/Binaries/Win64/UnrealEditor-PythonScriptPluginPreload.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PythonScriptPlugin/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/SkeletalReduction/Binaries/Win64/UnrealEditor-SkeletalMeshReduction.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/SkeletalReduction/Binaries/Win64/UnrealEditor-SkeletalMeshReduction.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/SkeletalReduction/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StateGraph/Binaries/Win64/UnrealEditor-StateGraph.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StateGraph/Binaries/Win64/UnrealEditor-StateGraph.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StateGraph/Binaries/Win64/UnrealEditor-StateGraphManager.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StateGraph/Binaries/Win64/UnrealEditor-StateGraphManager.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StateGraph/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/Binaries/Win64/UnrealEditor-AnalyticsHorde.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/Binaries/Win64/UnrealEditor-AnalyticsHorde.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/Binaries/Win64/UnrealEditor-AnalyticsLog.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/Binaries/Win64/UnrealEditor-AnalyticsLog.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/Binaries/Win64/UnrealEditor-StudioTelemetry.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/Binaries/Win64/UnrealEditor-StudioTelemetry.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ToolPresets/Binaries/Win64/UnrealEditor-ToolPresetAsset.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ToolPresets/Binaries/Win64/UnrealEditor-ToolPresetAsset.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ToolPresets/Binaries/Win64/UnrealEditor-ToolPresetEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ToolPresets/Binaries/Win64/UnrealEditor-ToolPresetEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ToolPresets/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/FX/NiagaraSimCaching/Binaries/Win64/UnrealEditor-NiagaraSimCaching.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/NiagaraSimCaching/Binaries/Win64/UnrealEditor-NiagaraSimCaching.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/FX/NiagaraSimCaching/Binaries/Win64/UnrealEditor-NiagaraSimCachingEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/NiagaraSimCaching/Binaries/Win64/UnrealEditor-NiagaraSimCachingEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/FX/NiagaraSimCaching/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-Niagara.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-Niagara.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraAnimNotifies.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraAnimNotifies.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraBlueprintNodes.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraBlueprintNodes.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraEditorWidgets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraEditorWidgets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraShader.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraShader.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraVertexFactories.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor-NiagaraVertexFactories.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Fab/Binaries/Win64/UnrealEditor-Fab.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Fab/Binaries/Win64/UnrealEditor-Fab.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Fab/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/FastBuildController/Binaries/Win64/UnrealEditor-FastBuildController.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/FastBuildController/Binaries/Win64/UnrealEditor-FastBuildController.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/FastBuildController/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Importers/AlembicImporter/Binaries/Win64/UnrealEditor-AlembicImporter.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Importers/AlembicImporter/Binaries/Win64/UnrealEditor-AlembicImporter.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Importers/AlembicImporter/Binaries/Win64/UnrealEditor-AlembicLibrary.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Importers/AlembicImporter/Binaries/Win64/UnrealEditor-AlembicLibrary.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Importers/AlembicImporter/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/Binaries/Win64/UnrealEditor-InterchangeEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/Binaries/Win64/UnrealEditor-InterchangeEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/Binaries/Win64/UnrealEditor-InterchangeEditorPipelines.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/Binaries/Win64/UnrealEditor-InterchangeEditorPipelines.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/Binaries/Win64/UnrealEditor-InterchangeEditorUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/Binaries/Win64/UnrealEditor-InterchangeEditorUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-GLTFCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-GLTFCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeCommon.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeCommon.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeCommonParser.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeCommonParser.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeDispatcher.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeDispatcher.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeExport.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeExport.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeFactoryNodes.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeFactoryNodes.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeFbxParser.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeFbxParser.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeImport.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeImport.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeMessages.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeMessages.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeNodes.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangeNodes.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangePipelines.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor-InterchangePipelines.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RD.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RD.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderBlueprint.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderBlueprint.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderDebuggerSupport.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderDebuggerSupport.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderGameControl.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderGameControl.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderLC.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderLC.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderLink.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderLink.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderLogging.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderLogging.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderShaderInfo.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor-RiderShaderInfo.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AndroidMedia/Binaries/Win64/UnrealEditor-AndroidMediaEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AndroidMedia/Binaries/Win64/UnrealEditor-AndroidMediaEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AndroidMedia/Binaries/Win64/UnrealEditor-AndroidMediaFactory.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AndroidMedia/Binaries/Win64/UnrealEditor-AndroidMediaFactory.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AndroidMedia/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/Binaries/Win64/UnrealEditor-AvfMediaEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/Binaries/Win64/UnrealEditor-AvfMediaEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/Binaries/Win64/UnrealEditor-AvfMediaFactory.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/Binaries/Win64/UnrealEditor-AvfMediaFactory.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor-ExrReaderGpu.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor-ExrReaderGpu.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor-ImgMedia.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor-ImgMedia.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor-ImgMediaEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor-ImgMediaEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor-ImgMediaEngine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor-ImgMediaEngine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor-ImgMediaFactory.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor-ImgMediaFactory.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor-OpenExrWrapper.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor-OpenExrWrapper.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaCompositing/Binaries/Win64/UnrealEditor-MediaCompositing.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaCompositing/Binaries/Win64/UnrealEditor-MediaCompositing.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaCompositing/Binaries/Win64/UnrealEditor-MediaCompositingEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaCompositing/Binaries/Win64/UnrealEditor-MediaCompositingEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaCompositing/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlate/Binaries/Win64/UnrealEditor-MediaPlate.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlate/Binaries/Win64/UnrealEditor-MediaPlate.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlate/Binaries/Win64/UnrealEditor-MediaPlateEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlate/Binaries/Win64/UnrealEditor-MediaPlateEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlate/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlayerEditor/Binaries/Win64/UnrealEditor-MediaPlayerEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlayerEditor/Binaries/Win64/UnrealEditor-MediaPlayerEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlayerEditor/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/Binaries/Win64/UnrealEditor-WebMMedia.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/Binaries/Win64/UnrealEditor-WebMMedia.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/Binaries/Win64/UnrealEditor-WebMMediaEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/Binaries/Win64/UnrealEditor-WebMMediaEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/Binaries/Win64/UnrealEditor-WebMMediaFactory.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/Binaries/Win64/UnrealEditor-WebMMediaFactory.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/Binaries/Win64/UnrealEditor-WmfMedia.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/Binaries/Win64/UnrealEditor-WmfMedia.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/Binaries/Win64/UnrealEditor-WmfMediaEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/Binaries/Win64/UnrealEditor-WmfMediaEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/Binaries/Win64/UnrealEditor-WmfMediaFactory.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/Binaries/Win64/UnrealEditor-WmfMediaFactory.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/MeshPainting/Binaries/Win64/UnrealEditor-MeshPaintEditorMode.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MeshPainting/Binaries/Win64/UnrealEditor-MeshPaintEditorMode.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MeshPainting/Binaries/Win64/UnrealEditor-MeshPaintingToolset.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MeshPainting/Binaries/Win64/UnrealEditor-MeshPaintingToolset.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MeshPainting/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/TcpMessaging/Binaries/Win64/UnrealEditor-TcpMessaging.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/TcpMessaging/Binaries/Win64/UnrealEditor-TcpMessaging.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/TcpMessaging/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/UdpMessaging/Binaries/Win64/UnrealEditor-UdpMessaging.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/UdpMessaging/Binaries/Win64/UnrealEditor-UdpMessaging.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/UdpMessaging/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/ActorSequence/Binaries/Win64/UnrealEditor-ActorSequence.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/ActorSequence/Binaries/Win64/UnrealEditor-ActorSequence.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/ActorSequence/Binaries/Win64/UnrealEditor-ActorSequenceEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/ActorSequence/Binaries/Win64/UnrealEditor-ActorSequenceEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/ActorSequence/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/LevelSequenceEditor/Binaries/Win64/UnrealEditor-LevelSequenceEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/LevelSequenceEditor/Binaries/Win64/UnrealEditor-LevelSequenceEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/LevelSequenceEditor/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/MovieRenderPipeline/Binaries/Win64/UnrealEditor-MovieRenderPipelineCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/MovieRenderPipeline/Binaries/Win64/UnrealEditor-MovieRenderPipelineCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/MovieRenderPipeline/Binaries/Win64/UnrealEditor-MovieRenderPipelineEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/MovieRenderPipeline/Binaries/Win64/UnrealEditor-MovieRenderPipelineEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/MovieRenderPipeline/Binaries/Win64/UnrealEditor-MovieRenderPipelineRenderPasses.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/MovieRenderPipeline/Binaries/Win64/UnrealEditor-MovieRenderPipelineRenderPasses.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/MovieRenderPipeline/Binaries/Win64/UnrealEditor-MovieRenderPipelineSettings.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/MovieRenderPipeline/Binaries/Win64/UnrealEditor-MovieRenderPipelineSettings.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/MovieRenderPipeline/Binaries/Win64/UnrealEditor-UEOpenExrRTTI.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/MovieRenderPipeline/Binaries/Win64/UnrealEditor-UEOpenExrRTTI.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/MovieRenderPipeline/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/SequencerScripting/Binaries/Win64/UnrealEditor-SequencerScripting.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/SequencerScripting/Binaries/Win64/UnrealEditor-SequencerScripting.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/SequencerScripting/Binaries/Win64/UnrealEditor-SequencerScriptingEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/SequencerScripting/Binaries/Win64/UnrealEditor-SequencerScriptingEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/SequencerScripting/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/TemplateSequence/Binaries/Win64/UnrealEditor-TemplateSequence.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/TemplateSequence/Binaries/Win64/UnrealEditor-TemplateSequence.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/TemplateSequence/Binaries/Win64/UnrealEditor-TemplateSequenceEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/TemplateSequence/Binaries/Win64/UnrealEditor-TemplateSequenceEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/TemplateSequence/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNEDenoiser/Binaries/Win64/UnrealEditor-NNEDenoiser.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNEDenoiser/Binaries/Win64/UnrealEditor-NNEDenoiser.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNEDenoiser/Binaries/Win64/UnrealEditor-NNEDenoiserShaders.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNEDenoiser/Binaries/Win64/UnrealEditor-NNEDenoiserShaders.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNEDenoiser/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/Binaries/Win64/UnrealEditor-NNERuntimeORT.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/Binaries/Win64/UnrealEditor-NNERuntimeORT.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Online/EOSShared/Binaries/Win64/UnrealEditor-EOSShared.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/EOSShared/Binaries/Win64/UnrealEditor-EOSShared.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Online/EOSShared/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineBase/Binaries/Win64/UnrealEditor-OnlineBase.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineBase/Binaries/Win64/UnrealEditor-OnlineBase.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineBase/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/Binaries/Win64/UnrealEditor-OnlineServicesCommon.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/Binaries/Win64/UnrealEditor-OnlineServicesCommon.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/Binaries/Win64/UnrealEditor-OnlineServicesCommonEngineUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/Binaries/Win64/UnrealEditor-OnlineServicesCommonEngineUtils.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/Binaries/Win64/UnrealEditor-OnlineServicesInterface.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/Binaries/Win64/UnrealEditor-OnlineServicesInterface.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemNull/Binaries/Win64/UnrealEditor-OnlineSubsystemNull.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemNull/Binaries/Win64/UnrealEditor-OnlineSubsystemNull.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemNull/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemUtils/Binaries/Win64/UnrealEditor-OnlineBlueprintSupport.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemUtils/Binaries/Win64/UnrealEditor-OnlineBlueprintSupport.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemUtils/Binaries/Win64/UnrealEditor-OnlineSubsystemUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemUtils/Binaries/Win64/UnrealEditor-OnlineSubsystemUtils.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemUtils/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystem/Binaries/Win64/UnrealEditor-OnlineSubsystem.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystem/Binaries/Win64/UnrealEditor-OnlineSubsystem.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystem/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Portal/LauncherChunkInstaller/Binaries/Win64/UnrealEditor-LauncherChunkInstaller.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Portal/LauncherChunkInstaller/Binaries/Win64/UnrealEditor-LauncherChunkInstaller.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Portal/LauncherChunkInstaller/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/RenderGraphInsights/Binaries/Win64/UnrealEditor-RenderGraphInsights.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/RenderGraphInsights/Binaries/Win64/UnrealEditor-RenderGraphInsights.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/RenderGraphInsights/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ActorLayerUtilities/Binaries/Win64/UnrealEditor-ActorLayerUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ActorLayerUtilities/Binaries/Win64/UnrealEditor-ActorLayerUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ActorLayerUtilities/Binaries/Win64/UnrealEditor-ActorLayerUtilitiesEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ActorLayerUtilities/Binaries/Win64/UnrealEditor-ActorLayerUtilitiesEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ActorLayerUtilities/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidDeviceProfileSelector/Binaries/Win64/UnrealEditor-AndroidDeviceProfileCommandlets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidDeviceProfileSelector/Binaries/Win64/UnrealEditor-AndroidDeviceProfileCommandlets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidDeviceProfileSelector/Binaries/Win64/UnrealEditor-AndroidDeviceProfileSelector.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidDeviceProfileSelector/Binaries/Win64/UnrealEditor-AndroidDeviceProfileSelector.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidDeviceProfileSelector/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidFileServer/Binaries/Win64/UnrealEditor-AndroidFileServer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidFileServer/Binaries/Win64/UnrealEditor-AndroidFileServer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidFileServer/Binaries/Win64/UnrealEditor-AndroidFileServerEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidFileServer/Binaries/Win64/UnrealEditor-AndroidFileServerEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidFileServer/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidPermission/Binaries/Win64/UnrealEditor-AndroidPermission.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidPermission/Binaries/Win64/UnrealEditor-AndroidPermission.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidPermission/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleImageUtils/Binaries/Win64/UnrealEditor-AppleImageUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleImageUtils/Binaries/Win64/UnrealEditor-AppleImageUtils.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleImageUtils/Binaries/Win64/UnrealEditor-AppleImageUtilsBlueprintSupport.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleImageUtils/Binaries/Win64/UnrealEditor-AppleImageUtilsBlueprintSupport.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleImageUtils/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ArchVisCharacter/Binaries/Win64/UnrealEditor-ArchVisCharacter.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ArchVisCharacter/Binaries/Win64/UnrealEditor-ArchVisCharacter.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ArchVisCharacter/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AssetTags/Binaries/Win64/UnrealEditor-AssetTags.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AssetTags/Binaries/Win64/UnrealEditor-AssetTags.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AssetTags/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioCapture/Binaries/Win64/UnrealEditor-AudioCapture.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioCapture/Binaries/Win64/UnrealEditor-AudioCapture.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioCapture/Binaries/Win64/UnrealEditor-AudioCaptureEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioCapture/Binaries/Win64/UnrealEditor-AudioCaptureEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioCapture/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/Binaries/Win64/UnrealEditor-AudioSynesthesia.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/Binaries/Win64/UnrealEditor-AudioSynesthesia.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/Binaries/Win64/UnrealEditor-AudioSynesthesiaCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/Binaries/Win64/UnrealEditor-AudioSynesthesiaCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/Binaries/Win64/UnrealEditor-AudioSynesthesiaEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/Binaries/Win64/UnrealEditor-AudioSynesthesiaEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioWidgets/Binaries/Win64/UnrealEditor-AudioWidgets.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioWidgets/Binaries/Win64/UnrealEditor-AudioWidgets.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioWidgets/Binaries/Win64/UnrealEditor-AudioWidgetsEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioWidgets/Binaries/Win64/UnrealEditor-AudioWidgetsEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioWidgets/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CableComponent/Binaries/Win64/UnrealEditor-CableComponent.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CableComponent/Binaries/Win64/UnrealEditor-CableComponent.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CableComponent/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ChunkDownloader/Binaries/Win64/UnrealEditor-ChunkDownloader.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ChunkDownloader/Binaries/Win64/UnrealEditor-ChunkDownloader.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ChunkDownloader/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ComputeFramework/Binaries/Win64/UnrealEditor-ComputeFramework.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ComputeFramework/Binaries/Win64/UnrealEditor-ComputeFramework.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ComputeFramework/Binaries/Win64/UnrealEditor-ComputeFrameworkEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ComputeFramework/Binaries/Win64/UnrealEditor-ComputeFrameworkEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ComputeFramework/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CustomMeshComponent/Binaries/Win64/UnrealEditor-CustomMeshComponent.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CustomMeshComponent/Binaries/Win64/UnrealEditor-CustomMeshComponent.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CustomMeshComponent/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Database/SQLiteCore/Binaries/Win64/UnrealEditor-SQLiteCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Database/SQLiteCore/Binaries/Win64/UnrealEditor-SQLiteCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Database/SQLiteCore/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ExampleDeviceProfileSelector/Binaries/Win64/UnrealEditor-ExampleDeviceProfileSelector.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ExampleDeviceProfileSelector/Binaries/Win64/UnrealEditor-ExampleDeviceProfileSelector.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ExampleDeviceProfileSelector/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GameplayStateTree/Binaries/Win64/UnrealEditor-GameplayStateTreeModule.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GameplayStateTree/Binaries/Win64/UnrealEditor-GameplayStateTreeModule.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GameplayStateTree/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Win64/UnrealEditor-GeometryCache.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Win64/UnrealEditor-GeometryCache.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Win64/UnrealEditor-GeometryCacheEd.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Win64/UnrealEditor-GeometryCacheEd.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Win64/UnrealEditor-GeometryCacheSequencer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Win64/UnrealEditor-GeometryCacheSequencer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Win64/UnrealEditor-GeometryCacheStreamer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Win64/UnrealEditor-GeometryCacheStreamer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Win64/UnrealEditor-GeometryCacheTracks.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Win64/UnrealEditor-GeometryCacheTracks.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/Binaries/Win64/UnrealEditor-DynamicMesh.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/Binaries/Win64/UnrealEditor-DynamicMesh.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/Binaries/Win64/UnrealEditor-GeometryAlgorithms.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/Binaries/Win64/UnrealEditor-GeometryAlgorithms.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/Binaries/Win64/UnrealEditor-MeshFileUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/Binaries/Win64/UnrealEditor-MeshFileUtils.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GooglePAD/Binaries/Win64/UnrealEditor-GooglePAD.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GooglePAD/Binaries/Win64/UnrealEditor-GooglePAD.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GooglePAD/Binaries/Win64/UnrealEditor-GooglePADEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GooglePAD/Binaries/Win64/UnrealEditor-GooglePADEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GooglePAD/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HDRIBackdrop/Binaries/Win64/UnrealEditor-HDRIBackdrop.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HDRIBackdrop/Binaries/Win64/UnrealEditor-HDRIBackdrop.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HDRIBackdrop/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Win64/UnrealEditor-HairCardGeneratorFramework.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Win64/UnrealEditor-HairCardGeneratorFramework.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Win64/UnrealEditor-HairStrandsCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Win64/UnrealEditor-HairStrandsCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Win64/UnrealEditor-HairStrandsDeformer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Win64/UnrealEditor-HairStrandsDeformer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Win64/UnrealEditor-HairStrandsEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Win64/UnrealEditor-HairStrandsEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Win64/UnrealEditor-HairStrandsRuntime.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Win64/UnrealEditor-HairStrandsRuntime.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/InputDebugging/Binaries/Win64/UnrealEditor-InputDebugging.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/InputDebugging/Binaries/Win64/UnrealEditor-InputDebugging.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/InputDebugging/Binaries/Win64/UnrealEditor-InputDebuggingEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/InputDebugging/Binaries/Win64/UnrealEditor-InputDebuggingEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/InputDebugging/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/LocationServicesBPLibrary/Binaries/Win64/UnrealEditor-LocationServicesBPLibrary.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/LocationServicesBPLibrary/Binaries/Win64/UnrealEditor-LocationServicesBPLibrary.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/LocationServicesBPLibrary/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor-MeshModelingTools.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor-MeshModelingTools.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor-MeshModelingToolsEditorOnly.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor-MeshModelingToolsEditorOnly.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor-ModelingComponents.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor-ModelingComponents.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor-ModelingComponentsEditorOnly.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor-ModelingComponentsEditorOnly.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor-ModelingOperators.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor-ModelingOperators.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor-ModelingOperatorsEditorOnly.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor-ModelingOperatorsEditorOnly.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundEngine.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundEngine.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundEngineTest.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundEngineTest.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundFrontend.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundFrontend.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundGenerator.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundGenerator.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundGraphCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundGraphCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundStandardNodes.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor-MetasoundStandardNodes.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MobilePatchingUtils/Binaries/Win64/UnrealEditor-MobilePatchingUtils.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MobilePatchingUtils/Binaries/Win64/UnrealEditor-MobilePatchingUtils.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MobilePatchingUtils/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MsQuic/Binaries/Win64/UnrealEditor-MsQuicRuntime.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MsQuic/Binaries/Win64/UnrealEditor-MsQuicRuntime.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MsQuic/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ProceduralMeshComponent/Binaries/Win64/UnrealEditor-ProceduralMeshComponent.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ProceduralMeshComponent/Binaries/Win64/UnrealEditor-ProceduralMeshComponent.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ProceduralMeshComponent/Binaries/Win64/UnrealEditor-ProceduralMeshComponentEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ProceduralMeshComponent/Binaries/Win64/UnrealEditor-ProceduralMeshComponentEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ProceduralMeshComponent/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/PropertyAccess/Binaries/Win64/UnrealEditor-PropertyAccessEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/PropertyAccess/Binaries/Win64/UnrealEditor-PropertyAccessEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/PropertyAccess/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ResonanceAudio/Binaries/Win64/UnrealEditor-ResonanceAudio.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ResonanceAudio/Binaries/Win64/UnrealEditor-ResonanceAudio.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ResonanceAudio/Binaries/Win64/UnrealEditor-ResonanceAudioEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ResonanceAudio/Binaries/Win64/UnrealEditor-ResonanceAudioEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ResonanceAudio/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/Binaries/Win64/UnrealEditor-RigVM.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/Binaries/Win64/UnrealEditor-RigVM.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/Binaries/Win64/UnrealEditor-RigVMDeveloper.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/Binaries/Win64/UnrealEditor-RigVMDeveloper.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/Binaries/Win64/UnrealEditor-RigVMEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/Binaries/Win64/UnrealEditor-RigVMEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SignificanceManager/Binaries/Win64/UnrealEditor-SignificanceManager.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SignificanceManager/Binaries/Win64/UnrealEditor-SignificanceManager.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SignificanceManager/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SoundFields/Binaries/Win64/UnrealEditor-SoundFields.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SoundFields/Binaries/Win64/UnrealEditor-SoundFields.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SoundFields/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/Binaries/Win64/UnrealEditor-StateTreeEditorModule.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/Binaries/Win64/UnrealEditor-StateTreeEditorModule.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/Binaries/Win64/UnrealEditor-StateTreeModule.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/Binaries/Win64/UnrealEditor-StateTreeModule.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/Binaries/Win64/UnrealEditor-StateTreeTestSuite.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/Binaries/Win64/UnrealEditor-StateTreeTestSuite.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Synthesis/Binaries/Win64/UnrealEditor-Synthesis.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Synthesis/Binaries/Win64/UnrealEditor-Synthesis.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Synthesis/Binaries/Win64/UnrealEditor-SynthesisEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Synthesis/Binaries/Win64/UnrealEditor-SynthesisEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Synthesis/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Binaries/Win64/UnrealEditor-USDClasses.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Binaries/Win64/UnrealEditor-USDClasses.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Binaries/Win64/UnrealEditor-USDUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Binaries/Win64/UnrealEditor-USDUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Binaries/Win64/UnrealEditor-UnrealUSDWrapper.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Binaries/Win64/UnrealEditor-UnrealUSDWrapper.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WaveTable/Binaries/Win64/UnrealEditor-WaveTable.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WaveTable/Binaries/Win64/UnrealEditor-WaveTable.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WaveTable/Binaries/Win64/UnrealEditor-WaveTableEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WaveTable/Binaries/Win64/UnrealEditor-WaveTableEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WaveTable/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WebMMoviePlayer/Binaries/Win64/UnrealEditor-WebMMoviePlayer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WebMMoviePlayer/Binaries/Win64/UnrealEditor-WebMMoviePlayer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WebMMoviePlayer/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WindowsDeviceProfileSelector/Binaries/Win64/UnrealEditor-WindowsDeviceProfileSelector.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WindowsDeviceProfileSelector/Binaries/Win64/UnrealEditor-WindowsDeviceProfileSelector.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WindowsDeviceProfileSelector/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WindowsMoviePlayer/Binaries/Win64/UnrealEditor-WindowsMoviePlayer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WindowsMoviePlayer/Binaries/Win64/UnrealEditor-WindowsMoviePlayer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WindowsMoviePlayer/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Windows/XInputDevice/Binaries/Win64/UnrealEditor-XInputDevice.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Windows/XInputDevice/Binaries/Win64/UnrealEditor-XInputDevice.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Windows/XInputDevice/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/Tests/InterchangeTests/Binaries/Win64/UnrealEditor-InterchangeTestEditor.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Tests/InterchangeTests/Binaries/Win64/UnrealEditor-InterchangeTestEditor.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Tests/InterchangeTests/Binaries/Win64/UnrealEditor-InterchangeTests.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/Tests/InterchangeTests/Binaries/Win64/UnrealEditor-InterchangeTests.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/Tests/InterchangeTests/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/TraceUtilities/Binaries/Win64/UnrealEditor-EditorTraceUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/TraceUtilities/Binaries/Win64/UnrealEditor-EditorTraceUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/TraceUtilities/Binaries/Win64/UnrealEditor-TraceUtilities.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/TraceUtilities/Binaries/Win64/UnrealEditor-TraceUtilities.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/TraceUtilities/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/UbaController/Binaries/Win64/UnrealEditor-UbaController.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/UbaController/Binaries/Win64/UnrealEditor-UbaController.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/UbaController/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-CacheTrackRecorder.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-CacheTrackRecorder.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-TakeMovieScene.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-TakeMovieScene.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-TakeRecorder.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-TakeRecorder.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-TakeRecorderSources.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-TakeRecorderSources.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-TakeSequencer.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-TakeSequencer.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-TakeTrackRecorders.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-TakeTrackRecorders.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-TakesCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor-TakesCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/Binaries/Win64/UnrealEditor-CsvMetrics.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/Binaries/Win64/UnrealEditor-CsvMetrics.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/Binaries/Win64/UnrealEditor-WorldMetricsCore.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/Binaries/Win64/UnrealEditor-WorldMetricsCore.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/Binaries/Win64/UnrealEditor-WorldMetricsTest.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/Binaries/Win64/UnrealEditor-WorldMetricsTest.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - }, - { - "Path": "$(EngineDir)/Plugins/XGEController/Binaries/Win64/UnrealEditor-XGEController.dll", - "Type": "DynamicLibrary" - }, - { - "Path": "$(EngineDir)/Plugins/XGEController/Binaries/Win64/UnrealEditor-XGEController.pdb", - "Type": "SymbolFile" - }, - { - "Path": "$(EngineDir)/Plugins/XGEController/Binaries/Win64/UnrealEditor.modules", - "Type": "RequiredResource" - } - ], - "RuntimeDependencies": [ - { - "Path": "$(ProjectDir)/Luckyrobots.uproject", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/AsyncLoac1ceae7b44acV11/AsyncLoadingScreen.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/BlueprintJson/BlueprintJson.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/CPathfinding/CPathfinding.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/FileHelperPlugin/FileHelper.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyMujoco/LuckyMujoco.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/LuckyTextWrite/LuckyTextWrite.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3MovieRenderPipeline/FSR3MovieRenderPipeline.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/Marketplace/FSR3-550/FSR3/FSR3.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/SocketIOClient/SocketIOClient.uplugin", - "Type": "UFS" - }, - { - "Path": "$(ProjectDir)/Plugins/VaRestPlugin/VaRest.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/chrome_100_percent.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/chrome_200_percent.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/icudtl.dat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/am.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/ar.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/bg.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/bn.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/ca.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/cs.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/da.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/de.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/el.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/en-GB.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/en-US.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/es-419.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/es.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/et.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/fa.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/fi.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/fil.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/fr.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/gu.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/he.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/hi.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/hr.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/hu.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/id.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/it.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/ja.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/kn.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/ko.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/lt.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/lv.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/ml.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/mr.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/ms.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/nb.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/nl.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/pl.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/pt-BR.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/pt-PT.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/ro.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/ru.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/sk.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/sl.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/sr.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/sv.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/sw.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/ta.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/te.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/th.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/tr.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/uk.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/vi.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/zh-CN.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/locales/zh-TW.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/resources.pak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/swiftshader/libEGL.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/Resources/swiftshader/libGLESv2.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/chrome_elf.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/d3dcompiler_47.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/icudtl.dat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/libEGL.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/libGLESv2.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/libcef.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/snapshot_blob.bin", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/CEF3/Win64/v8_context_snapshot.bin", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/DbgHelp/dbghelp.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/FreeImage/Win64/FreeImage.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Intel/ISPCTexComp/Win64-Release/ispc_texcomp.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/README.md", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/disney_brdf_2012.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/disney_brdf_2015.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/gltf_pbr.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/lama/lama_add.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/lama/lama_conductor.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/lama/lama_dielectric.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/lama/lama_diffuse.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/lama/lama_emission.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/lama/lama_layer.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/lama/lama_mix.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/lama/lama_sheen.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/lama/lama_sss.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/lama/lama_translucent.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/open_pbr_surface.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/standard_surface.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/translation/standard_surface_to_usd.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/bxdf/usd_preview_surface.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/lights/genglsl/lights_genglsl_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/lights/genglsl/mx_directional_light.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/lights/genglsl/mx_point_light.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/lights/genglsl/mx_spot_light.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/lights/lights_defs.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/mdl/materialx/cm.mdl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/mdl/materialx/core.mdl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/mdl/materialx/hsv.mdl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/mdl/materialx/noise.mdl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/mdl/materialx/pbrlib.mdl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/mdl/materialx/sampling.mdl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/mdl/materialx/stdlib.mdl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/mdl/materialx/swizzle.mdl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/lib/mx_environment_fis.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/lib/mx_environment_none.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/lib/mx_environment_prefilter.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/lib/mx_microfacet.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/lib/mx_microfacet_diffuse.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/lib/mx_microfacet_sheen.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/lib/mx_microfacet_specular.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/lib/mx_shadow.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/lib/mx_table.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/lib/mx_transmission_opacity.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/lib/mx_transmission_refract.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_add_edf.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_anisotropic_vdf.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_artistic_ior.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_burley_diffuse_bsdf.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_conductor_bsdf.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_dielectric_bsdf.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_displacement_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_displacement_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_generalized_schlick_bsdf.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_oren_nayar_diffuse_bsdf.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_roughness_anisotropy.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_roughness_dual.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_sheen_bsdf.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_subsurface_bsdf.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_translucent_bsdf.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/mx_uniform_edf.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genglsl/pbrlib_genglsl_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genmdl/pbrlib_genmdl_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/lib/mx_microfacet.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/lib/mx_microfacet_sheen.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/lib/mx_microfacet_specular.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_anisotropic_vdf.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_artistic_ior.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_burley_diffuse_bsdf.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_conductor_bsdf.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_dielectric_bsdf.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_displacement_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_displacement_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_generalized_schlick_bsdf.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_oren_nayar_diffuse_bsdf.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_roughness_anisotropy.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_roughness_dual.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_sheen_bsdf.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_subsurface_bsdf.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_surface.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_translucent_bsdf.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/mx_uniform_edf.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/genosl/pbrlib_genosl_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/pbrlib_defs.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/pbrlib/pbrlib_ng.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/lib/mx_hsv.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/lib/mx_math.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/lib/mx_noise.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/lib/mx_sampling.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/lib/mx_transform_color.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/lib/mx_transform_uv.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/lib/mx_transform_uv_vflip.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_aastep.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_absval.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_acos.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_add.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_add_surfaceshader.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_ap1_to_rec709_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_ap1_to_rec709_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_asin.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_atan2.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_burn_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_burn_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_burn_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_ceil.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_cellnoise2d_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_cellnoise3d_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_clamp.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_constant.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_cos.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_crossproduct.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_determinant.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_difference.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_disjointover_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_divide.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_dodge.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_dodge_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_dodge_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_dodge_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_dot.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_dotproduct.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_exp.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_floor.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_fractal3d_fa_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_fractal3d_fa_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_fractal3d_fa_vector4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_fractal3d_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_fractal3d_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_fractal3d_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_fractal3d_vector4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_g22_ap1_to_lin_rec709_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_g22_ap1_to_lin_rec709_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_gamma18_to_linear_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_gamma18_to_linear_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_gamma22_to_linear_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_gamma22_to_linear_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_gamma24_to_linear_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_gamma24_to_linear_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_hsvtorgb_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_hsvtorgb_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_image_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_image_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_image_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_image_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_image_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_image_vector4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_in_color4.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_inside.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_invert.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_invertM.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_ln.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_luminance_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_luminance_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_magnitude.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_mask_color4.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_matte_color4.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_max.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_min.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_minus.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_mix.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_mix_surfaceshader.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_modulo.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_multiply.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_multiply_surfaceshader_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_multiply_surfaceshader_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise2d_fa_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise2d_fa_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise2d_fa_vector4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise2d_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise2d_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise2d_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise2d_vector4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise3d_fa_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise3d_fa_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise3d_fa_vector4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise3d_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise3d_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise3d_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_noise3d_vector4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_normalize.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_normalmap.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_out_color2.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_out_color4.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_outside.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_over_color2.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_over_color4.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_overlay.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_overlay_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_overlay_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_overlay_float.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_plus.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_power.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_power_color3_float.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_power_color4_float.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_power_vector2_float.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_power_vector3_float.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_power_vector4_float.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_premult_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_ramplr_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_ramplr_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_ramplr_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_ramplr_vector4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_ramptb_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_ramptb_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_ramptb_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_ramptb_vector4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_remap.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_rgbtohsv_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_rgbtohsv_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_rotate_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_rotate_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_screen.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_sign.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_sin.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_smoothstep_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_smoothstep_vec2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_smoothstep_vec2FA.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_smoothstep_vec3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_smoothstep_vec3FA.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_smoothstep_vec4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_smoothstep_vec4FA.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_splitlr_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_splitlr_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_splitlr_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_splitlr_vector4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_splittb_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_splittb_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_splittb_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_splittb_vector4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_sqrt.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_srgb_texture_to_lin_rec709_color3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_srgb_texture_to_lin_rec709_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_subtract.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_tan.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_transformmatrix.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_transformmatrix_vector2M3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_transformmatrix_vector3M4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_transpose.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_unpremult_color4.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_worleynoise2d_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_worleynoise2d_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_worleynoise2d_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_worleynoise3d_float.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_worleynoise3d_vector2.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/mx_worleynoise3d_vector3.glsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/stdlib_genglsl_cm_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/stdlib_genglsl_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genglsl/stdlib_genglsl_unit_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genmdl/stdlib_genmdl_cm_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genmdl/stdlib_genmdl_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genmdl/stdlib_genmdl_unit_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/include/color4.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/include/matrix33.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/include/mx_funcs.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/include/vector2.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/include/vector4.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/lib/mx_sampling.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/lib/mx_transform_color.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/lib/mx_transform_uv.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/lib/mx_transform_uv_vflip.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_absval.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_acos.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_add.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_ambientocclusion_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_ap1_to_rec709_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_ap1_to_rec709_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_asin.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_atan2.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_bitangent_vector3.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_burn_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_burn_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_burn_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_ceil.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_cellnoise2d_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_cellnoise3d_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_clamp.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_constant.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_contrast.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_cos.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_crossproduct.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_determinant.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_difference.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_disjointover_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_divide.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_dodge_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_dodge_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_dodge_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_dot.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_dotproduct.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_exp.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_floor.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_fractal3d_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_fractal3d_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_fractal3d_fa_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_fractal3d_fa_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_fractal3d_fa_vector2.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_fractal3d_fa_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_fractal3d_fa_vector4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_fractal3d_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_fractal3d_vector2.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_fractal3d_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_fractal3d_vector4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_frame_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_g22_ap1_to_lin_rec709_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_g22_ap1_to_lin_rec709_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_gamma18_to_linear_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_gamma18_to_linear_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_gamma22_to_linear_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_gamma22_to_linear_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_gamma24_to_linear_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_gamma24_to_linear_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_geomcolor_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_geomcolor_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_geomcolor_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_geompropvalue_boolean.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_geompropvalue_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_geompropvalue_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_geompropvalue_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_geompropvalue_integer.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_geompropvalue_string.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_geompropvalue_vector2.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_geompropvalue_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_geompropvalue_vector4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_heighttonormal_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_hsvtorgb_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_hsvtorgb_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_image_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_image_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_image_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_image_vector2.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_image_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_image_vector4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_in.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_inside.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_invert.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_invertM.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_ln.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_luminance_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_luminance_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_magnitude.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_mask.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_matte_color4.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_max.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_min.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_minus.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_mix.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_modulo.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_modulo_color3FA.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_modulo_vector3FA.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_multiply.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise2d_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise2d_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise2d_fa_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise2d_fa_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise2d_fa_vector2.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise2d_fa_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise2d_fa_vector4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise2d_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise2d_vector2.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise2d_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise2d_vector4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise3d_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise3d_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise3d_fa_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise3d_fa_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise3d_fa_vector2.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise3d_fa_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise3d_fa_vector4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise3d_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise3d_vector2.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise3d_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_noise3d_vector4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_normal_vector3.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_normalize.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_normalmap.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_out.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_outside.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_over.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_overlay.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_overlay_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_overlay_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_plus.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_position_vector3.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_power.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_premult_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_ramplr.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_ramptb.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_remap.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_rgbtohsv_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_rgbtohsv_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_rotate_vector2.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_rotate_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_screen.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_sign.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_sin.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_smoothstep.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_splitlr.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_splittb.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_sqrt.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_srgb_texture_to_lin_rec709_color3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_srgb_texture_to_lin_rec709_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_subtract.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_surface_unlit.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_tan.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_tangent_vector3.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_texcoord_vector2.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_texcoord_vector3.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_time_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_transformmatrix.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_transformmatrix_vector2M3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_transformnormal.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_transformpoint.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_transformvector.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_transpose.inline", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_unpremult_color4.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_worleynoise2d_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_worleynoise2d_vector2.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_worleynoise2d_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_worleynoise3d_float.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_worleynoise3d_vector2.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/mx_worleynoise3d_vector3.osl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/stdlib_genosl_cm_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/stdlib_genosl_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/genosl/stdlib_genosl_unit_impl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/stdlib_defs.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/stdlib/stdlib_ng.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/targets/essl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/targets/genglsl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/targets/genmdl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MaterialX/libraries/targets/genosl.mtlx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/MsQuic/v220/win64/msquic.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/NVIDIA/NVaftermath/Win64/GFSDK_Aftermath_Lib.x64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Ogg/Win64/VS2015/libogg_64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_asyncio.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_bz2.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_ctypes.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_ctypes_test.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_decimal.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_elementtree.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_hashlib.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_lzma.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_msi.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_multiprocessing.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_overlapped.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_queue.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_socket.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_sqlite3.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_ssl.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_testbuffer.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_testcapi.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_testconsole.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_testimportmultiple.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_testinternalcapi.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_testmultiphase.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_tkinter.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_uuid.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/_zoneinfo.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/libcrypto-3.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/libffi-8.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/libssl-3.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/py.ico", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/pyc.ico", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/pyd.ico", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/pyexpat.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/python_lib.cat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/python_tools.cat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/select.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/sqlite3.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/tcl86t.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/tk86t.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/unicodedata.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/DLLs/winsound.pyd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/LICENSE.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/__future__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/__hello__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/__phello__/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/__phello__/ham/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/__phello__/ham/eggs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/__phello__/spam.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_aix_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_bootsubprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_collections_abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_compat_pickle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_compression.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_markupbase.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_osx_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_py_abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_pydecimal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_pyio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_sitebuiltins.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_strptime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_threading_local.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/_weakrefset.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/aifc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/antigravity.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/argparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ast.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asynchat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/base_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/base_futures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/base_subprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/base_tasks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/constants.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/coroutines.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/format_helpers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/futures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/locks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/log.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/mixins.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/proactor_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/protocols.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/queues.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/runners.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/selector_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/sslproto.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/staggered.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/streams.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/subprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/taskgroups.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/tasks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/threads.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/timeouts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/transports.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/trsock.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/unix_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/windows_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncio/windows_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/asyncore.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/base64.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/bdb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/bisect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/bz2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/cProfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/calendar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/cgi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/cgitb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/chunk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/code.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/codecs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/codeop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/collections/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/collections/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/colorsys.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/compileall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/concurrent/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/concurrent/futures/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/concurrent/futures/_base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/concurrent/futures/process.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/concurrent/futures/thread.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/configparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/contextlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/contextvars.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/copy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/copyreg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/crypt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/csv.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/_aix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/_endian.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/macholib/README.ctypes", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/macholib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/macholib/dyld.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/macholib/dylib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/macholib/fetch_macholib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/macholib/fetch_macholib.bat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/macholib/framework.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_anon.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_array_in_pointer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_arrays.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_as_parameter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_bitfields.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_buffers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_bytes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_byteswap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_callbacks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_cast.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_cfuncs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_checkretval.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_delattr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_errno.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_find.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_frombuffer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_funcptr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_functions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_incomplete.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_init.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_internals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_keeprefs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_libc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_loading.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_macholib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_memfunctions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_numbers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_objects.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_parameters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_pep3118.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_pickling.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_pointers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_prototypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_python_api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_random_things.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_refcounts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_repr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_returnfuncptrs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_simplesubclasses.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_sizes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_slicing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_stringptr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_strings.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_struct_fields.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_structures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_unaligned_structures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_values.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_varsize_struct.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_win32.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/test/test_wintypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ctypes/wintypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/curses/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/curses/ascii.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/curses/has_key.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/curses/panel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/curses/textpad.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/dataclasses.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/datetime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/dbm/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/dbm/dumb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/dbm/gnu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/dbm/ndbm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/decimal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/difflib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/dis.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/_msvccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/archive_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/bcppcompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/ccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/bdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/bdist_dumb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/bdist_rpm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/build.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/build_clib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/build_ext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/build_py.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/build_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/clean.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/command_template", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/install_data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/install_egg_info.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/install_headers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/install_lib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/install_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/register.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/sdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/command/upload.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/cygwinccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/debug.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/dep_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/dir_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/dist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/errors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/extension.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/fancy_getopt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/file_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/filelist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/log.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/msvc9compiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/msvccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/spawn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/sysconfig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/Setup.sample", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/includetest.rst", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_archive_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_bdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_bdist_dumb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_bdist_rpm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_build.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_build_clib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_build_ext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_build_py.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_build_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_clean.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_config_cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_cygwinccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_dep_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_dir_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_dist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_extension.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_file_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_filelist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_install_data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_install_headers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_install_lib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_install_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_log.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_msvc9compiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_msvccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_register.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_sdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_spawn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_sysconfig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_text_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_unixccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_upload.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/tests/test_versionpredicate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/text_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/unixccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/distutils/versionpredicate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/doctest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/_encoded_words.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/_header_value_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/_parseaddr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/_policybase.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/architecture.rst", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/base64mime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/charset.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/contentmanager.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/encoders.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/errors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/feedparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/generator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/header.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/headerregistry.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/iterators.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/message.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/mime/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/mime/application.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/mime/audio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/mime/base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/mime/image.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/mime/message.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/mime/multipart.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/mime/nonmultipart.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/mime/text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/policy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/quoprimime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/email/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/aliases.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/ascii.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/base64_codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/big5.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/big5hkscs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/bz2_codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/charmap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp037.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1006.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1026.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1125.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1140.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1250.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1251.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1252.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1253.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1254.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1255.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1256.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1257.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp1258.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp273.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp424.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp437.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp500.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp720.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp737.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp775.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp850.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp852.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp855.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp856.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp857.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp858.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp860.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp861.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp862.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp863.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp864.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp865.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp866.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp869.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp874.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp875.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp932.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp949.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/cp950.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/euc_jis_2004.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/euc_jisx0213.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/euc_jp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/euc_kr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/gb18030.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/gb2312.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/gbk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/hex_codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/hp_roman8.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/hz.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/idna.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso2022_jp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso2022_jp_1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso2022_jp_2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso2022_jp_2004.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso2022_jp_3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso2022_jp_ext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso2022_kr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_10.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_11.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_13.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_14.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_15.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_16.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_4.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_5.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_6.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_7.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_8.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/iso8859_9.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/johab.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/koi8_r.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/koi8_t.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/koi8_u.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/kz1048.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/latin_1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/mac_arabic.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/mac_croatian.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/mac_cyrillic.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/mac_farsi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/mac_greek.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/mac_iceland.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/mac_latin2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/mac_roman.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/mac_romanian.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/mac_turkish.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/mbcs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/oem.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/palmos.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/ptcp154.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/punycode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/quopri_codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/raw_unicode_escape.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/rot_13.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/shift_jis.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/shift_jis_2004.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/shift_jisx0213.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/tis_620.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/undefined.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/unicode_escape.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/utf_16.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/utf_16_be.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/utf_16_le.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/utf_32.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/utf_32_be.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/utf_32_le.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/utf_7.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/utf_8.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/utf_8_sig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/uu_codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/encodings/zlib_codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ensurepip/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ensurepip/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ensurepip/_bundled/pip-24.0-py3-none-any.whl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ensurepip/_uninstall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/enum.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/filecmp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/fileinput.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/fnmatch.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/fractions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ftplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/genericpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/getopt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/getpass.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/gettext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/glob.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/graphlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/gzip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/hashlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/heapq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/hmac.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/html/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/html/entities.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/html/parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/http/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/http/client.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/http/cookiejar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/http/cookies.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/http/server.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/CREDITS.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/ChangeLog", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/HISTORY.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/README.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/folder.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/idle.ico", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/idle_16.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/idle_16.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/idle_256.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/idle_32.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/idle_32.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/idle_48.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/idle_48.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/minusnode.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/openfolder.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/plusnode.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/python.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/Icons/tk.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/NEWS2x.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/News3.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/README.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/TODO.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/autocomplete.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/autocomplete_w.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/autoexpand.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/browser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/calltip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/calltip_w.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/codecontext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/colorizer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/config-extensions.def", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/config-highlight.def", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/config-keys.def", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/config-main.def", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/config_key.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/configdialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/debugger.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/debugger_r.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/debugobj.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/debugobj_r.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/delegator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/dynoption.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/editor.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/extend.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/filelist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/format.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/grep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/help.html", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/help.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/help_about.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/history.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/hyperparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle.bat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle.pyw", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/README.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/example_noext", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/example_stub.pyi", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/htest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/mock_idle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/mock_tk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/template.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_autocomplete.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_autocomplete_w.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_autoexpand.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_browser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_calltip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_calltip_w.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_codecontext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_colorizer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_config_key.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_configdialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_debugger.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_debugger_r.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_debugobj.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_debugobj_r.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_delegator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_editmenu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_editor.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_filelist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_format.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_grep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_help.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_help_about.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_history.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_hyperparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_iomenu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_macosx.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_mainmenu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_multicall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_outwin.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_parenmatch.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_pathbrowser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_percolator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_pyparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_pyshell.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_query.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_redirector.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_replace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_rpc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_run.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_runscript.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_scrolledlist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_search.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_searchbase.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_searchengine.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_sidebar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_squeezer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_stackviewer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_statusbar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_textview.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_tooltip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_tree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_undo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_warning.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_window.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_zoomheight.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/test_zzdummy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/idle_test/tkinter_testing_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/iomenu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/macosx.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/mainmenu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/multicall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/outwin.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/parenmatch.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/pathbrowser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/percolator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/pyparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/pyshell.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/query.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/redirector.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/replace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/rpc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/run.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/runscript.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/scrolledlist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/search.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/searchbase.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/searchengine.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/sidebar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/squeezer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/stackviewer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/statusbar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/textview.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/tooltip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/tree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/undo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/window.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/zoomheight.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/idlelib/zzdummy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/imaplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/imghdr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/imp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/_abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/_bootstrap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/_bootstrap_external.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/machinery.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/metadata/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/metadata/_adapters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/metadata/_collections.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/metadata/_functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/metadata/_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/metadata/_meta.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/metadata/_text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/readers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/resources/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/resources/_adapters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/resources/_common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/resources/_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/resources/_legacy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/resources/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/resources/readers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/resources/simple.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/simple.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/importlib/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/inspect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/io.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ipaddress.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/json/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/json/decoder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/json/encoder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/json/scanner.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/json/tool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/keyword.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/Grammar.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/PatternGrammar.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/btm_matcher.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/btm_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixer_base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixer_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_apply.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_asserts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_basestring.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_buffer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_dict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_except.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_exec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_execfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_exitfunc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_filter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_funcattrs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_future.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_getcwdu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_has_key.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_idioms.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_import.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_imports.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_imports2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_input.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_intern.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_isinstance.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_itertools_imports.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_long.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_map.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_metaclass.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_methodattrs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_ne.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_next.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_nonzero.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_numliterals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_operator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_paren.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_print.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_raise.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_raw_input.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_reduce.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_reload.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_renames.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_repr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_set_literal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_standarderror.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_sys_exc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_throw.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_tuple_params.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_urllib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_ws_comma.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_xrange.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_xreadlines.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/fixes/fix_zip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/patcomp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/pgen2/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/pgen2/conv.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/pgen2/driver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/pgen2/grammar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/pgen2/literals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/pgen2/parse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/pgen2/pgen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/pgen2/token.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/pgen2/tokenize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/pygram.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/pytree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/refactor.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/bom.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/crlf.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/different_encoding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/false_encoding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/fixers/bad_order.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/fixers/myfixes/fix_first.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/fixers/myfixes/fix_last.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/fixers/no_fixer_cls.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/fixers/parrot_example.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/infinite_recursion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/py2_test_grammar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/data/py3_test_grammar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/pytree_idempotency.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/test_all_fixers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/test_fixers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/test_main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/test_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/test_pytree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/test_refactor.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lib2to3/tests/test_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/linecache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/locale.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/logging/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/logging/config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/logging/handlers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/lzma.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/mailbox.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/mailcap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/mimetypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/modulefinder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/msilib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/msilib/schema.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/msilib/sequence.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/msilib/text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/connection.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/context.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/dummy/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/dummy/connection.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/forkserver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/heap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/managers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/pool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/popen_fork.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/popen_forkserver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/popen_spawn_posix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/popen_spawn_win32.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/process.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/queues.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/reduction.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/resource_sharer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/resource_tracker.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/shared_memory.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/sharedctypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/spawn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/synchronize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/multiprocessing/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/netrc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/nntplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ntpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/nturl2path.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/numbers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/opcode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/operator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/optparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/os.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pathlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pdb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pickle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pickletools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pipes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pkgutil.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/platform.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/plistlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/poplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/posixpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pprint.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/profile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pstats.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pty.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/py_compile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pyclbr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pydoc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pydoc_data/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pydoc_data/_pydoc.css", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/pydoc_data/topics.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/queue.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/quopri.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/random.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/re/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/re/_casefix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/re/_compiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/re/_constants.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/re/_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/reprlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/rlcompleter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/runpy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/sched.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/secrets.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/selectors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/shelve.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/shlex.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/shutil.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/signal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/README.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/_distutils_hack/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/_distutils_hack/override.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/distutils-precedence.pth", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip-24.0.dist-info/AUTHORS.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip-24.0.dist-info/INSTALLER", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip-24.0.dist-info/LICENSE.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip-24.0.dist-info/METADATA", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip-24.0.dist-info/RECORD", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip-24.0.dist-info/REQUESTED", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip-24.0.dist-info/WHEEL", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip-24.0.dist-info/entry_points.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip-24.0.dist-info/top_level.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/__pip-runner__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/build_env.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cli/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cli/autocompletion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cli/base_command.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cli/cmdoptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cli/command_context.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cli/main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cli/main_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cli/parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cli/progress_bars.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cli/req_command.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cli/spinners.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/cli/status_codes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/completion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/configuration.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/debug.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/download.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/freeze.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/hash.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/help.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/index.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/inspect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/list.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/search.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/show.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/uninstall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/commands/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/configuration.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/distributions/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/distributions/base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/distributions/installed.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/distributions/sdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/distributions/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/index/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/index/collector.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/index/package_finder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/index/sources.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/locations/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/locations/_distutils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/locations/_sysconfig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/locations/base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/metadata/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/metadata/_json.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/metadata/base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/metadata/pkg_resources.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/models/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/models/candidate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/models/direct_url.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/models/format_control.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/models/index.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/models/installation_report.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/models/link.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/models/scheme.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/models/search_scope.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/models/selection_prefs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/models/target_python.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/models/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/network/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/network/auth.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/network/cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/network/download.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/network/lazy_wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/network/session.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/network/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/network/xmlrpc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/build/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/build/build_tracker.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/build/metadata.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/build/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/freeze.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/install/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/install/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/operations/prepare.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/pyproject.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/req/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/req/constructors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/req/req_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/req/req_install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/req/req_set.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/req/req_uninstall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/self_outdated_check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/_jaraco_text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/_log.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/appdirs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/compatibility_tags.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/datetime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/deprecation.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/egg_link.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/encoding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/entrypoints.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/filesystem.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/filetypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/glibc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/hashes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/logging.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/models.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/packaging.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/setuptools_build.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/subprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/temp_dir.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/unpacking.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/urls.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/virtualenv.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/utils/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/vcs/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/vcs/bazaar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/vcs/git.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/vcs/mercurial.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/vcs/subversion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/vcs/versioncontrol.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_internal/wheel_builder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/controller.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/certifi/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/certifi/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/certifi/cacert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/certifi/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/certifi/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/big5freq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/big5prober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/chardistribution.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/charsetprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/cp949prober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/enums.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/escprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/escsm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/euckrprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/euctwprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/jisfreq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/johabfreq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/johabprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/jpcntx.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/latin1prober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/macromanprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/mbcssm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/resultdict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/sjisprober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/universaldetector.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/utf8prober.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/chardet/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/ansi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/initialise.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/tests/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/win32.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/colorama/winterm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/database.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/index.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/locators.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/manifest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/markers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/metadata.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/resources.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/t32.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/t64.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/w32.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/w64.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distlib/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distro/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distro/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distro/distro.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/distro/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/idna/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/idna/codec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/idna/compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/idna/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/idna/idnadata.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/idna/intranges.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/idna/package_data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/idna/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/idna/uts46data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/msgpack/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/msgpack/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/msgpack/ext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/msgpack/fallback.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/packaging/__about__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/packaging/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/packaging/_manylinux.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/packaging/_musllinux.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/packaging/_structures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/packaging/markers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/packaging/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/packaging/requirements.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/packaging/specifiers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/packaging/tags.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/packaging/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/packaging/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/platformdirs/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/platformdirs/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/platformdirs/android.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/platformdirs/api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/platformdirs/macos.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/platformdirs/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/platformdirs/unix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/platformdirs/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/platformdirs/windows.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/cmdline.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/console.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/filter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/html.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/img.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/other.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/lexer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/lexers/python.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/modeline.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/plugin.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/regexopt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/scanner.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/sphinxext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/style.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/token.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/unistring.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pygments/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyparsing/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyparsing/actions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyparsing/common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyparsing/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyparsing/helpers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyparsing/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyparsing/results.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyparsing/testing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyparsing/unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyparsing/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/__version__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/_internal_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/adapters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/auth.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/certs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/cookies.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/help.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/hooks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/models.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/packages.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/sessions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/status_codes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/structures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/requests/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/resolvelib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/resolvelib/providers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/resolvelib/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/resolvelib/reporters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/resolvelib/structs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_cell_widths.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_export_format.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_extension.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_fileno.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_inspect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_log_render.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_loop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_null_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_palettes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_pick.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_ratio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_spinners.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_stack.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_timer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_win32_console.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_windows.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/_wrap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/align.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/ansi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/bar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/box.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/cells.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/color.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/color_triplet.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/columns.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/console.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/constrain.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/containers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/control.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/default_styles.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/diagnose.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/emoji.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/errors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/file_proxy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/filesize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/highlighter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/json.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/jupyter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/layout.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/live.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/live_render.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/logging.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/markup.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/measure.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/padding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/pager.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/palette.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/panel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/pretty.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/progress.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/progress_bar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/prompt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/protocol.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/region.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/repr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/rule.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/scope.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/screen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/segment.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/spinner.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/status.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/style.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/styled.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/syntax.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/table.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/terminal_theme.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/theme.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/themes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/traceback.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/rich/tree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/six.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tenacity/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tenacity/_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tenacity/after.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tenacity/before.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tenacity/nap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tenacity/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tenacity/retry.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tenacity/stop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tenacity/wait.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tomli/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tomli/_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tomli/_re.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tomli/_types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/tomli/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/truststore/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/truststore/_api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/truststore/_macos.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/truststore/_openssl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/truststore/_windows.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/truststore/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/typing_extensions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/_collections.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/_version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/connection.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/fields.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/filepost.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/packages/six.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/request.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/response.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/connection.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/queue.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/request.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/response.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/retry.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/url.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/urllib3/util/wait.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/vendor.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/webencodings/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/webencodings/labels.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/webencodings/mklabels.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/webencodings/tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pip/py.typed", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/appdirs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/importlib_resources/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/importlib_resources/readers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/importlib_resources/simple.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/more_itertools/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/more_itertools/more.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/more_itertools/recipes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/packaging/_manylinux.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/packaging/_musllinux.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/packaging/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/pyparsing/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/pyparsing/actions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/pyparsing/common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/pyparsing/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/pyparsing/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/pyparsing/helpers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/pyparsing/results.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/pyparsing/testing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/pyparsing/unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/pyparsing/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/_vendor/zipp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/pkg_resources/extern/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools-65.5.0.dist-info/INSTALLER", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools-65.5.0.dist-info/LICENSE", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools-65.5.0.dist-info/METADATA", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools-65.5.0.dist-info/RECORD", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools-65.5.0.dist-info/REQUESTED", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools-65.5.0.dist-info/WHEEL", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools-65.5.0.dist-info/entry_points.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools-65.5.0.dist-info/top_level.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_deprecation_warning.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/_collections.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/_functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/_macos_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/_msvccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/archive_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/bcppcompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/ccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/_framework_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/bdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/build.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/build_clib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/build_ext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/build_py.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/build_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/clean.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/install_data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/install_headers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/install_lib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/install_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/py37compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/register.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/sdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/command/upload.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/debug.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/dep_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/dir_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/dist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/errors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/extension.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/fancy_getopt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/file_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/filelist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/log.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/msvc9compiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/msvccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/py38compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/py39compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/spawn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/sysconfig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/text_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/unixccompiler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_distutils/versionpredicate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_entry_points.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_imp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_importlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_path.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_reqs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_metadata/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_metadata/_collections.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_metadata/_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_metadata/_functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_metadata/_meta.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_metadata/_text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_resources/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_resources/_adapters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_resources/_common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_resources/_compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_resources/_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_resources/_legacy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_resources/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_resources/readers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/importlib_resources/simple.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/jaraco/context.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/jaraco/functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/jaraco/text/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/more_itertools/more.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/ordered_set.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/packaging/__about__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/packaging/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/packaging/_manylinux.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/packaging/_musllinux.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/packaging/_structures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/packaging/markers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/packaging/requirements.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/packaging/tags.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/packaging/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/packaging/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/pyparsing/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/pyparsing/actions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/pyparsing/common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/pyparsing/core.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/pyparsing/exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/pyparsing/helpers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/pyparsing/results.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/pyparsing/testing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/pyparsing/unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/pyparsing/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/tomli/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/tomli/_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/tomli/_re.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/tomli/_types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/typing_extensions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/_vendor/zipp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/archive_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/build_meta.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/cli-32.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/cli-64.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/cli-arm64.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/cli.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/alias.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/bdist_egg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/bdist_rpm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/build.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/build_clib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/build_ext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/build_py.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/develop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/dist_info.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/easy_install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/editable_wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/egg_info.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/install.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/install_egg_info.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/install_lib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/install_scripts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/launcher manifest.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/py36compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/register.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/rotate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/saveopts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/sdist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/setopt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/upload.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/command/upload_docs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/config/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/config/_validate_pyproject/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/config/_validate_pyproject/error_reporting.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/config/expand.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/config/pyprojecttoml.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/config/setupcfg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/dep_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/depends.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/discovery.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/dist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/errors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/extension.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/extern/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/glob.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/gui-32.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/gui-64.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/gui-arm64.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/gui.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/installer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/launch.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/logging.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/monkey.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/msvc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/namespaces.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/package_index.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/py34compat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/sandbox.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/script (dev).tmpl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/script.tmpl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/unicode_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/wheel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site-packages/setuptools/windows_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/site.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/smtpd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/smtplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/sndhdr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/socket.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/socketserver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/sqlite3/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/sqlite3/dbapi2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/sqlite3/dump.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/sre_compile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/sre_constants.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/sre_parse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/ssl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/stat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/statistics.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/string.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/stringprep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/struct.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/subprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/sunau.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/symtable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/sysconfig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tabnanny.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tarfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/telnetlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tempfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/.ruff.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/Sine-1000Hz-300ms.aif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/_test_atexit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/_test_eintr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/_test_embed_set_config.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/_test_embed_structseq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/_test_multiprocessing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/_test_venv_multiprocessing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/archiver_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-alaw.aifc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-pcm16.aiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-pcm16.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-pcm16.wav", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-pcm24.aiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-pcm24.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-pcm24.wav", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-pcm32.aiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-pcm32.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-pcm32.wav", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-pcm8.aiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-pcm8.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-pcm8.wav", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-ulaw.aifc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiodata/pluck-ulaw.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiotest.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audiotests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/audit-tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/autotest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/bisect_cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/allsans.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/badcert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/badkey.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/capath/4e1295a3.0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/capath/5ed36f99.0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/capath/6e88d7b8.0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/capath/99d0fa06.0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/capath/b1930218.0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/capath/ceff1710.0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/ffdh3072.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/idnsans.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/keycert.passwd.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/keycert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/keycert2.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/keycert3.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/keycert4.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/keycertecc.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/make_ssl_certs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/nokia.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/nosan.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/nullbytecert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/nullcert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/pycacert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/pycakey.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/revocation.crl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/secp384r1.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/selfsigned_pythontestdotnet.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/ssl_cert.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/ssl_key.passwd.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/ssl_key.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/certdata/talos-2019-0758.pem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/big5-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/big5.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/big5hkscs-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/big5hkscs.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/cp949-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/cp949.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/euc_jisx0213-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/euc_jisx0213.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/euc_jp-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/euc_jp.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/euc_kr-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/euc_kr.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/gb18030-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/gb18030.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/gb2312-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/gb2312.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/gbk-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/gbk.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/hz-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/hz.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/iso2022_jp-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/iso2022_jp.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/iso2022_kr-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/iso2022_kr.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/johab-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/johab.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/shift_jis-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/shift_jis.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/shift_jisx0213-utf8.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cjkencodings/shift_jisx0213.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/clinic.test.c", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/cmath_testcases.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/configdata/cfgparser.1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/configdata/cfgparser.2", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/configdata/cfgparser.3", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/crashers/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/crashers/bogus_code_obj.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/crashers/gc_inspection.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/crashers/infinite_loop_re.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/crashers/mutation_inside_cyclegc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/crashers/recursive_call.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/crashers/trace_at_recursion_limit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/crashers/underlying_dict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/curses_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/data/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/datetimetester.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/abs.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/add.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/and.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/base.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/clamp.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/class.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/compare.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/comparetotal.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/comparetotmag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/copy.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/copyabs.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/copynegate.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/copysign.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddAbs.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddAdd.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddAnd.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddBase.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddCanonical.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddClass.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddCompare.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddCompareSig.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddCompareTotal.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddCompareTotalMag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddCopy.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddCopyAbs.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddCopyNegate.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddCopySign.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddDivide.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddDivideInt.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddEncode.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddFMA.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddInvert.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddLogB.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddMax.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddMaxMag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddMin.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddMinMag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddMinus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddMultiply.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddNextMinus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddNextPlus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddNextToward.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddOr.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddPlus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddQuantize.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddReduce.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddRemainder.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddRemainderNear.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddRotate.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddSameQuantum.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddScaleB.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddShift.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddSubtract.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddToIntegral.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ddXor.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/decDouble.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/decQuad.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/decSingle.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/divide.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/divideint.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqAbs.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqAdd.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqAnd.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqBase.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqCanonical.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqClass.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqCompare.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqCompareSig.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqCompareTotal.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqCompareTotalMag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqCopy.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqCopyAbs.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqCopyNegate.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqCopySign.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqDivide.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqDivideInt.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqEncode.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqFMA.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqInvert.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqLogB.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqMax.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqMaxMag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqMin.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqMinMag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqMinus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqMultiply.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqNextMinus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqNextPlus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqNextToward.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqOr.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqPlus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqQuantize.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqReduce.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqRemainder.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqRemainderNear.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqRotate.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqSameQuantum.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqScaleB.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqShift.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqSubtract.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqToIntegral.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dqXor.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dsBase.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/dsEncode.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/exp.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/extra.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/fma.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/inexact.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/invert.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/ln.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/log10.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/logb.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/max.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/maxmag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/min.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/minmag.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/minus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/multiply.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/nextminus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/nextplus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/nexttoward.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/or.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/plus.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/power.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/powersqrt.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/quantize.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/randomBound32.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/randoms.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/reduce.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/remainder.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/remainderNear.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/rescale.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/rotate.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/rounding.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/samequantum.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/scaleb.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/shift.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/squareroot.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/subtract.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/testall.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/tointegral.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/tointegralx.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/decimaltestdata/xor.decTest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dis_module.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/assert_usable.d", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/assert_usable.stp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/call_stack.d", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/call_stack.d.expected", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/call_stack.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/call_stack.stp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/call_stack.stp.expected", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/gc.d", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/gc.d.expected", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/gc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/gc.stp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/gc.stp.expected", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/instance.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/line.d", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/line.d.expected", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/line.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/empty.vbs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/encoded_modules/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/encoded_modules/module_iso_8859_1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/encoded_modules/module_koi8_r.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/exception_hierarchy.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/floating_points.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/fork_wait.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/formatfloat_testcases.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/ieee754.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python-raw.jpg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.bmp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.exr", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.jpg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.pbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.pgm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.ppm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.ras", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.sgi", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.tiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.webp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imghdrdata/python.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/imp_dummy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/leakers/README.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/leakers/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/leakers/test_ctypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/leakers/test_selftype.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/cmdline.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/filter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/findtests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/logger.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/mypy.ini", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/pgo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/refleak.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/result.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/results.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/run_workers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/runtests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/save_env.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/setup.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/single.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/testresult.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/win_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/libregrtest/worker.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/list_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/lock_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/mailcap.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/mapping_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/math_testcases.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/memory_watchdog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/mime.types", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/mock_socket.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/mp_fork_bomb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/mp_preload.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/multibytecodec_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/pickletester.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/profilee.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/pstats.pck", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/pyclbr_input.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/pydoc_mod.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/pydocfodder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/pythoninfo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/randv2_32.pck", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/randv2_64.pck", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/randv3.pck", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/re_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/recursion.tar", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/regrtest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/regrtestdata/import_from_tests/test_regrtest_a.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/regrtestdata/import_from_tests/test_regrtest_b/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/regrtestdata/import_from_tests/test_regrtest_b/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/regrtestdata/import_from_tests/test_regrtest_c.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/relimport.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/reperf.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/seq_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/signalinterproctester.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/sndhdrdata/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/sndhdrdata/sndhdr.8svx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/sndhdrdata/sndhdr.aifc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/sndhdrdata/sndhdr.aiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/sndhdrdata/sndhdr.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/sndhdrdata/sndhdr.hcom", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/sndhdrdata/sndhdr.sndt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/sndhdrdata/sndhdr.voc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/sndhdrdata/sndhdr.wav", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/sortperf.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/ssl_servers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/ssltests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/string_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/subprocessdata/fd_status.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/subprocessdata/input_reader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/subprocessdata/qcat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/subprocessdata/qgrep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/subprocessdata/sigchild_ignore.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/support/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/support/bytecode_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/support/hashlib_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/support/import_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/support/interpreters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/support/logging_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/support/os_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/support/pty_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/support/script_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/support/socket_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/support/threading_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/support/warnings_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test___all__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test__locale.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test__opcode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test__osx_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test__xxsubinterpreters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_abstract_numbers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_aifc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_argparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_array.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asdl_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ast.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncgen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asynchat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/echo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/echo2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/echo3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/functional.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_base_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_buffered_proto.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_context.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_futures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_futures2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_locks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_pep492.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_proactor_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_protocols.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_queues.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_runners.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_selector_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_sendfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_server.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_sock_lowlevel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_ssl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_sslproto.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_streams.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_subprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_taskgroups.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_tasks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_threads.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_timeouts.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_transports.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_unix_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_waitfor.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_windows_events.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/test_windows_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncio/utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_asyncore.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_atexit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_audioop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_audit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_augassign.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_base64.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_baseexception.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_bdb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_bigaddrspace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_bigmem.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_binascii.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_binop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_bisect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_bool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_buffer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_bufio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_builtin.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_bytes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_bz2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_c_locale_coercion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_calendar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_call.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_capi/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_capi/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_capi/test_codecs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_capi/test_eval_code_ex.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_capi/test_getargs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_capi/test_misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_capi/test_structmembers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_capi/test_unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_cgi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_cgitb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_charmapcodec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_check_c_globals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_class.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_clinic.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_cmath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_cmd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_cmd_line.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_cmd_line_script.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_code.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_code_module.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codeccallbacks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codecencodings_cn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codecencodings_hk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codecencodings_iso2022.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codecencodings_jp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codecencodings_kr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codecencodings_tw.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codecmaps_cn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codecmaps_hk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codecmaps_jp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codecmaps_kr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codecmaps_tw.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codecs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_codeop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_collections.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_colorsys.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_compare.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_compile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_compileall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_complex.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_concurrent_futures/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_concurrent_futures/executor.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_concurrent_futures/test_as_completed.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_concurrent_futures/test_deadlock.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_concurrent_futures/test_future.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_concurrent_futures/test_init.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_concurrent_futures/test_process_pool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_concurrent_futures/test_shutdown.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_concurrent_futures/test_thread_pool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_concurrent_futures/test_wait.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_concurrent_futures/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_configparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_contains.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_context.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_contextlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_contextlib_async.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_copy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_copyreg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_coroutines.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_cppext/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_cppext/extension.cpp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_cppext/setup.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_cprofile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_crashers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_crypt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_csv.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ctypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_curses.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dataclasses/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dataclasses/dataclass_module_1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dataclasses/dataclass_module_1_str.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dataclasses/dataclass_module_2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dataclasses/dataclass_module_2_str.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dataclasses/dataclass_textanno.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_datetime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dbm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dbm_dumb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dbm_gnu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dbm_ndbm.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_decimal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_decorators.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_defaultdict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_deque.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_descr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_descrtut.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_devpoll.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dict_version.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dictcomps.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dictviews.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_difflib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_difflib_expect.html", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dis.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_distutils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_doctest/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_doctest/doctest_aliases.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_doctest/doctest_lineno.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_doctest/sample_doctest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_doctest/sample_doctest_no_docstrings.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_doctest/sample_doctest_no_doctests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_doctest/test_doctest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_doctest/test_doctest.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_doctest/test_doctest2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_doctest/test_doctest2.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_doctest/test_doctest3.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_doctest/test_doctest4.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_docxmlrpc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dtrace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dynamic.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_dynamicclassattribute.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_eintr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_01.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_02.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_03.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_04.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_05.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_06.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_07.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_08.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_09.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_10.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_11.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_12.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_12a.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_13.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_14.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_15.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_16.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_17.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_18.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_19.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_20.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_21.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_22.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_23.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_24.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_25.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_26.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_27.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_28.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_29.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_30.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_31.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_32.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_33.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_34.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_35.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_36.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_37.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_38.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_39.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_40.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_41.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_42.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_43.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_44.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_45.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_46.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/msg_47.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.bmp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.exr", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.jpg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.pbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.pgm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.ppm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.ras", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.sgi", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.tiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.webp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/python.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/sndhdr.aifc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/sndhdr.aiff", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/sndhdr.au", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/data/sndhdr.wav", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test__encoded_words.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test__header_value_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test_asian_codecs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test_contentmanager.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test_defect_handling.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test_email.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test_generator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test_headerregistry.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test_inversion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test_message.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test_pickleable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test_policy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/test_utils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_email/torture_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_embed.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ensurepip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_enum.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_enumerate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_eof.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_epoll.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_errno.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_except_star.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_exception_group.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_exception_hierarchy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_exception_variations.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_extcall.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_faulthandler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_fcntl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_file_eintr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_filecmp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_fileinput.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_fileio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_fileutils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_finalization.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_float.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_flufl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_fnmatch.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_fork1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_format.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_fractions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_frame.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_frozen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_fstring.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ftplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_funcattrs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_functools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/badsyntax_future10.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/badsyntax_future3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/badsyntax_future4.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/badsyntax_future5.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/badsyntax_future6.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/badsyntax_future7.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/badsyntax_future8.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/badsyntax_future9.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/future_test1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/future_test2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/test_future.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/test_future_flags.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/test_future_multiple_features.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/test_future_multiple_imports.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_future_stmt/test_future_single_import.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_gc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_gdb/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_gdb/gdb_sample.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_gdb/test_backtrace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_gdb/test_cfunction.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_gdb/test_cfunction_full.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_gdb/test_misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_gdb/test_pretty_print.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_gdb/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_generator_stop.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_generators.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_genericalias.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_genericclass.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_genericpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_genexps.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_getopt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_getpass.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_getpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_gettext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_glob.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_global.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_grammar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_graphlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_grp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_gzip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_hash.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_hashlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_heapq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_hmac.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_html.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_htmlparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_http_cookiejar.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_http_cookies.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_httplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_httpservers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_idle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_imaplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_imghdr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_imp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/basic.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/basic2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/binding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/binding2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/from_cycle1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/from_cycle2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/indirect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/rebinding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/rebinding2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/source.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/subpackage.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/subpkg2/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/subpkg2/parent/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/subpkg2/parent/child.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/subpkg/subpackage2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/subpkg/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/use.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/circular_imports/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/double_const.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/package2/submodule1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/package2/submodule2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/package/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/package/submodule.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/unwritable/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_import/data/unwritable/x.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/builtin/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/builtin/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/builtin/test_finder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/builtin/test_loader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data01/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data01/binary.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data01/subdirectory/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data01/subdirectory/binary.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data01/utf-16.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data01/utf-8.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data02/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data02/one/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data02/one/resource1.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data02/two/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data02/two/resource2.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data03/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data03/namespace/portion1/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data03/namespace/portion2/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data03/namespace/resource1.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data/example-21.12-py3-none-any.whl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data/example-21.12-py3.6.egg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/data/example2-1.0.0-py3-none-any.whl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/extension/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/extension/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/extension/test_case_sensitivity.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/extension/test_finder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/extension/test_loader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/extension/test_path_hook.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/fixtures.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/frozen/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/frozen/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/frozen/test_finder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/frozen/test_loader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/import_/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/import_/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/import_/test___loader__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/import_/test___package__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/import_/test_api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/import_/test_caching.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/import_/test_fromlist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/import_/test_meta_path.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/import_/test_packages.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/import_/test_path.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/import_/test_relative_imports.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/one.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/two.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/missing_directory.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/nested_portion1.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/portion1/foo/one.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/portion2/foo/two.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/project1/parent/child/one.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/project2/parent/child/two.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/project3/parent/child/three.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespace_pkgs/top_level_portion1.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespacedata01/binary.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespacedata01/utf-16.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/namespacedata01/utf-8.file", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/partial/cfimport.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/partial/pool_in_threads.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/resources/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/resources/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/source/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/source/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/source/test_case_sensitivity.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/source/test_file_loader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/source/test_finder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/source/test_path_hook.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/source/test_source_encoding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/stubs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_abc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_compatibilty_files.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_contents.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_files.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_lazy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_locks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_metadata_api.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_namespace_pkgs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_open.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_path.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_pkg_import.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_read.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_reader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_resource.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_spec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_threaded_import.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_windows.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/test_zip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/threaded_import_hangers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/update-zips.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/zipdata01/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/zipdata01/ziptestdata.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/zipdata02/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_importlib/zipdata02/ziptestdata.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_index.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_inspect/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_inspect/inspect_fodder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_inspect/inspect_fodder2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_inspect/inspect_stock_annotations.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_inspect/inspect_stringized_annotations.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_inspect/inspect_stringized_annotations_2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_inspect/test_inspect.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_int.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_int_literal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_interpreters.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_io.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ioctl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ipaddress.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_isinstance.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_iter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_iterlen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_itertools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_decode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_default.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_dump.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_encode_basestring_ascii.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_enum.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_fail.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_float.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_indent.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_pass1.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_pass2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_pass3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_recursion.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_scanstring.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_separators.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_speedups.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_tool.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_json/test_unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_keyword.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_keywordonlyarg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_kqueue.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_largefile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_launcher.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_lib2to3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_linecache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_list.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_listcomps.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_lltrace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_locale.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_logging.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_long.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_longexp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_lzma.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_mailbox.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_mailcap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_marshal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_math.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_memoryio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_memoryview.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_metaclass.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_mimetypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_minidom.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_mmap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_module/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_module/bad_getattr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_module/bad_getattr2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_module/bad_getattr3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_module/final_a.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_module/final_b.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_module/good_getattr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_modulefinder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_msilib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multibytecodec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_fork/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_fork/test_manager.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_fork/test_misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_fork/test_processes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_fork/test_threads.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_forkserver/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_forkserver/test_manager.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_forkserver/test_misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_forkserver/test_processes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_forkserver/test_threads.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_main_handling.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_spawn/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_spawn/test_manager.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_spawn/test_misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_spawn/test_processes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_multiprocessing_spawn/test_threads.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_named_expressions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_netrc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_nis.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_nntplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ntpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_numeric_tower.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_opcache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_opcodes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_openpty.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_operator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_optparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ordered_dict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_os.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ossaudiodev.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_osx_env.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pathlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_patma.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pdb.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_peepholer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_peg_generator/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_peg_generator/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_peg_generator/test_c_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_peg_generator/test_first_sets.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_peg_generator/test_grammar_validator.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_peg_generator/test_pegen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pep646_syntax.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pickle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_picklebuffer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pickletools.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pipes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pkg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pkgutil.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_platform.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_plistlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_poll.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_popen.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_poplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_positional_only_arg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_posix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_posixpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pow.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pprint.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_print.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_profile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_property.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pstats.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pty.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pulldom.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pwd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_py_compile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pyclbr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pydoc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_pyexpat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_queue.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_quopri.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_raise.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_random.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_range.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_re.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_readline.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_regrtest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_repl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_reprlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_resource.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_richcmp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_rlcompleter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_robotparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_runpy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sax.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sched.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_scope.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_script_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_secrets.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_select.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_selectors.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_set.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_setcomps.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_shelve.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_shlex.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_shutil.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_signal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_site.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_slice.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_smtpd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_smtplib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_smtpnet.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sndhdr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_socket.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_socketserver.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sort.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_source_encoding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_spwd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sqlite3/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sqlite3/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sqlite3/test_backup.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sqlite3/test_dbapi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sqlite3/test_dump.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sqlite3/test_factory.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sqlite3/test_hooks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sqlite3/test_regression.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sqlite3/test_transactions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sqlite3/test_types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sqlite3/test_userfunctions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ssl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_stable_abi_ctypes.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_startfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_stat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_statistics.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_strftime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_string.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_string_literals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_stringprep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_strptime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_strtod.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_struct.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_structseq.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_subclassinit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_subprocess.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sunau.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sundry.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_super.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_symtable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_syntax.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sys.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sys_setprofile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sys_settrace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_sysconfig.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_syslog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tabnanny.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tarfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tcl.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_telnetlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tempfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_termios.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_textwrap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_thread.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_threadedtempfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_threading.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_threading_local.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_threadsignals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_time.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_timeit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_timeout.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tokenize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/burntsushi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/array-missing-comma.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/array-of-tables/overwrite-array-in-parent.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/array-of-tables/overwrite-bool-with-aot.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/array/file-end-after-val.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/array/unclosed-after-item.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/array/unclosed-empty.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/basic-str-ends-in-escape.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/boolean/invalid-false-casing.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/boolean/invalid-true-casing.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/dates-and-times/invalid-day.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/dotted-keys/access-non-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/dotted-keys/extend-defined-aot.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/dotted-keys/extend-defined-table-with-subtable.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/dotted-keys/extend-defined-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/inline-table-missing-comma.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/inline-table/define-twice-in-subtable.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/inline-table/define-twice.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/inline-table/file-end-after-key-val.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/inline-table/mutate.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/inline-table/override-val-in-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/inline-table/override-val-with-array.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/inline-table/override-val-with-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/inline-table/overwrite-implicitly.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/inline-table/overwrite-value-in-inner-array.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/inline-table/overwrite-value-in-inner-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/inline-table/unclosed-empty.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/invalid-comment-char.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/invalid-escaped-unicode.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/invalid-hex.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/keys-and-vals/ends-early-table-def.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/keys-and-vals/ends-early.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/keys-and-vals/no-value.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/keys-and-vals/only-ws-after-dot.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/keys-and-vals/overwrite-with-deep-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/literal-str/unclosed.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/missing-closing-double-square-bracket.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/missing-closing-square-bracket.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/multiline-basic-str/carriage-return.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/multiline-basic-str/escape-only.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/multiline-basic-str/file-ends-after-opening.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/multiline-basic-str/last-line-escape.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/multiline-basic-str/unclosed-ends-in-whitespace-escape.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/multiline-literal-str/file-ends-after-opening.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/multiline-literal-str/unclosed.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/non-scalar-escaped.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/table/eof-after-opening.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/table/redefine-1.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/table/redefine-2.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/unclosed-multiline-string.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/invalid/unclosed-string.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/apostrophes-in-literal-string.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/apostrophes-in-literal-string.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/array/array-subtables.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/array/array-subtables.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/array/open-parent-table.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/array/open-parent-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/boolean.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/boolean.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/dates-and-times/datetimes.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/dates-and-times/datetimes.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/dates-and-times/localtime.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/dates-and-times/localtime.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/empty-inline-table.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/empty-inline-table.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/five-quotes.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/five-quotes.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/hex-char.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/hex-char.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/multiline-basic-str/ends-in-whitespace-escape.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/multiline-basic-str/ends-in-whitespace-escape.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/no-newlines.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/no-newlines.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/trailing-comma.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/data/valid/trailing-comma.toml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/test_data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/test_error.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tomllib/test_misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/test_fixcid.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/test_freeze.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/test_gprof2html.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/test_i18n.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/test_lll.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/test_md5sum.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/test_pathfix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/test_pdeps.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/test_pindent.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/test_reindent.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tools/test_sundry.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_trace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_traceback.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tracemalloc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ttk_guionly.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ttk_textonly.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tty.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_tuple.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_turtle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_type_annotations.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_type_cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_type_comments.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_typechecks.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_typing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_ucn.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_unary.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_unicode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_unicode_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_unicode_file_functions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_unicode_identifiers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_unicodedata.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_unittest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_univnewlines.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_unpack.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_unpack_ex.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_unparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_urllib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_urllib2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_urllib2_localnet.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_urllib2net.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_urllib_response.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_urllibnet.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_urlparse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_userdict.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_userlist.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_userstring.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_utf8_mode.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_utf8source.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_uu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_uuid.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_venv.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_wait3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_wait4.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_warnings/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_warnings/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_warnings/data/import_warning.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_warnings/data/stacklevel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_wave.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_weakref.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_weakset.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_webbrowser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_winconsoleio.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_winreg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_winsound.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_with.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_wsgiref.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_xdrlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_xml_dom_minicompat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_xml_etree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_xml_etree_c.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_xmlrpc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_xmlrpc_net.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_xxlimited.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_xxtestfuzz.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_yield_from.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_zipapp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_zipfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_zipfile64.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_zipimport.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_zipimport_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_zlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_zoneinfo/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_zoneinfo/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_zoneinfo/_support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_zoneinfo/data/update_test_data.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_zoneinfo/data/zoneinfo_data.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/test_zoneinfo/test_zoneinfo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/testcodec.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/testtar.tar", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/testtar.tar.xz", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tf_inherit_check.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/time_hashlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tokenizedata/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tokenizedata/bad_coding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tokenizedata/bad_coding2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tokenizedata/badsyntax_3131.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tokenizedata/badsyntax_pep3120.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tokenizedata/coding20731.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tokenizedata/tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tokenizedata/tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tokenizedata/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tokenizedata/tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tokenizedata/tokenize_tests.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tracedmodules/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/tracedmodules/testmod.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/typinganndata/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/typinganndata/_typed_dict_helper.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/typinganndata/ann_module.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/typinganndata/ann_module2.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/typinganndata/ann_module3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/typinganndata/ann_module4.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/typinganndata/ann_module5.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/typinganndata/ann_module6.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/typinganndata/ann_module7.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/typinganndata/ann_module8.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/typinganndata/ann_module9.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/typinganndata/mod_generics_cache.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/win_console_handler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/c14nComment.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/c14nPrefixQname.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/c14nPrefixQnameXpathElem.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/c14nQname.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/c14nQnameElem.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/c14nQnameXpathElem.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/c14nTrim.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/doc.dtd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/doc.xsl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inC14N1.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inC14N2.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inC14N3.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inC14N4.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inC14N5.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inC14N6.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inNsContent.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inNsDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inNsPushdown.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inNsRedecl.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inNsSort.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inNsSuperfluous.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/inNsXml.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inC14N1_c14nComment.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inC14N1_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inC14N2_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inC14N2_c14nTrim.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inC14N3_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inC14N3_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inC14N3_c14nTrim.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inC14N4_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inC14N4_c14nTrim.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inC14N5_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inC14N5_c14nTrim.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inC14N6_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsContent_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsContent_c14nPrefixQnameXpathElem.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsContent_c14nQnameElem.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsContent_c14nQnameXpathElem.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsDefault_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsDefault_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsPushdown_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsPushdown_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsRedecl_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsRedecl_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsSort_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsSort_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsSuperfluous_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsSuperfluous_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsXml_c14nDefault.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsXml_c14nPrefix.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsXml_c14nPrefixQname.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/out_inNsXml_c14nQname.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/c14n-20/world.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/expat224_utf8_bug.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/simple-ns.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/simple.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/test.xml", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltestdata/test.xml.out", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/xmltests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/zip_cp437_header.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/zipdir.zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/ziptestdata/README.md", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/ziptestdata/exe_with_z64", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/ziptestdata/exe_with_zip", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/ziptestdata/header.sh", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/test/ziptestdata/testdata_module_inside_zip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/textwrap.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/this.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/threading.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/timeit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/colorchooser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/commondialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/constants.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/dialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/dnd.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/filedialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/font.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/messagebox.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/scrolledtext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/simpledialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_tkinter/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_tkinter/test_colorchooser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_tkinter/test_font.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_tkinter/test_geometry_managers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_tkinter/test_images.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_tkinter/test_loadtk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_tkinter/test_messagebox.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_tkinter/test_misc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_tkinter/test_simpledialog.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_tkinter/test_text.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_tkinter/test_variables.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_tkinter/test_widgets.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_ttk/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_ttk/test_extensions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_ttk/test_style.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/test_ttk/test_widgets.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/test/widget_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/tix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tkinter/ttk.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/token.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tokenize.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tomllib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tomllib/_parser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tomllib/_re.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tomllib/_types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/trace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/traceback.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tracemalloc.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/tty.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/bytedesign.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/chaos.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/clock.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/colormixer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/forest.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/fractalcurves.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/lindenmayer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/minimal_hanoi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/nim.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/paint.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/peace.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/penrose.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/planet_and_moon.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/rosette.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/round_dance.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/sorting_animate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/tree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/turtle.cfg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/two_canvases.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/turtledemo/yinyang.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/typing.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/_log.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/async_case.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/case.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/loader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/main.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/mock.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/result.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/runner.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/signals.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/suite.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/_test_warnings.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/dummy.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_assertions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_async_case.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_break.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_case.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_discovery.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_functiontestcase.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_loader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_program.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_result.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_runner.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_setups.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_skipping.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/test_suite.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/testmock/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/testmock/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/testmock/support.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/testmock/testasync.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/testmock/testcallable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/testmock/testhelpers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/testmock/testmagicmethods.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/testmock/testmock.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/testmock/testpatch.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/testmock/testsealable.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/testmock/testsentinel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/test/testmock/testwith.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/unittest/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/urllib/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/urllib/error.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/urllib/parse.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/urllib/request.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/urllib/response.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/urllib/robotparser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/uu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/uuid.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/venv/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/venv/__main__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/venv/scripts/common/Activate.ps1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/venv/scripts/common/activate", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/venv/scripts/nt/activate.bat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/venv/scripts/nt/deactivate.bat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/venv/scripts/nt/python.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/venv/scripts/nt/pythonw.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/venv/scripts/posix/activate.csh", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/venv/scripts/posix/activate.fish", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/warnings.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/wave.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/weakref.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/webbrowser.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/wsgiref/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/wsgiref/handlers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/wsgiref/headers.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/wsgiref/simple_server.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/wsgiref/types.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/wsgiref/util.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/wsgiref/validate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xdrlib.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/dom/NodeFilter.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/dom/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/dom/domreg.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/dom/expatbuilder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/dom/minicompat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/dom/minidom.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/dom/pulldom.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/dom/xmlbuilder.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/etree/ElementInclude.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/etree/ElementPath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/etree/ElementTree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/etree/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/etree/cElementTree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/parsers/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/parsers/expat.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/sax/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/sax/_exceptions.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/sax/expatreader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/sax/handler.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/sax/saxutils.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xml/sax/xmlreader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xmlrpc/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xmlrpc/client.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/xmlrpc/server.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/zipapp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/zipfile.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/zipimport.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/zoneinfo/__init__.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/zoneinfo/_common.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/zoneinfo/_tzpath.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Lib/zoneinfo/_zoneinfo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/NEWS.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Scripts/pip.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Scripts/pip3.11.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Scripts/pip3.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/beer.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/eiffel.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/hanoi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/life.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/markov.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/mcast.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/queens.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/redemo.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/rpython.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/rpythond.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/sortvisu.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/spreadsheet.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/demo/vector.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/i18n/makelocalealias.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/i18n/msgfmt.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/i18n/pygettext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/2to3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/abitype.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/analyze_dxp.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/byext.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/byteyears.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/checkpip.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/cleanfuture.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/combinerefs.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/copytime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/crlf.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/db2pickle.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/deepfreeze.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/diff.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/dutree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/eptags.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/find-uname.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/find_recursionlimit.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/finddiv.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/findlinksto.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/findnocoding.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/fixcid.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/fixdiv.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/fixheader.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/fixnotice.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/fixps.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/freeze_modules.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/generate_global_objects.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/generate_opcode_h.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/generate_re_casefix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/generate_sre_constants.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/generate_stdlib_module_names.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/generate_token.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/get-remote-certificate.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/google.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/gprof2html.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/highlight.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/ifdef.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/import_diagnostics.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/lfcr.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/linktree.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/lll.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/mailerdaemon.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/make_ctype.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/md5sum.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/mkreal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/ndiff.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/nm2def.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/objgraph.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/parse_html5_entities.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/parseentities.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/patchcheck.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/pathfix.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/pdeps.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/pep384_macrocheck.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/pickle2db.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/pindent.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/ptags.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/pydoc3.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/pysource.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/reindent-rst.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/reindent.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/rgrep.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/run_tests.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/smelly.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/stable_abi.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/startuptime.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/suff.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/summarize_stats.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/texi2html.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/umarshal.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/untabify.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/update_file.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/var_access_benchmark.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/verify_ensurepip_wheels.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/which.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/Tools/scripts/win_add2path.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/python.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/python3.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/python311.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/pythonw.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/dde1.4/pkgIndex.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/dde1.4/tcldde14.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/nmake/nmakehlp.c", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/nmake/rules.vc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/nmake/targets.vc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/nmake/tcl.nmake", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/nmake/x86_64-w64-mingw32-nmakehlp.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/reg1.3/pkgIndex.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/reg1.3/tclreg13.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/auto.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/clock.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/ascii.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/big5.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cns11643.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp1250.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp1251.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp1252.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp1253.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp1254.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp1255.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp1256.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp1257.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp1258.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp437.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp737.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp775.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp850.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp852.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp855.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp857.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp860.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp861.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp862.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp863.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp864.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp865.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp866.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp869.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp874.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp932.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp936.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp949.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/cp950.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/dingbats.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/ebcdic.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/euc-cn.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/euc-jp.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/euc-kr.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/gb12345.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/gb1988.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/gb2312-raw.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/gb2312.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso2022-jp.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso2022-kr.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso2022.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-1.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-10.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-11.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-13.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-14.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-15.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-16.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-2.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-3.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-4.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-5.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-6.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-7.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-8.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/iso8859-9.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/jis0201.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/jis0208.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/jis0212.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/koi8-r.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/koi8-u.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/ksc5601.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/macCentEuro.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/macCroatian.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/macCyrillic.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/macDingbats.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/macGreek.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/macIceland.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/macJapan.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/macRoman.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/macRomania.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/macThai.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/macTurkish.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/macUkraine.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/shiftjis.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/symbol.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/encoding/tis-620.enc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/history.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/http1.0/http.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/http1.0/pkgIndex.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/init.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/af.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/af_za.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ar.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ar_in.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ar_jo.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ar_lb.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ar_sy.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/be.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/bg.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/bn.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/bn_in.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ca.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/cs.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/da.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/de.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/de_at.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/de_be.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/el.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_au.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_be.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_bw.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_ca.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_gb.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_hk.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_ie.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_in.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_nz.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_ph.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_sg.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_za.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/en_zw.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/eo.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_ar.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_bo.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_cl.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_co.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_cr.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_do.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_ec.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_gt.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_hn.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_mx.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_ni.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_pa.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_pe.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_pr.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_py.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_sv.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_uy.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/es_ve.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/et.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/eu.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/eu_es.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/fa.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/fa_in.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/fa_ir.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/fi.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/fo.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/fo_fo.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/fr.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/fr_be.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/fr_ca.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/fr_ch.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ga.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ga_ie.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/gl.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/gl_es.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/gv.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/gv_gb.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/he.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/hi.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/hi_in.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/hr.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/hu.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/id.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/id_id.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/is.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/it.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/it_ch.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ja.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/kl.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/kl_gl.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ko.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ko_kr.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/kok.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/kok_in.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/kw.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/kw_gb.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/lt.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/lv.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/mk.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/mr.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/mr_in.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ms.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ms_my.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/mt.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/nb.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/nl.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/nl_be.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/nn.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/pl.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/pt.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/pt_br.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ro.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ru.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ru_ua.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/sh.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/sk.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/sl.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/sq.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/sr.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/sv.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/sw.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ta.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/ta_in.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/te.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/te_in.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/th.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/tr.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/uk.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/vi.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/zh.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/zh_cn.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/zh_hk.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/zh_sg.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/msgs/zh_tw.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/opt0.4/optparse.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/opt0.4/pkgIndex.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/package.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/parray.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/safe.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tclIndex", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tm.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Abidjan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Accra", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Addis_Ababa", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Algiers", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Asmara", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Asmera", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Bamako", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Bangui", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Banjul", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Bissau", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Blantyre", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Brazzaville", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Bujumbura", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Cairo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Casablanca", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Ceuta", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Conakry", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Dakar", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Dar_es_Salaam", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Djibouti", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Douala", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/El_Aaiun", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Freetown", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Gaborone", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Harare", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Johannesburg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Juba", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Kampala", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Khartoum", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Kigali", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Kinshasa", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Lagos", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Libreville", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Lome", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Luanda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Lubumbashi", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Lusaka", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Malabo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Maputo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Maseru", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Mbabane", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Mogadishu", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Monrovia", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Nairobi", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Ndjamena", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Niamey", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Nouakchott", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Ouagadougou", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Porto-Novo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Sao_Tome", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Timbuktu", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Tripoli", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Tunis", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Africa/Windhoek", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Adak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Anchorage", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Anguilla", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Antigua", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Araguaina", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/Buenos_Aires", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/Catamarca", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/ComodRivadavia", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/Cordoba", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/Jujuy", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/La_Rioja", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/Mendoza", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/Rio_Gallegos", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/Salta", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/San_Juan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/San_Luis", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/Tucuman", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Argentina/Ushuaia", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Aruba", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Asuncion", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Atikokan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Atka", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Bahia", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Bahia_Banderas", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Barbados", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Belem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Belize", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Blanc-Sablon", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Boa_Vista", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Bogota", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Boise", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Buenos_Aires", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Cambridge_Bay", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Campo_Grande", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Cancun", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Caracas", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Catamarca", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Cayenne", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Cayman", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Chicago", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Chihuahua", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Coral_Harbour", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Cordoba", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Costa_Rica", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Creston", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Cuiaba", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Curacao", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Danmarkshavn", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Dawson", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Dawson_Creek", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Denver", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Detroit", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Dominica", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Edmonton", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Eirunepe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/El_Salvador", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Ensenada", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Fort_Nelson", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Fort_Wayne", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Fortaleza", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Glace_Bay", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Godthab", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Goose_Bay", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Grand_Turk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Grenada", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Guadeloupe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Guatemala", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Guayaquil", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Guyana", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Halifax", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Havana", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Hermosillo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Indiana/Indianapolis", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Indiana/Knox", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Indiana/Marengo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Indiana/Petersburg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Indiana/Tell_City", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Indiana/Vevay", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Indiana/Vincennes", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Indiana/Winamac", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Indianapolis", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Inuvik", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Iqaluit", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Jamaica", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Jujuy", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Juneau", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Kentucky/Louisville", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Kentucky/Monticello", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Knox_IN", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Kralendijk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/La_Paz", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Lima", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Los_Angeles", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Louisville", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Lower_Princes", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Maceio", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Managua", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Manaus", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Marigot", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Martinique", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Matamoros", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Mazatlan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Mendoza", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Menominee", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Merida", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Metlakatla", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Mexico_City", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Miquelon", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Moncton", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Monterrey", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Montevideo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Montreal", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Montserrat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Nassau", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/New_York", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Nipigon", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Nome", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Noronha", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/North_Dakota/Beulah", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/North_Dakota/Center", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/North_Dakota/New_Salem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Nuuk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Ojinaga", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Panama", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Pangnirtung", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Paramaribo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Phoenix", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Port-au-Prince", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Port_of_Spain", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Porto_Acre", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Porto_Velho", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Puerto_Rico", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Punta_Arenas", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Rainy_River", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Rankin_Inlet", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Recife", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Regina", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Resolute", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Rio_Branco", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Rosario", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Santa_Isabel", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Santarem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Santiago", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Santo_Domingo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Sao_Paulo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Scoresbysund", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Shiprock", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Sitka", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/St_Barthelemy", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/St_Johns", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/St_Kitts", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/St_Lucia", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/St_Thomas", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/St_Vincent", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Swift_Current", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Tegucigalpa", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Thule", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Thunder_Bay", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Tijuana", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Toronto", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Tortola", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Vancouver", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Virgin", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Whitehorse", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Winnipeg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Yakutat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/America/Yellowknife", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Antarctica/Casey", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Antarctica/Davis", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Antarctica/DumontDUrville", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Antarctica/Macquarie", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Antarctica/Mawson", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Antarctica/McMurdo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Antarctica/Palmer", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Antarctica/Rothera", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Antarctica/South_Pole", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Antarctica/Syowa", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Antarctica/Troll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Antarctica/Vostok", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Arctic/Longyearbyen", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Aden", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Almaty", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Amman", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Anadyr", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Aqtau", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Aqtobe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Ashgabat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Ashkhabad", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Atyrau", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Baghdad", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Bahrain", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Baku", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Bangkok", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Barnaul", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Beirut", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Bishkek", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Brunei", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Calcutta", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Chita", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Choibalsan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Chongqing", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Chungking", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Colombo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Dacca", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Damascus", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Dhaka", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Dili", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Dubai", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Dushanbe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Famagusta", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Gaza", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Harbin", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Hebron", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Ho_Chi_Minh", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Hong_Kong", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Hovd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Irkutsk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Istanbul", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Jakarta", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Jayapura", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Jerusalem", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Kabul", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Kamchatka", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Karachi", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Kashgar", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Kathmandu", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Katmandu", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Khandyga", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Kolkata", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Krasnoyarsk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Kuala_Lumpur", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Kuching", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Kuwait", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Macao", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Macau", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Magadan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Makassar", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Manila", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Muscat", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Nicosia", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Novokuznetsk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Novosibirsk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Omsk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Oral", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Phnom_Penh", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Pontianak", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Pyongyang", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Qatar", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Qostanay", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Qyzylorda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Rangoon", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Riyadh", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Saigon", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Sakhalin", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Samarkand", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Seoul", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Shanghai", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Singapore", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Srednekolymsk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Taipei", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Tashkent", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Tbilisi", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Tehran", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Tel_Aviv", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Thimbu", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Thimphu", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Tokyo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Tomsk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Ujung_Pandang", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Ulaanbaatar", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Ulan_Bator", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Urumqi", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Ust-Nera", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Vientiane", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Vladivostok", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Yakutsk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Yangon", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Yekaterinburg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Asia/Yerevan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Atlantic/Azores", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Atlantic/Bermuda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Atlantic/Canary", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Atlantic/Cape_Verde", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Atlantic/Faeroe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Atlantic/Faroe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Atlantic/Jan_Mayen", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Atlantic/Madeira", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Atlantic/Reykjavik", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Atlantic/South_Georgia", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Atlantic/St_Helena", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Atlantic/Stanley", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/ACT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Adelaide", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Brisbane", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Broken_Hill", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Canberra", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Currie", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Darwin", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Eucla", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Hobart", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/LHI", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Lindeman", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Lord_Howe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Melbourne", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/NSW", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/North", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Perth", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Queensland", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/South", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Sydney", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Tasmania", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Victoria", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/West", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Australia/Yancowinna", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Brazil/Acre", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Brazil/DeNoronha", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Brazil/East", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Brazil/West", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/CET", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/CST6CDT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Canada/Atlantic", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Canada/Central", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Canada/East-Saskatchewan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Canada/Eastern", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Canada/Mountain", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Canada/Newfoundland", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Canada/Pacific", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Canada/Saskatchewan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Canada/Yukon", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Chile/Continental", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Chile/EasterIsland", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Cuba", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/EET", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/EST", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/EST5EDT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Egypt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Eire", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+10", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+11", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+12", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+2", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+3", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+4", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+5", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+6", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+7", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+8", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT+9", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-1", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-10", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-11", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-12", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-13", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-14", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-2", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-3", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-4", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-5", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-6", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-7", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-8", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT-9", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/GMT0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/Greenwich", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/UCT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/UTC", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/Universal", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Etc/Zulu", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Amsterdam", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Andorra", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Astrakhan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Athens", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Belfast", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Belgrade", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Berlin", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Bratislava", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Brussels", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Bucharest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Budapest", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Busingen", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Chisinau", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Copenhagen", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Dublin", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Gibraltar", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Guernsey", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Helsinki", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Isle_of_Man", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Istanbul", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Jersey", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Kaliningrad", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Kiev", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Kirov", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Lisbon", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Ljubljana", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/London", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Luxembourg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Madrid", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Malta", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Mariehamn", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Minsk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Monaco", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Moscow", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Nicosia", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Oslo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Paris", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Podgorica", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Prague", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Riga", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Rome", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Samara", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/San_Marino", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Sarajevo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Saratov", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Simferopol", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Skopje", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Sofia", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Stockholm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Tallinn", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Tirane", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Tiraspol", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Ulyanovsk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Uzhgorod", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Vaduz", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Vatican", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Vienna", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Vilnius", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Volgograd", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Warsaw", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Zagreb", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Zaporozhye", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Europe/Zurich", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/GB", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/GB-Eire", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/GMT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/GMT+0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/GMT-0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/GMT0", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Greenwich", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/HST", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Hongkong", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Iceland", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Indian/Antananarivo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Indian/Chagos", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Indian/Christmas", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Indian/Cocos", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Indian/Comoro", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Indian/Kerguelen", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Indian/Mahe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Indian/Maldives", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Indian/Mauritius", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Indian/Mayotte", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Indian/Reunion", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Iran", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Israel", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Jamaica", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Japan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Kwajalein", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Libya", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/MET", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/MST", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/MST7MDT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Mexico/BajaNorte", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Mexico/BajaSur", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Mexico/General", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/NZ", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/NZ-CHAT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Navajo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/PRC", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/PST8PDT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Apia", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Auckland", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Bougainville", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Chatham", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Chuuk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Easter", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Efate", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Enderbury", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Fakaofo", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Fiji", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Funafuti", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Galapagos", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Gambier", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Guadalcanal", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Guam", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Honolulu", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Johnston", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Kanton", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Kiritimati", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Kosrae", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Kwajalein", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Majuro", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Marquesas", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Midway", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Nauru", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Niue", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Norfolk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Noumea", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Pago_Pago", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Palau", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Pitcairn", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Pohnpei", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Ponape", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Port_Moresby", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Rarotonga", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Saipan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Samoa", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Tahiti", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Tarawa", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Tongatapu", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Truk", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Wake", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Wallis", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Pacific/Yap", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Poland", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Portugal", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/ROC", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/ROK", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Singapore", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/AST4", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/AST4ADT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/CST6", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/CST6CDT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/EST5", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/EST5EDT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/HST10", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/MST7", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/MST7MDT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/PST8", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/PST8PDT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/YST9", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/SystemV/YST9YDT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Turkey", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/UCT", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/Alaska", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/Aleutian", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/Arizona", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/Central", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/East-Indiana", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/Eastern", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/Hawaii", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/Indiana-Starke", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/Michigan", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/Mountain", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/Pacific", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/Pacific-New", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/US/Samoa", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/UTC", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Universal", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/W-SU", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/WET", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/tzdata/Zulu", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8.6/word.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl86t.lib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8/8.4/platform-1.0.18.tm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8/8.4/platform/shell-1.1.4.tm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8/8.5/msgcat-1.6.1.tm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8/8.5/tcltest-2.5.3.tm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tcl8/8.6/http-2.9.5.tm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tclConfig.sh", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tclooConfig.sh", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tclstub86.lib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Balloon.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/BtnBox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/CObjView.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/ChkList.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/ComboBox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Compat.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Console.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Control.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/DefSchm.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/DialogS.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/DirBox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/DirDlg.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/DirList.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/DirTree.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/DragDrop.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/DtlList.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/EFileBox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/EFileDlg.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Event.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/FileBox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/FileCbx.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/FileDlg.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/FileEnt.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/FloatEnt.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Grid.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/HList.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/HListDD.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/IconView.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Init.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/LabEntry.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/LabFrame.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/LabWidg.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/ListNBk.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Makefile", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Meter.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/MultView.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/NoteBook.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/OldUtil.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/OptMenu.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/PanedWin.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/PopMenu.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Primitiv.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/ResizeH.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/SGrid.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/SHList.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/SListBox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/STList.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/SText.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/SWidget.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/SWindow.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Select.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Shell.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/SimpDlg.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/StackWin.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/StatBar.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/StdBBox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/StdShell.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/TList.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Tix.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Tree.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Utils.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/VResize.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/VStack.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/VTree.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/Variable.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/WInfo.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/act_fold.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/act_fold.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/act_fold.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/balarrow.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/cbxarrow.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/ck_def.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/ck_off.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/ck_on.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/cross.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/decr.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/drop.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/file.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/file.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/file.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/folder.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/folder.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/folder.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/harddisk.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/hourglas.mask", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/hourglas.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/incr.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/info.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/info.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/maximize.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/minimize.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/minus.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/minus.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/minus.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/minusarm.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/minusarm.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/minusarm.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/mktransgif.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/network.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/no_entry.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/no_entry.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/openfile.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/openfold.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/openfold.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/openfold.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/plus.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/plus.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/plus.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/plusarm.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/plusarm.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/plusarm.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/resize1.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/resize2.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/restore.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/srcfile.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/srcfile.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/srcfile.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/system.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/textfile.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/textfile.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/textfile.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/tick.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/warning.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/bitmaps/warning.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/MkChoose.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/MkDirLis.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/MkSample.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/MkScroll.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/about.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/bold.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/capital.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/centerj.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/code.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/combobox.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/combobox.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/drivea.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/drivea.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/exit.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/filebox.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/filebox.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/harddisk.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/harddisk.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/italic.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/justify.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/leftj.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/netw.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/netw.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/network.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/network.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/optmenu.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/rightj.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/select.xpm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/tix.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/bitmaps/underlin.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/AllSampl.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/ArrowBtn.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/Balloon.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/BtnBox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/CObjView.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/ChkList.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/CmpImg.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/CmpImg1.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/CmpImg2.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/CmpImg3.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/CmpImg4.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/ComboBox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/Control.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/DirDlg.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/DirList.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/DirTree.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/DragDrop.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/DynTree.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/EFileDlg.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/EditGrid.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/FileDlg.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/FileEnt.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/HList1.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/LabEntry.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/LabFrame.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/ListNBK.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/Meter.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/NoteBook.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/OptMenu.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/PanedWin.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/PopMenu.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/SGrid0.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/SGrid1.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/SHList.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/SHList2.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/SListBox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/STList1.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/STList2.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/STList3.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/SText.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/SWindow.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/Sample.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/Select.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/StdBBox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/Tree.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/Xpm.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/samples/Xpm1.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/tclIndex", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/tixwidgets.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/demos/widget", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/fs.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pkgIndex.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/10Point.fs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/10Point.fsc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/12Point.fs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/12Point.fsc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/14Point.fs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/14Point.fsc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/Bisque.cs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/Bisque.csc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/Blue.cs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/Blue.csc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/Gray.cs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/Gray.csc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/Makefile", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/Old12Pt.fs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/Old14Pt.fs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/SGIGray.cs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/SGIGray.csc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/TK.cs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/TK.csc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/TK.fs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/TK.fsc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/TixGray.cs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/TixGray.csc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/TkWin.cs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/TkWin.csc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/TkWin.fs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/TkWin.fsc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/WmDefault.cs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/WmDefault.csc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/WmDefault.fs", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/WmDefault.fsc", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/WmDefault.py", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/WmDefault.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/WmDefault.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/pkgIndex.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/pref/tixmkpref", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/tix84.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tix8.4.3/tix84.lib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/bgerror.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/button.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/choosedir.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/clrpick.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/comdlg.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/console.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/anilabel.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/aniwave.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/arrow.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/bind.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/bitmap.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/browse", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/button.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/check.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/clrpick.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/colors.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/combo.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/cscroll.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/ctext.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/dialog1.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/dialog2.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/en.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/entry1.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/entry2.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/entry3.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/filebox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/floor.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/fontchoose.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/form.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/goldberg.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/hello", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/hscale.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/icon.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/image1.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/image2.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/images/earth.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/images/earthmenu.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/images/earthris.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/images/flagdown.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/images/flagup.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/images/gray25.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/images/letters.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/images/noletter.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/images/ouster.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/images/pattern.xbm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/images/tcllogo.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/images/teapot.ppm", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/items.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/ixset", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/knightstour.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/label.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/labelframe.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/license.terms", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/mclist.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/menu.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/menubu.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/msgbox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/nl.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/paned1.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/paned2.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/pendulum.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/plot.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/puzzle.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/radio.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/rmt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/rolodex", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/ruler.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/sayings.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/search.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/spin.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/square", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/states.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/style.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/tclIndex", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/tcolor", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/text.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/textpeer.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/timer", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/toolbar.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/tree.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/ttkbut.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/ttkmenu.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/ttknote.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/ttkpane.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/ttkprogress.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/ttkscale.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/twind.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/unicodeout.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/vscale.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/demos/widget", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/dialog.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/entry.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/focus.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/fontchooser.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/iconlist.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/icons.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/README", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/logo.eps", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/logo100.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/logo64.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/logoLarge.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/logoMed.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/pwrdLogo.eps", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/pwrdLogo100.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/pwrdLogo150.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/pwrdLogo175.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/pwrdLogo200.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/pwrdLogo75.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/images/tai-ku.gif", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/license.terms", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/listbox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/megawidget.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/menu.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/mkpsenc.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgbox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/cs.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/da.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/de.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/el.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/en.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/en_gb.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/eo.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/es.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/fr.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/hu.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/it.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/nl.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/pl.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/pt.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/ru.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/msgs/sv.msg", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/obsolete.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/optMenu.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/palette.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/panedwindow.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/pkgIndex.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/safetk.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/scale.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/scrlbar.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/spinbox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/tclIndex", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/tearoff.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/text.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/tk.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/tkfbox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/altTheme.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/aquaTheme.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/button.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/clamTheme.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/classicTheme.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/combobox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/cursors.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/defaults.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/entry.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/fonts.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/menubutton.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/notebook.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/panedwindow.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/progress.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/scale.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/scrollbar.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/sizegrip.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/spinbox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/treeview.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/ttk.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/utils.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/vistaTheme.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/winTheme.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/ttk/xpTheme.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/unsupported.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk8.6/xmfbox.tcl", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tk86t.lib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/tcl/tkstub86.lib", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/vcruntime140.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Python3/Win64/vcruntime140_1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/ShaderConductor/Win64/ShaderConductor.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/ShaderConductor/Win64/ShaderConductor.pdb", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/ShaderConductor/Win64/dxcompiler.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/ShaderConductor/Win64/dxil.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/shaders/pcfShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/shaders/simpleLighting.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/basisCurves.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/compute.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/domeLight.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/edgeId.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/fallbackLighting.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/fallbackLightingShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/fallbackMaterialNetwork.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/fallbackVolume.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/frustumCull.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/imageShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/instancing.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/invalidMaterialNetwork.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/mesh.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/meshFaceCull.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/meshNormal.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/meshWire.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/pointId.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/points.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/ptexTexture.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/renderPass.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/renderPassShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/simpleLightingShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/surfaceHelpers.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/terminals.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/visibility.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/shaders/volume.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/textures/fallbackBlackDomeLight.png", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/codegenTemplates/schemaClass.cpp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/codegenTemplates/schemaClass.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/boundingBox.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/colorChannel.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/colorCorrection.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/fullscreen.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/oitResolveImageShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/outline.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPass.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassColorAndSelectionShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassColorShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassColorWithOccludedSelectionShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassIdShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassOitOpaqueShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassOitShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassOitVolumeShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassPickingShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/renderPassShadowShader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/selection.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/skydome.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/shaders/visualize.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/textures/StinsonBeach.hdr", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/textures/StinsonBeach.tex", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/unreal/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/unreal/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/unreal/resources/unreal/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/usdGeom/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/shaders/empty.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/shaders/shaderDefs.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/usdHydra/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/usdLux/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/usdMedia/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/usdPhysics/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/usdProc/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/usdRender/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/usdRi/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/usdShade/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/shaders/previewSurface.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/shaders/primvarReader.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/shaders/shaderDefs.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/shaders/transform2d.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/shaders/uvTexture.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/shaders/skinning.glslfx", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/usdSkel/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/usdUI/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/usdVol/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/api.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/schemaClass.cpp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/schemaClass.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/tokens.cpp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/tokens.h", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/wrapSchemaClass.cpp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/wrapTokens.cpp", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/generatedSchema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/usd/schema.usda", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Vorbis/Win64/VS2015/libvorbis_64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Vorbis/Win64/VS2015/libvorbisfile_64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Windows/DirectX/x64/d3dcompiler_47.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64/WinPixEventRuntime.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/Windows/XAudio2_9/x64/xaudio2_9redist.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/libsndfile/Win64/libsndfile-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/nvTextureTools/Win64/AVX2/nvtt_64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/nvTextureTools/Win64/nvtt_64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/MSVCP100.DLL", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/MSVCR100.DLL", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/apr_crypto_openssl-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/apr_dbd_odbc-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/apr_dbm_db-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/apr_ldap-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/changelog.txt", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/diff.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/diff3.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/diff4.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/_tbl_simple.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/adobe-stdenc.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/adobe-symbol.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/adobe-zdingbats.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/big5.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cns11643-plane1.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cns11643-plane14.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cns11643-plane2.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp037.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp038.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp10000.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp10006.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp10007.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp10029.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp1006.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp10079.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp10081.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp1026.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp273.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp274.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp275.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp277.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp278.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp280.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp281.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp284.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp285.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp290.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp297.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp420.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp423.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp424.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp437.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp500.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp737.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp775.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp850.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp851.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp852.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp855.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp856.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp857.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp860.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp861.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp862.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp863.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp864.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp865.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp866.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp868.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp869.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp870.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp871.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp874.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp875.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp880.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp891.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp903.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp904.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp905.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp918.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp932.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp936.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp949.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/cp950.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/dec-mcs.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-at-de-a.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-at-de.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-ca-fr.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-dk-no-a.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-dk-no.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-es-a.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-es-s.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-es.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-fi-se-a.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-fi-se.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-fr.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-it.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-pt.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-uk.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ebcdic-us.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/euc-jp.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/euc-kr.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/euc-tw.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/gb12345.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/gb2312.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/gb_2312-80.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/hp-roman8.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-10646-ucs-2.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-10646-ucs-4.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-2022-cn.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-2022-jp-2.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-2022-jp.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-2022-kr.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-1.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-10.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-13.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-14.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-15.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-2.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-3.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-4.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-5.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-6.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-7.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-8.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-8859-9.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-10.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-102.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-103.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-11.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-111.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-121.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-122.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-123.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-128.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-13.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-139.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-14.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-141.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-142.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-143.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-146.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-147.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-15.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-150.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-151.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-152.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-153.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-154.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-155.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-158.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-16.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-17.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-18.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-19.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-2.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-21.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-25.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-27.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-37.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-4.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-47.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-49.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-50.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-51.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-54.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-55.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-57.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-60.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-61.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-69.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-70.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-8-1.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-8-2.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-84.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-85.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-86.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-88.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-89.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-9-1.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-9-2.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-90.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-91.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-92.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-93.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-94.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-95.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-96.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-98.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso-ir-99.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso646-dk.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/iso646-kr.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/jis_x0201.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/jis_x0208-1983.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/jis_x0212-1990.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/johab.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/koi8-r.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/koi8-ru.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/koi8-u.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ksx1001.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/mac-ce.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/mac-croatian.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/mac-cyrillic.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/mac-dingbats.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/mac-greek.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/mac-iceland.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/mac-japan.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/mac-roman.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/mac-romania.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/mac-thai.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/mac-turkish.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/mac-ukraine.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/macintosh.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/osd_ebcdic_df04_1.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/osd_ebcdic_df04_15.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/shift_jis.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ucs2-internal.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/ucs4-internal.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/unicode-1-1-utf-7.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/us-ascii.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/utf-16.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/utf-8.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/windows-1250.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/windows-1251.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/windows-1252.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/windows-1253.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/windows-1254.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/windows-1255.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/windows-1256.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/windows-1257.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/iconv/windows-1258.so", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libapr-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libapriconv-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libaprutil-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libdb62.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libeay32.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libsasl.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libserf-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libsvn_client-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libsvn_delta-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libsvn_diff-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libsvn_fs-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libsvn_ra-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libsvn_repos-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libsvn_subr-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libsvn_swig_perl-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libsvn_swig_py-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libsvn_wc-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/libsvnjavahl-1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/license/APR-Iconv.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/license/APR-Util.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/license/APR.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/license/Berkeley-DB.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/license/CyrusSASL.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/license/OpenSSL.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/license/Serf.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/license/Subversion.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/license/Swig.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/license/ZLib.license", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/saslANONYMOUS.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/saslCRAMMD5.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/saslDIGESTMD5.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/saslLOGIN.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/saslNTLM.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/saslOTP.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/saslPLAIN.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/saslSASLDB.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/saslSCRAM.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/saslSRP.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/ssleay32.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svn-populate-node-origins-index.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svn.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svnadmin.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svnauthz-validate.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svnauthz.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svnbench.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svndumpfilter.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svnfsfs.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svnlook.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svnmucc.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svnraisetreeconflict.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svnrdump.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svnserve.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svnsync.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/svnversion.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/ThirdParty/svn/Win64/zlib1.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/AgentInterface.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/D3D12/D3D12Core.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/D3D12/d3d12SDKLayers.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/DML/DirectML.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/EOSSDK-Win64-Shipping.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/EpicWebHelper.exe", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/NNEEditorOnnxTools.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/OpenColorIO_2_3.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/amd_fidelityfx_dx12.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_atomic-mt-x64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_chrono-mt-x64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_filesystem-mt-x64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_iostreams-mt-x64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_program_options-mt-x64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_python311-mt-x64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_regex-mt-x64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_system-mt-x64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/boost_thread-mt-x64.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/embree3.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/hdStorm.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/libfbxsdk.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/mujoco.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.10.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.11.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.12.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.5.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.6.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.7.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.8.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/oo2tex_win64_2.9.9.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/python311.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/sdrGlslfx.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/tbb.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/tbb.pdb", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/tbb12.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/tbbmalloc.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/tbbmalloc.pdb", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usdAbc.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usdShaders.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_ar.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_arch.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_cameraUtil.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_garch.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_geomUtil.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_gf.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_glf.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hd.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hdGp.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hdMtlx.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hdSt.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hdar.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hdsi.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hdx.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hf.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hgi.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hgiGL.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hgiInterop.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_hio.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_js.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_kind.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_ndr.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_pcp.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_plug.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_pxOsd.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_sdf.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_sdr.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_tf.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_trace.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_ts.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usd.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdAppUtils.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdBakeMtlx.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdGeom.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdHydra.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdImaging.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdImagingGL.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdLux.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdMedia.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdMtlx.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdPhysics.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdProc.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdProcImaging.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdRender.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdRi.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdRiPxrImaging.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdShade.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdSkel.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdSkelImaging.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdUI.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdUtils.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdVol.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_usdVolImaging.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_vt.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Binaries/Win64/usd_work.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Content/Renderer/TessellationTable.bin", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Content/SlateDebug/Fonts/LastResort.tps", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Content/SlateDebug/Fonts/LastResort.ttf", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/DeveloperDirectoryContent.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/EditorGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/ErrorFilter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/ExcludedTestsFilter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Fail.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/GameGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Groups.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/InProcess.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/NoSessionWarning.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/NotEnoughParticipants.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/NotRun.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Participant.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/ParticipantsWarning.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/RefreshTests.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/RefreshWorkers.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/RunTests.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/SmokeTest.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/SmokeTestFilter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/SmokeTestParent.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/StopTests.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Success.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/TrackTestHistory.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/VisualCommandlet.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/Warning.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Automation/WarningFilter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Checkerboard.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/BoxShadow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Button.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Button_Disabled.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Button_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Button_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Check.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Checked.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Checked_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Undetermined.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CheckBox_Undetermined_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Checker.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Circle.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorGradingWheel.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorPicker_Mode_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorPicker_Separator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorPicker_SliderHandle.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorSpectrum.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColorWheel.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeader.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeaderMenuButton_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeaderMenuButton_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeader_Arrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ColumnHeader_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ComboArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/CursorPing.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DarkGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DebugBorder.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Delimiter.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DownArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DropZoneIndicator_Above.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DropZoneIndicator_Below.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/DropZoneIndicator_Onto.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/EditableTextSelectionBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/EventMessage_Default.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ExpansionButton_CloseOverlay.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/GroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/GroupBorder_Shape.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/HeaderSplitterGrip.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/LastColumnHeader_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/LeftArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/LightGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/NoiseBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/PlainBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProfileVisualizer_Mono.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProfileVisualizer_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProfileVisualizer_Selected.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProgressBar_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProgressBar_Fill.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ProgressBar_Marquee.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/RadioButton_SelectedBack_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/RadioButton_Selected_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/RadioButton_Unselected_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/RoundedSelection_16x.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBorderShadowBottom.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBorderShadowTop.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBoxShadowBottom.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBoxShadowLeft.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBoxShadowRight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/ScrollBoxShadowTop.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Scrollbar_Background_Horizontal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Scrollbar_Background_Vertical.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Scrollbar_Thumb.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SearchGlass.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Selection.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Selector.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Separator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheck.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Checked.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Checked_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Undetermined.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SmallCheckBox_Undetermined_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SortDownArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SortDownArrows.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SortUpArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SortUpArrows.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SpinArrows.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Fill.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Fill_Dark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Fill_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Fill_Hovered_Dark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Spinbox_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SplitterHandleHighlight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/SubmenuArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TableViewHeader.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TableViewMajorColumn.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBlockHighlightShape.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBlockHighlightShape_Empty.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBoxLabelBorder.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Dark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Hovered_Dark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_ReadOnly.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Special.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TextBox_Special_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Throbber_Piece.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TreeArrow_Collapsed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TreeArrow_Collapsed_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TreeArrow_Expanded.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/TreeArrow_Expanded_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/UpArrow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VerticalBoxDragIndicator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VerticalBoxDragIndicatorShort.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_High.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_Low.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_Mid.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_Muted.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/VolumeControl_Off.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/WhiteGroupBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Close_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Close_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Close_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Maximize_Disabled.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Maximize_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Maximize_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Maximize_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Minimize_Disabled.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Minimize_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Minimize_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Minimize_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Restore_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Restore_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowButton_Restore_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowOutline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowTitle.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowTitle_Flashing.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/Window/WindowTitle_Inactive.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Common/X.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/CrashTracker/MouseCursor.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/CrashTracker/Record.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Cursor/invisible.cur", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTabContentArea.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTabWellSeparator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_Active.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_ColorOverlay.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_ColorOverlayIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_Foreground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/AppTab_Inactive.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/CloseApp_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/CloseApp_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/CloseApp_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/DockingIndicator_Center.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/OuterDockingIndicator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/ShowTabwellButton_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/ShowTabwellButton_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/ShowTabwellButton_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/TabContentArea.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/TabWellSeparator.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Active.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_ColorOverlay.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_ColorOverlayIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Foreground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Inactive.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Docking/Tab_Shape.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/DroidSans.tps", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/DroidSansFallback.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/DroidSansMono.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Noto.tps", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/NotoNaskhArabicUI-Regular.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/NotoSansThai-Regular.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Black.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-BlackItalic.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Bold.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-BoldCondensed.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-BoldCondensedItalic.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-BoldItalic.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Italic.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Light.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Medium.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto-Regular.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Fonts/Roboto.tps", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/BackIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Cross_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/DefaultAppIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Copy_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Cut_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Delete_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Duplicate_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Paste_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Edit/icon_Edit_Rename_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Empty_14x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/NextIcon.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButton.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonBottom.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonCentre.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonLeft.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonRight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/SmallRoundedButtonTop.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_025x_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_025x_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_025x_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_05x_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_05x_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_05x_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_1x_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_1x_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_1x_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_Screen_Rotation_Hovered.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_Screen_Rotation_Normal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PIEWindow/WindowButton_Screen_Rotation_Pressed.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/PlusSymbol_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/GroupBorder-16Gray.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Average_Event_Graph_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Border_L_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Border_R_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Border_TB_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Cull_Events_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Culled_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Custom_Tooltip_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Data_Capture_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Events_Flat_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Events_Flat_Coalesced_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Events_Hierarchial_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_FPS_Chart_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Filter_Events_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Filter_Presets_Tab_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Filtered_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Graph_View_Tab_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Has_Culled_Children_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_History_Back_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_History_Fwd_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_LoadMultiple_Profiler_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Load_Profiler_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Max_Event_Graph_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Settings_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_Tab_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/Profiler_ThreadView_SampleBorder_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Calls_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CollapseAll_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CollapseSelection_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CollapseThread_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CopyToClipboard_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_CulledEvents_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Disconnect_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Event_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ExpandAll_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ExpandHotPath_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ExpandSelection_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ExpandThread_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_GameThread_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_GenericFilter_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_GenericGroup_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_HotPath_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Memory_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_Number_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_OpenEventGraph_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_RenderThread_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ResetColumn_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ResetToDefault_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SelectStack_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SetRoot_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ShowGraphData_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SortAscending_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SortBy_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_SortDescending_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_ViewColumn_32x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_mem_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_stats_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/Profiler/profiler_sync_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/TrashCan.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/TrashCan_Small.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/cursor_cardinal_cross.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/cursor_grab.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/denied_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/ellipsis_12x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/eyedropper_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_Downloads_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_error_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_generic_toolbar.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_help_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_info_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_redo_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_tab_Tools_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_tab_WidgetReflector_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_tab_WidgetReflector_40x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_tab_toolbar_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_undo_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/icon_warning_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/notificationlist_fail.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/notificationlist_success.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Icons/toolbar_expand_16x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/All_Platforms_128x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/All_Platforms_24x.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Commandlet.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Editor.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Game.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Other.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Server.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Instance_Unknown.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Advanced.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Back.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Build.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Delete.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Deploy.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_EditSettings.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Launch.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Launcher/Launcher_Run.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/MessageLog/Log_Error.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/MessageLog/Log_Note.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/MessageLog/Log_Warning.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Border.PNG", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Button.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/DashedBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/HyperlinkDotted.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/HyperlinkUnderline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Menu_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Menu_Background_Inverted_Border_Bold.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Notification_Border_Flash.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/ActionMenuButtonBG.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/ArrowBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/ArrowLeft.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Arrow_D.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Arrow_L.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Arrow_R.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Arrow_U.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/BoxEdgeHighlight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CalloutBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CalloutBox2.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CalloutBox3.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Callout_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Callout_Glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Callout_Outline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CircleBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CircleBox2.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CodeBlock_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CodeBlock_Glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/CodeBlock_Outline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DiamondBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DiamondBox_B.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DiamondBox_T.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_L.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_LR.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_LR_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_L_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_R.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedCircleBox_R_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_L.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_LR.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_LR_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_R.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/DottedSquareBox_R_E.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Hat.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Outer/alertOutline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Outer/alertSolid.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/PrePost_RoundedBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/PrePost_RoundedBox_B.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/PrePost_RoundedBox_T.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/QMark.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Roboto-Bold.ttf", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedBoxBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedTileFaded.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedTile_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedTile_Glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/RoundedTile_Outline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/SolidWhite.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/SquareBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/SquareBox_Solid_L.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/SquigglyBox.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Tile_Highlight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/Underline.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/bigdot.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/blank.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_head.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_head_glow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_highlight.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_shadow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/pin_stick.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/pin/ping.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/selectionbar/selectionbar_0.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/selectionbar/selectionbar_1.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/selectionbar/selectionbar_2.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/Tiles/smalldot.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/ToolBar_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/ToolTip_Background.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/ToolTip_BrightBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Old/White.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Advanced.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/AllSavedAssets.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/AutomationTools.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/CPP.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Calendar.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Console.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Copy.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Cut.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Dash_Horizontal.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Dash_Vertical.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Delete.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Developer.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/DropTargetBackground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Duplicate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/EyeDropper.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Favorite.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/FilterAuto.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/FlipHorizontal.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/FlipVertical.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Group_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/HiddenInGame.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Info.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Layout.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Linked.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/LookAt.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Merge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Monitor.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/OutputLog.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/ParentHierarchy.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Paste.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/PlayerController.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Preferences.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/ProjectLauncher.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Recent.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Redo.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Rename.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Role.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Rotate180.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Rotate90Clockwise.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Rotate90Counterclockwise.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Search_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/SessionFrontend.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/SortDown.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/SortUp.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Test.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UELogo.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UELogo.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Undo.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UndoHistory.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Unlinked.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UnsavedAssets.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/UnsavedAssetsWarning.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Update.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/VisibleInGame.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/Visualizer.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/alert-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/alert-triangle-64.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/alert-triangle-large.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/alert-triangle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/arrow-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/arrow-left.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/arrow-right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/arrow-up.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/badge-modified.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/badge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/blueprint.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/box-perspective.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/bullet-point.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/bullet-point16.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/caret-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/caret-right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/check-circle-large.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/check-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/check.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/checker.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/chevron-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/chevron-left.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/chevron-right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/chevron-up.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/circle-arrow-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/circle-arrow-left.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/circle-arrow-right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/circle-arrow-up.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/close-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/close-small.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/close.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/color-grading-cross.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/color-grading-selector.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/color-grading-spinbox-selector.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/curve-editor-append-key-20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/cylinder.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/delete-outline.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/drag-handle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/edit.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/ellipsis-horizontal-narrow.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/ellipsis-vertical-narrow.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/export.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/export_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/favorites-category.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/fieldnotify_off.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/fieldnotify_on.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/file-tree-open.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/file-tree.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/file.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/filled-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/filter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-cleanup.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-closed.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-open.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-plus.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-virtual-closed.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/folder-virtual-open.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/help.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/hidden.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/import.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/import_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/layout-header-body.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/layout-spreadsheet.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/lock-unlocked.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/lock.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/menu.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/minus-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/minus.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/normalize.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/play.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/plus-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/plus.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/pyriamid.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/refresh.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/reject.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/save-modified.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/save.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/search.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/server.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/settings.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/sphere.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/stop.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/tile.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/unreal-circle-thick.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/unreal-circle-thin.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/unreal-small.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/visible.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/world.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Common/x-circle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/CheckBoxIndeterminate_12.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/CheckBoxIndeterminate_14.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/check.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/indeterminate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/radio-off.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/CheckBox/radio-on.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/ComboBox/corner-dropdown.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/ComboBox/wide-chevron-down.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/FilterBar/FilterColorSegment.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/NumericEntryBox/NarrowDecorator.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/ProgressBar/ProgressMarquee.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/SegmentedBox/left.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/SegmentedBox/left.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/SegmentedBox/right.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/SegmentedBox/right.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/TableView/sort-down-arrow.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/TableView/sort-down-arrows.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/TableView/sort-up-arrow.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/TableView/sort-up-arrows.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/Window/close.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/Window/maximize.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/Window/minimize.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/CoreWidgets/Window/restore.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/DockTab_Active.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/DockTab_Foreground.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/DockTab_Hover.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/Dock_Tab_Active.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/drawer-shadow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/pin.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Docking/show-tab-well.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/AllTracks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/AutoScrollDown_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/AutoScrollRight_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Callees.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Callees_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Callers.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Callers_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Connection.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ControlsFirst.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ControlsLast.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ControlsNext.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ControlsPrevious.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Counter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Counter_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/CpuGpuTracks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Filter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/FilterConfig.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Frames.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Frames_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Function.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/HotPath_12.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/InfoTag_12.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Log.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Log_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemAllocTable.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemInvestigation.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemInvestigation_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemTags.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/MemTags_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Memory.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/NetStats.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/NetStats_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Networking.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/PacketContent.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/PacketContent_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Packets.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Packets_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/PluginTracks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Session.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeLarge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeLarge_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeMedium.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeMedium_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeSmall.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SizeSmall_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/SpecialTracks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Tasks.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Tasks_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Timer.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Timer_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Timing.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/Timing_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceStore.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceStore_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/RecordTraceCenter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/RecordTraceOutline.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/RecordTraceRecording.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TracePause.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TraceResume.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TraceSnapshot.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TraceStart.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/TraceTools/TraceStop.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/UTrace.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/UnrealInsights.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ViewMode_20.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Insights/ZeroCountFilter.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Launcher/PaperAirplane.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/Notifications/Throbber.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Added.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_BranchModifiedBadge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckCircleLine.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckIn.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckInAvailable.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckInAvailableRewound.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckedBranch.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckedBranchBadge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckedOther.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_CheckedOtherBadge.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_ConflictResolution_Clear.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_ConflictResolution_OpenExternal.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Conflicted.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_ConflictedState.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Diff.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_DiskSize.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_File.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_LineCircle.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_MarkedForAdd.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Modified.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_ModifiedLocally.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_NewerVersion.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Promote.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Promote_Large.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Removed.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Rewind.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Rewound.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_StatusLocalUpToDate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_StatusLocalUpload.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_StatusRemoteDownload.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_StatusRemoteUpToDate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_Sync.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_SyncAndCheckOut.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_VerticalLine.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_VerticalLineDashed.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/RC_VerticalLineStart.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Action_Diff.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Action_Integrate.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Branched.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Changelist.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_CheckedOut.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_ContentAdd.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_DlgCheckedOutOther.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_DlgNotCurrent.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_DlgReadOnly.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_Lock.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_MarkedForDelete.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_ModifiedOtherBranch.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SCC_NotInDepot.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/SourceControl.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/Status/RevisionControl.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/Status/RevisionControlBadgeConnected.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/Status/RevisionControlBadgeWarning.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/icon_SCC_Change_Source_Control_Settings.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/icon_SCC_History.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/SourceControl/icon_SCC_Revert.svg", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Starship/StatusBar/drawer-shadow-bottom.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/BrushWireframe.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/DefaultPawn_16px.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/FlatColorSquare.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/Hyperlink.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/Lit.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/NewLevelBlank.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/TestRotation.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/Unlit.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Testing/Wireframe.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Tutorials/TutorialBorder.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Content/Slate/Tutorials/TutorialShadow.png", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Extras/GPUDumpViewer/GPUDumpViewer.html", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Extras/GPUDumpViewer/OpenGPUDumpViewer.bat", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Extras/GPUDumpViewer/OpenGPUDumpViewer.sh", - "Type": "DebugNonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/2D/Paper2D/Paper2D.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/AI/AISupport/AISupport.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/AI/EnvironmentQueryEditor/EnvironmentQueryEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ACLPlugin/ACLPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationData/AnimationData.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/AnimationModifierLibrary/AnimationModifierLibrary.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/BlendSpaceMotionAnalysis/BlendSpaceMotionAnalysis.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRigModules/ControlRigModules.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRigSpline/ControlRigSpline.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/ControlRig/ControlRig.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/DeformerGraph/DeformerGraph.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/IKRig/IKRig.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/LiveLink/LiveLink.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Animation/RigLogic/RigLogic.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Bridge/Bridge.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/CameraShakePreviewer/CameraShakePreviewer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/EngineCameras/EngineCameras.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Cameras/GameplayCameras/GameplayCameras.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosClothAsset/ChaosClothAsset.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosCloth/ChaosCloth.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/ChaosVD/ChaosVD.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/CmdLinkServer/CmdLinkServer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Compositing/OpenColorIO/OpenColorIO.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Compression/OodleNetwork/OodleNetwork.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/AnimationSharing/AnimationSharing.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/CLionSourceCodeAccess/CLionSourceCodeAccess.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertMain/ConcertMain.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/ConcertSyncClient.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/ConcertSyncCore.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/Concert/ConcertUI/ConcertSharedSlate/ConcertSharedSlate.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/DumpGPUServices/DumpGPUServices.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/GitSourceControl/GitSourceControl.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/N10XSourceCodeAccess/N10XSourceCodeAccess.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PerforceSourceControl/PerforceSourceControl.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PixWinPlugin/PixWinPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PlasticSourceControl/PlasticSourceControl.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PluginUtils/PluginUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/PropertyAccessNode/PropertyAccessNode.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/RenderDocPlugin/RenderDocPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/RiderSourceCodeAccess/RiderSourceCodeAccess.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/SubversionSourceControl/SubversionSourceControl.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/TextureFormatOodle/TextureFormatOodle.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/UObjectPlugin/UObjectPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/VisualStudioCodeSourceCodeAccess/VisualStudioCodeSourceCodeAccess.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Developer/VisualStudioSourceCodeAccess/VisualStudioSourceCodeAccess.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/AssetManagerEditor/AssetManagerEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/BlueprintHeaderView/BlueprintHeaderView.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ChangelistReview/ChangelistReview.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ColorGrading/ColorGrading.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ConsoleVariablesEditor/ConsoleVariables.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserAssetDataSource/ContentBrowserAssetDataSource.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserClassDataSource/ContentBrowserClassDataSource.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ContentBrowser/ContentBrowserFileDataSource/ContentBrowserFileDataSource.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CryptoKeys/CryptoKeys.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/CurveEditorTools/CurveEditorTools.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/DataValidation/DataValidation.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorDebugTools/EditorDebugTools.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EditorScriptingUtilities/EditorScriptingUtilities.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/EngineAssetDefinitions/EngineAssetDefinitions.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/FacialAnimation/FacialAnimation.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GameplayTagsEditor/GameplayTagsEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/GeometryMode/GeometryMode.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/Localization/PortableObjectFileDataSource/PortableObjectFileDataSource.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MaterialAnalyzer/MaterialAnalyzer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MeshLODToolset/MeshLODToolset.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/MobileLauncherProfileWizard/MobileLauncherProfileWizard.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ModelingToolsEditorMode/ModelingToolsEditorMode.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/LightMixer/LightMixer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ObjectMixer/ObjectMixer/ObjectMixer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/PluginBrowser/PluginBrowser.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/ProxyLODPlugin/ProxyLODPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SequencerAnimTools/SequencerAnimTools.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/SpeedTreeImporter/SpeedTreeImporter.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/StylusInput/StylusInput.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UMGWidgetPreview/UMGWidgetPreview.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/UVEditor/UVEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Editor/WorldPartitionHLODUtilities/WorldPartitionHLODUtilities.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/EnhancedInput/EnhancedInput.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/DatasmithContent/DatasmithContent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/GLTFExporter/GLTFExporter.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManagerContent/VariantManagerContent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Enterprise/VariantManager/VariantManager.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AdvancedRenamer/AdvancedRenamer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Animation/SkeletalMeshModelingTools/SkeletalMeshModelingTools.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/AutomationUtils/AutomationUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/BackChannel/BackChannel.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosCaching/ChaosCaching.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosEditor/ChaosEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosNiagara/ChaosNiagara.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosSolverPlugin/ChaosSolverPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosUserDataPT/ChaosUserDataPT.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ChaosVehiclesPlugin/ChaosVehiclesPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterAI/CharacterAI.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CharacterFXEditor/BaseCharacterFXEditor/BaseCharacterFXEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/CineCameraSceneCapture/CineCameraSceneCapture.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Compositing/HoldoutComposite/HoldoutComposite.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Dataflow/Dataflow.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorDataStorage/EditorDataStorage.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorPerformance/EditorPerformance.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/EditorTelemetry/EditorTelemetry.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/Fracture/Fracture.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/FullBodyIK/FullBodyIK.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryCollectionPlugin/GeometryCollectionPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/GeometryFlow/GeometryFlow.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/LocalizableMessage/LocalizableMessage.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MeshModelingToolsetExp/MeshModelingToolsetExp.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/MetaHuman/MetaHumanSDK/MetaHumanSDK.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/NFORDenoise/NFORDenoise.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlanarCutPlugin/PlanarCut.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PlatformCrypto/PlatformCrypto.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/PythonScriptPlugin/PythonScriptPlugin.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/SkeletalReduction/SkeletalReduction.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StateGraph/StateGraph.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/StudioTelemetry/StudioTelemetry.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Experimental/ToolPresets/ToolPresets.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/FX/NiagaraSimCaching/NiagaraSimCaching.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/FX/Niagara/Niagara.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Fab/Fab.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/FastBuildController/FastBuildController.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Importers/AlembicImporter/AlembicImporter.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Assets/InterchangeAssets.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Editor/InterchangeEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Interchange/Runtime/Interchange.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Marketplace/Developer/RiderLink/RiderLink.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AndroidMedia/AndroidMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/AvfMedia/AvfMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/ImgMedia/ImgMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaCompositing/MediaCompositing.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlate/MediaPlate.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/MediaPlayerEditor/MediaPlayerEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WebMMedia/WebMMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Media/WmfMedia/WmfMedia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MeshPainting/MeshPainting.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/TcpMessaging/TcpMessaging.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Messaging/UdpMessaging/UdpMessaging.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/ActorSequence/ActorSequence.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/LevelSequenceEditor/LevelSequenceEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/MovieRenderPipeline/MovieRenderPipeline.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/SequencerScripting/SequencerScripting.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/MovieScene/TemplateSequence/TemplateSequence.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNEDenoiser/NNEDenoiser.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/Binaries/ThirdParty/Onnxruntime/Win64/onnxruntime.dll", - "Type": "NonUFS" - }, - { - "Path": "$(EngineDir)/Plugins/NNE/NNERuntimeORT/NNERuntimeORT.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/Android/OnlineSubsystemGooglePlay/OnlineSubsystemGooglePlay.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/EOSShared/EOSShared.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/IOS/OnlineSubsystemIOS/OnlineSubsystemIOS.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineBase/OnlineBase.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineServices/OnlineServices.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemNull/OnlineSubsystemNull.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystemUtils/OnlineSubsystemUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Online/OnlineSubsystem/OnlineSubsystem.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Portal/LauncherChunkInstaller/LauncherChunkInstaller.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/RenderGraphInsights/RenderGraphInsights.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ActorLayerUtilities/ActorLayerUtilities.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidDeviceProfileSelector/AndroidDeviceProfileSelector.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidFileServer/AndroidFileServer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AndroidPermission/AndroidPermission.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AppleImageUtils/AppleImageUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ArchVisCharacter/ArchVisCharacter.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AssetTags/AssetTags.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioCapture/AudioCapture.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioSynesthesia/AudioSynesthesia.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/AudioWidgets/AudioWidgets.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CableComponent/CableComponent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ChunkDownloader/ChunkDownloader.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ComputeFramework/ComputeFramework.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/CustomMeshComponent/CustomMeshComponent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Database/SQLiteCore/SQLiteCore.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ExampleDeviceProfileSelector/ExampleDeviceProfileSelector.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GameplayStateTree/GameplayStateTree.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryCache/GeometryCache.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GeometryProcessing/GeometryProcessing.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/GooglePAD/GooglePAD.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HDRIBackdrop/HDRIBackdrop.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/HairStrands/HairStrands.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/InputDebugging/InputDebugging.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/LocationServicesBPLibrary/LocationServicesBPLibrary.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MeshModelingToolset/MeshModelingToolset.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Metasound/Metasound.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MobilePatchingUtils/MobilePatchingUtils.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/MsQuic/MsQuic.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ProceduralMeshComponent/ProceduralMeshComponent.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/PropertyAccess/PropertyAccessEditor.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/ResonanceAudio/ResonanceAudio.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/RigVM/RigVM.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SignificanceManager/SignificanceManager.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/SoundFields/SoundFields.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/StateTree/StateTree.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Synthesis/Synthesis.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/USDCore/USDCore.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WaveTable/WaveTable.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WebMMoviePlayer/WebMMoviePlayer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WindowsDeviceProfileSelector/WindowsDeviceProfileSelector.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/WindowsMoviePlayer/WindowsMoviePlayer.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Runtime/Windows/XInputDevice/XInputDevice.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/Tests/InterchangeTests/InterchangeTests.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/TraceUtilities/TraceUtilities.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/UbaController/UbaController.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/VirtualProduction/Takes/Takes.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/WorldMetrics/WorldMetrics.uplugin", - "Type": "UFS" - }, - { - "Path": "$(EngineDir)/Plugins/XGEController/XGEController.uplugin", - "Type": "UFS" - } - ], - "BuildPlugins": [ - "ACLPlugin", - "AISupport", - "ActorLayerUtilities", - "ActorSequence", - "AdvancedRenamer", - "AlembicImporter", - "AndroidDeviceProfileSelector", - "AndroidFileServer", - "AndroidMedia", - "AndroidMoviePlayer", - "AndroidPermission", - "AnimationData", - "AnimationModifierLibrary", - "AnimationSharing", - "AppleImageUtils", - "AppleMoviePlayer", - "ArchVisCharacter", - "AssetManagerEditor", - "AssetTags", - "AsyncLoadingScreen", - "AudioCapture", - "AudioSynesthesia", - "AudioWidgets", - "AutomationUtils", - "AvfMedia", - "BackChannel", - "BaseCharacterFXEditor", - "BlendSpaceMotionAnalysis", - "BlueprintHeaderView", - "BlueprintJson", - "Bridge", - "CLionSourceCodeAccess", - "CPathfinding", - "CableComponent", - "CameraShakePreviewer", - "ChangelistReview", - "ChaosCaching", - "ChaosCloth", - "ChaosClothAsset", - "ChaosEditor", - "ChaosNiagara", - "ChaosSolverPlugin", - "ChaosUserDataPT", - "ChaosVD", - "ChaosVehiclesPlugin", - "CharacterAI", - "ChunkDownloader", - "CineCameraSceneCapture", - "CmdLinkServer", - "CodeLiteSourceCodeAccess", - "ColorGrading", - "ComputeFramework", - "ConcertMain", - "ConcertSharedSlate", - "ConcertSyncClient", - "ConcertSyncCore", - "ConsoleVariables", - "ContentBrowserAssetDataSource", - "ContentBrowserClassDataSource", - "ContentBrowserFileDataSource", - "ControlRig", - "ControlRigModules", - "ControlRigSpline", - "CryptoKeys", - "CurveEditorTools", - "CustomMeshComponent", - "DataValidation", - "Dataflow", - "DatasmithContent", - "DeformerGraph", - "DumpGPUServices", - "EOSShared", - "EditorDataStorage", - "EditorDebugTools", - "EditorPerformance", - "EditorScriptingUtilities", - "EditorTelemetry", - "EngineAssetDefinitions", - "EngineCameras", - "EnhancedInput", - "EnvironmentQueryEditor", - "ExampleDeviceProfileSelector", - "FSR3", - "FSR3MovieRenderPipeline", - "Fab", - "FacialAnimation", - "FastBuildController", - "FileHelper", - "Fracture", - "FullBodyIK", - "GLTFExporter", - "GameplayCameras", - "GameplayStateTree", - "GameplayTagsEditor", - "GeometryCache", - "GeometryCollectionPlugin", - "GeometryFlow", - "GeometryMode", - "GeometryProcessing", - "GitSourceControl", - "GoogleCloudMessaging", - "GooglePAD", - "HDRIBackdrop", - "HairStrands", - "HoldoutComposite", - "IKRig", - "IOSDeviceProfileSelector", - "ImgMedia", - "InputDebugging", - "Interchange", - "InterchangeAssets", - "InterchangeEditor", - "InterchangeTests", - "KDevelopSourceCodeAccess", - "LauncherChunkInstaller", - "LevelSequenceEditor", - "LightMixer", - "LinuxDeviceProfileSelector", - "LiveLink", - "LocalizableMessage", - "LocationServicesBPLibrary", - "LuckyMujoco", - "LuckyTextWrite", - "MacGraphicsSwitching", - "MaterialAnalyzer", - "MediaCompositing", - "MediaPlate", - "MediaPlayerEditor", - "MeshLODToolset", - "MeshModelingToolset", - "MeshModelingToolsetExp", - "MeshPainting", - "MetaHumanSDK", - "Metasound", - "MobileLauncherProfileWizard", - "MobilePatchingUtils", - "ModelingToolsEditorMode", - "MovieRenderPipeline", - "MsQuic", - "N10XSourceCodeAccess", - "NFORDenoise", - "NNEDenoiser", - "NNERuntimeORT", - "Niagara", - "NiagaraSimCaching", - "NullSourceCodeAccess", - "ObjectMixer", - "OnlineBase", - "OnlineServices", - "OnlineSubsystem", - "OnlineSubsystemGooglePlay", - "OnlineSubsystemIOS", - "OnlineSubsystemNull", - "OnlineSubsystemUtils", - "OodleNetwork", - "OpenColorIO", - "Paper2D", - "PerforceSourceControl", - "PixWinPlugin", - "PlanarCut", - "PlasticSourceControl", - "PlatformCrypto", - "PluginBrowser", - "PluginUtils", - "PortableObjectFileDataSource", - "ProceduralMeshComponent", - "PropertyAccessEditor", - "PropertyAccessNode", - "ProxyLODPlugin", - "PythonScriptPlugin", - "RenderDocPlugin", - "RenderGraphInsights", - "ResonanceAudio", - "RiderLink", - "RiderSourceCodeAccess", - "RigLogic", - "RigVM", - "SQLiteCore", - "SequencerAnimTools", - "SequencerScripting", - "SignificanceManager", - "SkeletalMeshModelingTools", - "SkeletalReduction", - "SocketIOClient", - "SoundFields", - "SpeedTreeImporter", - "StateGraph", - "StateTree", - "StudioTelemetry", - "StylusInput", - "SubversionSourceControl", - "Synthesis", - "Takes", - "TcpMessaging", - "TemplateSequence", - "TextureFormatOodle", - "ToolPresets", - "TraceUtilities", - "UMGWidgetPreview", - "UObjectPlugin", - "USDCore", - "UVEditor", - "UbaController", - "UdpMessaging", - "VaRest", - "VariantManager", - "VariantManagerContent", - "VisualStudioCodeSourceCodeAccess", - "VisualStudioSourceCodeAccess", - "WaveTable", - "WebMMedia", - "WebMMoviePlayer", - "WindowsDeviceProfileSelector", - "WindowsMoviePlayer", - "WmfMedia", - "WorldMetrics", - "WorldPartitionHLODUtilities", - "XCodeSourceCodeAccess", - "XGEController", - "XInputDevice" - ], - "AdditionalProperties": [ - { - "Name": "SDK", - "Value": "Not Applicable" - } - ] -} \ No newline at end of file diff --git a/Binaries/Win64/UnrealEditor-LuckyWorld-Win64-DebugGame.dll b/Binaries/Win64/UnrealEditor-LuckyWorld-Win64-DebugGame.dll deleted file mode 100644 index 981bc462..00000000 --- a/Binaries/Win64/UnrealEditor-LuckyWorld-Win64-DebugGame.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7ec8bdd29fd4a843903f7d841b2478963d2b90b51d87de08eb4b3023a5b202ef -size 145408 diff --git a/Binaries/Win64/UnrealEditor-LuckyWorld-Win64-DebugGame.exp b/Binaries/Win64/UnrealEditor-LuckyWorld-Win64-DebugGame.exp deleted file mode 100644 index b586e4c1..00000000 Binary files a/Binaries/Win64/UnrealEditor-LuckyWorld-Win64-DebugGame.exp and /dev/null differ diff --git a/Binaries/Win64/UnrealEditor-LuckyWorld-Win64-DebugGame.pdb b/Binaries/Win64/UnrealEditor-LuckyWorld-Win64-DebugGame.pdb deleted file mode 100644 index cf6b6a6a..00000000 --- a/Binaries/Win64/UnrealEditor-LuckyWorld-Win64-DebugGame.pdb +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60b6e0adc97d592c6aa3bedde4b474c08792f764e439a770160aa7e50a665c95 -size 57757696 diff --git a/Binaries/Win64/UnrealEditor-LuckyWorld.dll b/Binaries/Win64/UnrealEditor-LuckyWorld.dll index b7696407..b61eff9f 100644 --- a/Binaries/Win64/UnrealEditor-LuckyWorld.dll +++ b/Binaries/Win64/UnrealEditor-LuckyWorld.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3de4c61ad43ac3eb1a49a2e115903b1d2dc69ab888e123eef003eb5127a1876d +oid sha256:11cc811129bd23040fdda0032f9103bd7067f19d84a497d241b7fcba2fef8417 size 94208 diff --git a/Binaries/Win64/UnrealEditor-LuckyWorld.pdb b/Binaries/Win64/UnrealEditor-LuckyWorld.pdb index 053e1836..64b2acec 100644 --- a/Binaries/Win64/UnrealEditor-LuckyWorld.pdb +++ b/Binaries/Win64/UnrealEditor-LuckyWorld.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4fb512b7092038149b7dc7230a89939845bb77f78052ac44df6dc49270c9370 +oid sha256:2bab7b7a8ea9876da2a2240f3b09811a45cedb2829bbefbbd6ccb62c05f7d950 size 58290176 diff --git a/Binaries/Win64/UnrealEditor-Luckyrobots.dll b/Binaries/Win64/UnrealEditor-Luckyrobots.dll deleted file mode 100644 index a4693a79..00000000 --- a/Binaries/Win64/UnrealEditor-Luckyrobots.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ac16d94f1e1a22024f95a0c875caae8472a35c65c8a52415efdd7e7db186e762 -size 94208 diff --git a/Binaries/Win64/UnrealEditor-Luckyrobots.exp b/Binaries/Win64/UnrealEditor-Luckyrobots.exp deleted file mode 100644 index 0af8c170..00000000 Binary files a/Binaries/Win64/UnrealEditor-Luckyrobots.exp and /dev/null differ diff --git a/Binaries/Win64/UnrealEditor-Luckyrobots.patch_0.exe b/Binaries/Win64/UnrealEditor-Luckyrobots.patch_0.exe deleted file mode 100644 index 7dd29764..00000000 --- a/Binaries/Win64/UnrealEditor-Luckyrobots.patch_0.exe +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:acc294e9f4a353a3584aa2b066c1a09c6e88326aa3b8c16b68d65709d76064a2 -size 35840 diff --git a/Binaries/Win64/UnrealEditor-Luckyrobots.patch_0.exp b/Binaries/Win64/UnrealEditor-Luckyrobots.patch_0.exp deleted file mode 100644 index b3b332e5..00000000 Binary files a/Binaries/Win64/UnrealEditor-Luckyrobots.patch_0.exp and /dev/null differ diff --git a/Binaries/Win64/UnrealEditor-Luckyrobots.patch_0.pdb b/Binaries/Win64/UnrealEditor-Luckyrobots.patch_0.pdb deleted file mode 100644 index 1cfad9a4..00000000 --- a/Binaries/Win64/UnrealEditor-Luckyrobots.patch_0.pdb +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:30cae7d401cc5a100d0dfc15cd925bab05aa1accb37dd5ceefc6b135cc285da8 -size 57831424 diff --git a/Binaries/Win64/UnrealEditor-Luckyrobots.patch_0_PID_31192.exe b/Binaries/Win64/UnrealEditor-Luckyrobots.patch_0_PID_31192.exe deleted file mode 100644 index 5b7d92c5..00000000 --- a/Binaries/Win64/UnrealEditor-Luckyrobots.patch_0_PID_31192.exe +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e60186b234fde7d04acf2523eded950896b086f81fd4d9ab31fdc40a5b5d3f23 -size 35840 diff --git a/Binaries/Win64/UnrealEditor-Luckyrobots.pdb b/Binaries/Win64/UnrealEditor-Luckyrobots.pdb deleted file mode 100644 index 901004e7..00000000 --- a/Binaries/Win64/UnrealEditor-Luckyrobots.pdb +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0cc5c0a58c01855ee0738deddf7b4dec0a35c71f831eb6464a46cb1a66d5f7f3 -size 58560512 diff --git a/Binaries/Win64/UnrealEditor-Win64-DebugGame.modules b/Binaries/Win64/UnrealEditor-Win64-DebugGame.modules deleted file mode 100644 index 677ccc47..00000000 --- a/Binaries/Win64/UnrealEditor-Win64-DebugGame.modules +++ /dev/null @@ -1,7 +0,0 @@ -{ - "BuildId": "37670630", - "Modules": - { - "LuckyWorld": "UnrealEditor-LuckyWorld-Win64-DebugGame.dll" - } -} \ No newline at end of file diff --git a/Content/Blueprint/Core/BP_PickAndPlaceTarget.uasset b/Content/Blueprint/Core/BP_PickAndPlaceTarget.uasset index 06d981b4..aaabb04f 100644 --- a/Content/Blueprint/Core/BP_PickAndPlaceTarget.uasset +++ b/Content/Blueprint/Core/BP_PickAndPlaceTarget.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fbaa8a5c5840bd115e608f93557113f8218ac3ee6a7eecf96e45420217d8d9a3 -size 103068 +oid sha256:6fe43aebfaaa9a93b879d153cbc46a75e813cd4745e348acccd147bd4094dcd3 +size 97924 diff --git a/Content/Blueprint/Core/BP_RobotArmPlacementVolume.uasset b/Content/Blueprint/Core/BP_RobotArmPlacementVolume.uasset index a59534d0..8ce32ca2 100644 --- a/Content/Blueprint/Core/BP_RobotArmPlacementVolume.uasset +++ b/Content/Blueprint/Core/BP_RobotArmPlacementVolume.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e30ff68c0ef9e5eb5899cceaaa6626c4379809c4bb1ad854b1185b2ed68f725b -size 60264 +oid sha256:aabaa8c58ba7ffa69172ea65b724f3768a2b784d69e5615cac8ebc2a5b8001c1 +size 63763 diff --git a/Content/Blueprint/Core/BP_RobotArmRandomItemsVolume.uasset b/Content/Blueprint/Core/BP_RobotArmRandomItemsVolume.uasset index e417cda9..73a5a854 100644 --- a/Content/Blueprint/Core/BP_RobotArmRandomItemsVolume.uasset +++ b/Content/Blueprint/Core/BP_RobotArmRandomItemsVolume.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6249a362c39e7f787fd9c92352c5c687918063762948d525b31b020b23ab5b89 -size 143327 +oid sha256:c9773212fb2b2610846a9c27affa507e04e9833c7587159a223af357fbdcbc51 +size 150145 diff --git a/Content/Blueprint/Game/BP_LuckyGameinstanceMode.uasset b/Content/Blueprint/Game/BP_LuckyGameinstanceMode.uasset index 83d22b1b..e51aac9f 100644 --- a/Content/Blueprint/Game/BP_LuckyGameinstanceMode.uasset +++ b/Content/Blueprint/Game/BP_LuckyGameinstanceMode.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b89b4f868a6b19e087d6dfb1782192fe746c4761a33cd1460cbcbef8a75ac80d -size 935671 +oid sha256:69a544c98aeed28de455b0de77cdf9fb3cc4ce46ef6c73940a6c16bdc01f3181 +size 939750 diff --git a/Content/Blueprint/Game/BP_LuckyRobots.uasset b/Content/Blueprint/Game/BP_LuckyRobots.uasset index dd1a78d8..38efb1dc 100644 --- a/Content/Blueprint/Game/BP_LuckyRobots.uasset +++ b/Content/Blueprint/Game/BP_LuckyRobots.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99af1688f2a7c6902fdc998ce0fbefd3538864c3227afae8845e8cd68ba3fc7f -size 189845 +oid sha256:f8c64eb21575fb355c0c7c43fd06571e8a78856c83288b0545ede4d32ee0a637 +size 188899 diff --git a/Content/Blueprint/Game/BP_LuckyWorldFunctions.uasset b/Content/Blueprint/Game/BP_LuckyWorldFunctions.uasset new file mode 100644 index 00000000..8455df9c --- /dev/null +++ b/Content/Blueprint/Game/BP_LuckyWorldFunctions.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:592590282af4b646d040a885a81c87d865ac250ad6d28bd4cf593a1a60695af5 +size 50123 diff --git a/Content/Blueprint/RobotPawnActors/BP_mujoco_SOArm100.uasset b/Content/Blueprint/RobotPawnActors/BP_mujoco_SOArm100.uasset index ce7b6804..d48f95e9 100644 --- a/Content/Blueprint/RobotPawnActors/BP_mujoco_SOArm100.uasset +++ b/Content/Blueprint/RobotPawnActors/BP_mujoco_SOArm100.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c319a29053e64707bba2d06fddb89d1b7d0011659906b1832421df0fa52b1d7d -size 1293012 +oid sha256:34efcada204494434c5ec903e6adae8396d8146ac8539ee0ebd5985c80301014 +size 1418303 diff --git a/Content/Blueprint/RobotPawnActors/BP_mujokoArm1.uasset b/Content/Blueprint/RobotPawnActors/BP_mujokoArm1.uasset index 6c152367..0d225555 100644 --- a/Content/Blueprint/RobotPawnActors/BP_mujokoArm1.uasset +++ b/Content/Blueprint/RobotPawnActors/BP_mujokoArm1.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:05587b416e6792ba70f46a35d2f48bfc037713b04b3903af14a04bba17fc8a74 -size 1257073 +oid sha256:1ffe4526b1d071f3449839e1ccb2f429b44146ece06988ce0724cb3a4f35f582 +size 1248598 diff --git a/Content/Blueprint/State/ST_LuckyWorld.uasset b/Content/Blueprint/State/ST_LuckyWorld.uasset index f86d3d1b..08d5e18d 100644 --- a/Content/Blueprint/State/ST_LuckyWorld.uasset +++ b/Content/Blueprint/State/ST_LuckyWorld.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2769e50ee63030a378ed76de18f4af620921b29fccf386bdf29af1cffc2bcb79 -size 31936 +oid sha256:3331fa4f5bc005f271ccc85f0c90c08194609255f4ea645e95520a9e095c2e09 +size 41611 diff --git a/Content/Blueprint/oldRobotsBP/BP_DJI_DroneMovementBluePrint.uasset b/Content/Blueprint/oldRobotsBP/BP_DJI_DroneMovementBluePrint.uasset index 0716c448..2915ca6b 100644 --- a/Content/Blueprint/oldRobotsBP/BP_DJI_DroneMovementBluePrint.uasset +++ b/Content/Blueprint/oldRobotsBP/BP_DJI_DroneMovementBluePrint.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d916d48c42a74b6a3bc2ea1b449da346b02ca0437b427dd332f29c29cfe10f27 -size 1794366 +oid sha256:2f6eb3501ea7837efbde32a20234e573d758d9da41e27f1dc83b208236766b12 +size 1793714 diff --git a/Content/Blueprint/robotAccessoriesSensors/BP_CameraSensor.uasset b/Content/Blueprint/robotAccessoriesSensors/BP_CameraSensor.uasset index 716d080c..045fc7b0 100644 --- a/Content/Blueprint/robotAccessoriesSensors/BP_CameraSensor.uasset +++ b/Content/Blueprint/robotAccessoriesSensors/BP_CameraSensor.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0fbcf8d99442fb6a8c03cbb5d048eab417ca952451276f0a8694dfe1e68c6c1 -size 281037 +oid sha256:c722a684a1bd4575a318110e854374f4ad62debf19893214def97eb61524a405 +size 280253 diff --git a/Content/Developers/Bhrama/Robots/BP_SoArm100.uasset b/Content/Developers/Bhrama/Robots/BP_SoArm100.uasset index 1cc4a341..e474cfdc 100644 --- a/Content/Developers/Bhrama/Robots/BP_SoArm100.uasset +++ b/Content/Developers/Bhrama/Robots/BP_SoArm100.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:102439dec61748a992a094b0703df07b3b441e655bb54740eab87c0da2a8874d -size 225466 +oid sha256:9255d2ed7a2df82e58b0a07815ee6ec30b5295a923bf0ffcb764a73384e8a2ec +size 225383 diff --git a/Content/Developers/Wdev/Robots/BP_SoArm100robot.uasset b/Content/Developers/Wdev/Robots/BP_SoArm100robot.uasset index 2c2e43b1..bff5df18 100644 --- a/Content/Developers/Wdev/Robots/BP_SoArm100robot.uasset +++ b/Content/Developers/Wdev/Robots/BP_SoArm100robot.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:42d24aca9e3a35c539a2e52c172eeab1d2933366d49615a4cb98e6afb3c53cf6 -size 112083 +oid sha256:a5c9cbe6d5bc749d7472c37cc12640a2494427aa40819d07df47cc552b193ed4 +size 278133 diff --git a/Content/Map/Test_Level.umap b/Content/Map/Test_Level.umap index c89b18e6..bda3e53f 100644 --- a/Content/Map/Test_Level.umap +++ b/Content/Map/Test_Level.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a367d0ddb9e392708772217eaba797b2445dbb12c1499e94d8396abc867b289 -size 1393206 +oid sha256:fb8609e68f6039d54baec1fd7cc6d386ecb4ddb2597c12ab9864e649edb9ab38 +size 1424171 diff --git a/Content/luckyBot/Luckywidget/ChildItems/WB_Stationary_ArmRobotMenu.uasset b/Content/luckyBot/Luckywidget/ChildItems/WB_Stationary_ArmRobotMenu.uasset index 2faf20c3..07efb67b 100644 --- a/Content/luckyBot/Luckywidget/ChildItems/WB_Stationary_ArmRobotMenu.uasset +++ b/Content/luckyBot/Luckywidget/ChildItems/WB_Stationary_ArmRobotMenu.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51227e78cd8ff3458d0f32e94f5f049b7f2e69d86f02e853b339aabb0402d394 -size 53244 +oid sha256:70b78096f7dbcb2e069eabac465f3423df702d557f2fa77b357ffdfa92ccbbed +size 24294 diff --git a/Content/luckyBot/Luckywidget/WB_GameWidget.uasset b/Content/luckyBot/Luckywidget/WB_GameWidget.uasset index 3ba58b85..f811f846 100644 --- a/Content/luckyBot/Luckywidget/WB_GameWidget.uasset +++ b/Content/luckyBot/Luckywidget/WB_GameWidget.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc9b6aa8ea9b46b8d008ccd07b6adc9f20057c29f9179acf5389a05cb7079d0c -size 1612244 +oid sha256:1758c5fabf97eaa83e8d7662a2117146cbf519a0344a70630fdbbeaac7cfe4c3 +size 1628426 diff --git a/Content/luckyBot/Luckywidget/menu/WB_CaptureSettings.uasset b/Content/luckyBot/Luckywidget/menu/WB_CaptureSettings.uasset index cc38e7bb..2ef226e9 100644 --- a/Content/luckyBot/Luckywidget/menu/WB_CaptureSettings.uasset +++ b/Content/luckyBot/Luckywidget/menu/WB_CaptureSettings.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1384ca057888468754cc9249cbd2db50c0b4a78744c613e6c507099427edc882 -size 2058202 +oid sha256:6d9bbdec2b3666be908af37eea0efb7863c88b9ca8959ec44ed001ecc479d08e +size 2058612 diff --git a/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Win64/UnrealEditor-AsyncLoadingScreen.dll b/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Win64/UnrealEditor-AsyncLoadingScreen.dll index 9415b66c..8c588f11 100644 --- a/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Win64/UnrealEditor-AsyncLoadingScreen.dll +++ b/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Win64/UnrealEditor-AsyncLoadingScreen.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a14db313d2ec5345d78b064dd06f8879d35ebe6679a7342c79e0a3e4d0358c5d +oid sha256:0b902a01cf1a3f21698364919c401adb90b7f167c0dd71ab6fe91ea8b139b078 size 525312 diff --git a/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Win64/UnrealEditor-AsyncLoadingScreen.pdb b/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Win64/UnrealEditor-AsyncLoadingScreen.pdb index 29b2e914..00249f71 100644 --- a/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Win64/UnrealEditor-AsyncLoadingScreen.pdb +++ b/Plugins/AsyncLoac1ceae7b44acV11/Binaries/Win64/UnrealEditor-AsyncLoadingScreen.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:79fe38862cdbfcd1ae9aa7253ece5122c47b2939205a79d4393f9f1e4798b9bb +oid sha256:0cb90e944b82d6183587ce47696b6e77868d037ec05c9b7fc22b36e902e9efe4 size 61509632 diff --git a/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor-BlueprintJson.dll b/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor-BlueprintJson.dll index 1e219e4c..f961c864 100644 --- a/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor-BlueprintJson.dll +++ b/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor-BlueprintJson.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b1fc0c7b3e67a594f79bfbd3b02400fc666799188139f1d62459079c60258c58 +oid sha256:ee9bcc4c8cf643c720bded002b23a7cedb84a78168e39e5ec20dd7a33a81027c size 243200 diff --git a/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor-BlueprintJson.pdb b/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor-BlueprintJson.pdb index 99df4704..d1069a4a 100644 --- a/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor-BlueprintJson.pdb +++ b/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor-BlueprintJson.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4ccd46beee907ea5b445b0fed23e10565706dd828a6e3df35df69fce7fb03cc +oid sha256:6d2a327c29a0bb30bfab979c2c1980f5788321240c059741b7266442e7d25a8e size 59281408 diff --git a/Plugins/CPathfinding/Binaries/Win64/UnrealEditor-CPathfinding.dll b/Plugins/CPathfinding/Binaries/Win64/UnrealEditor-CPathfinding.dll index 2053a71a..ad64c28f 100644 --- a/Plugins/CPathfinding/Binaries/Win64/UnrealEditor-CPathfinding.dll +++ b/Plugins/CPathfinding/Binaries/Win64/UnrealEditor-CPathfinding.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b724e5cd586dacbf58c42e103e17fc56af2205fee7aaa0693b91a6310ce0bc7b +oid sha256:9b8259d3e8068bbae83a79fa2133e7331c60a3b69a8764c76581426ec7d302f2 size 282112 diff --git a/Plugins/CPathfinding/Binaries/Win64/UnrealEditor-CPathfinding.pdb b/Plugins/CPathfinding/Binaries/Win64/UnrealEditor-CPathfinding.pdb index e1dec889..ce545496 100644 --- a/Plugins/CPathfinding/Binaries/Win64/UnrealEditor-CPathfinding.pdb +++ b/Plugins/CPathfinding/Binaries/Win64/UnrealEditor-CPathfinding.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ca41656125567bd7886b742901480878bbced456ee4c2ebfbd9f118e29208904 +oid sha256:481f7732777b1c476b2e3ea1529a7483dee7f1cc534272a234ba878ced544095 size 60190720 diff --git a/Plugins/CPathfinding/Intermediate/Build/Win64/UnrealEditor/Inc/CPathfinding/UHT/Timestamp b/Plugins/CPathfinding/Intermediate/Build/Win64/UnrealEditor/Inc/CPathfinding/UHT/Timestamp index 5ebfac92..421ef513 100644 --- a/Plugins/CPathfinding/Intermediate/Build/Win64/UnrealEditor/Inc/CPathfinding/UHT/Timestamp +++ b/Plugins/CPathfinding/Intermediate/Build/Win64/UnrealEditor/Inc/CPathfinding/UHT/Timestamp @@ -1,6 +1,6 @@ -D:\Projects\luckyworld\luckyworld\Plugins\CPathfinding\Source\CPathfinding\Public\CPathDefines.h D:\Projects\luckyworld\luckyworld\Plugins\CPathfinding\Source\CPathfinding\Public\CPathDynamicObstacle.h +D:\Projects\luckyworld\luckyworld\Plugins\CPathfinding\Source\CPathfinding\Public\CPathDefines.h D:\Projects\luckyworld\luckyworld\Plugins\CPathfinding\Source\CPathfinding\Public\CPathNode.h +D:\Projects\luckyworld\luckyworld\Plugins\CPathfinding\Source\CPathfinding\Public\CPathVolume.h D:\Projects\luckyworld\luckyworld\Plugins\CPathfinding\Source\CPathfinding\Public\CPathVolumeGroundPrio.h D:\Projects\luckyworld\luckyworld\Plugins\CPathfinding\Source\CPathfinding\Public\CPathFindPath.h -D:\Projects\luckyworld\luckyworld\Plugins\CPathfinding\Source\CPathfinding\Public\CPathVolume.h diff --git a/Plugins/CPathfinding/Intermediate/Build/Win64/x64/UnrealEditor/Development/CPathfinding/UnrealEditor-CPathfinding.exp b/Plugins/CPathfinding/Intermediate/Build/Win64/x64/UnrealEditor/Development/CPathfinding/UnrealEditor-CPathfinding.exp index 9e0b5de3..212ad9ed 100644 Binary files a/Plugins/CPathfinding/Intermediate/Build/Win64/x64/UnrealEditor/Development/CPathfinding/UnrealEditor-CPathfinding.exp and b/Plugins/CPathfinding/Intermediate/Build/Win64/x64/UnrealEditor/Development/CPathfinding/UnrealEditor-CPathfinding.exp differ diff --git a/Plugins/CPathfinding/Intermediate/Build/Win64/x64/UnrealEditor/Development/CPathfinding/UnrealEditor-CPathfinding.lib b/Plugins/CPathfinding/Intermediate/Build/Win64/x64/UnrealEditor/Development/CPathfinding/UnrealEditor-CPathfinding.lib index ef0303da..d77a7b96 100644 --- a/Plugins/CPathfinding/Intermediate/Build/Win64/x64/UnrealEditor/Development/CPathfinding/UnrealEditor-CPathfinding.lib +++ b/Plugins/CPathfinding/Intermediate/Build/Win64/x64/UnrealEditor/Development/CPathfinding/UnrealEditor-CPathfinding.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:742e6d7d4bb28879c12d613b287a4a29ae42f6951c1292263bacbd91d1c824d8 +oid sha256:af32d4cf9ae9b5637b3a54fae89f77c60a94e27c3b384b3728cf2d918f0b015b size 86112 diff --git a/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor-FileHelper.dll b/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor-FileHelper.dll index fadc7bba..0acf490a 100644 --- a/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor-FileHelper.dll +++ b/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor-FileHelper.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba042f437b5a4947b601f2ed6879f5f122104e65bf55cdcf887b495d35ca8454 +oid sha256:e461e2ddb00a1f5518574e2291a6f3e6d7697ffc1a50e8ae7fd715d774d89222 size 328192 diff --git a/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor-FileHelper.pdb b/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor-FileHelper.pdb index dfdd911b..f2fe94dd 100644 --- a/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor-FileHelper.pdb +++ b/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor-FileHelper.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0970a8ebd5a70e6180e0b657b50effa31ad4c0b0b2c9bbbe6f5620e88308bdfe +oid sha256:99460de582e8390ab1e7f655478bc31b003ae95f8f1794836069264ac9188adc size 60141568 diff --git a/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujoco.dll b/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujoco.dll index 1cd418de..81adc405 100644 --- a/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujoco.dll +++ b/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujoco.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96af49b9eff75c42540df8cf5079c3492080082d2a2b962e574277dd90b45515 -size 1032704 +oid sha256:0474cb899db4534f693a329147414a51580815a323ac2e18a7835bd0791c193b +size 1033216 diff --git a/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujoco.pdb b/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujoco.pdb index 558dc607..46ea9937 100644 --- a/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujoco.pdb +++ b/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujoco.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d6f661abb7585501fa132aea193347e2161f347d2658f3d8db131492c7a0caa -size 67768320 +oid sha256:688102495f8f37f5a83a1a57e0219739a0934986576a4b13dc1447e022be18ae +size 67784704 diff --git a/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujocoEditor.dll b/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujocoEditor.dll index 2a34856a..f4284dd5 100644 --- a/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujocoEditor.dll +++ b/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujocoEditor.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:156cb094e6786984b99c80d905324247392fd593127f2cff9ba00ef5dc430322 +oid sha256:9e9c73ab7c147b4ea07834d472d58f9ba1964d32dea0d4a8e48a0940e752720b size 1204736 diff --git a/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujocoEditor.pdb b/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujocoEditor.pdb index 94eb198e..987106cb 100644 --- a/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujocoEditor.pdb +++ b/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujocoEditor.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:21e507d61d860ad89964379bf1c1d974a6712bfbae6a9c2489922732fbe5ffb1 +oid sha256:3e3e768e3d2c6493f12e0010df40456792fbf20eaf676b671316a284f40ee37f size 68653056 diff --git a/Plugins/LuckyMujoco/Source/LuckyMujoco/Private/Lib/LuckyWorldFunctions.cpp b/Plugins/LuckyMujoco/Source/LuckyMujoco/Private/Lib/LuckyWorldFunctions.cpp index 2416e8c6..b18bed7e 100644 --- a/Plugins/LuckyMujoco/Source/LuckyMujoco/Private/Lib/LuckyWorldFunctions.cpp +++ b/Plugins/LuckyMujoco/Source/LuckyMujoco/Private/Lib/LuckyWorldFunctions.cpp @@ -47,7 +47,7 @@ bool ULuckyWorldFunctions::SaveRenderTargetToDisk(UTextureRenderTarget2D* Render } } - FString FullPath = FPaths::ProjectSavedDir() / TEXT("CapturedImages") / Filename; + FString FullPath = Filename; FPaths::NormalizeFilename(FullPath); IImageWrapperModule& ImageWrapperModule = FModuleManager::LoadModuleChecked<IImageWrapperModule>(FName("ImageWrapper")); EImageFormat Format = bAsPNG ? EImageFormat::PNG : EImageFormat::JPEG; diff --git a/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor-LuckyTextWrite.dll b/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor-LuckyTextWrite.dll index a4fff59e..eb10d815 100644 --- a/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor-LuckyTextWrite.dll +++ b/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor-LuckyTextWrite.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:63dcf031b7203ade6fda450687091281fcee35abd9807c122392184ff5fd07d5 +oid sha256:4f70aedc62a12f26ff5348c49e3129f7e9194d7eb997b452fc291abaca112dee size 69120 diff --git a/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor-LuckyTextWrite.pdb b/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor-LuckyTextWrite.pdb index 2ea6e084..8a563f5e 100644 --- a/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor-LuckyTextWrite.pdb +++ b/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor-LuckyTextWrite.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:745d89334d6e1c25caa14804f95aa69dc631d4ea07f5f8c21f4b3f7d72620d81 +oid sha256:06f5104c9d61e8d32e617790329c23fd989745897095b252d1e0e750da70ecfe size 58134528 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12.dll b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12.dll index 96b4db40..45a6ea22 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12.dll +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:94dafd3f0ace9819b8073d83d32ec08b0c66c44660b97236b98b6eb6d620a9c3 +oid sha256:46706881206c0a4cd7926ffc5376e6613f0840c8f8eefc68ebde0ff1e99f2209 size 69632 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12.pdb b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12.pdb index db40a982..570cb2c3 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12.pdb +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:46e9ed275340c30d16a38c0ebf967b360d848e3b51f2d696675b4603ab2a5511 +oid sha256:6ff74b3d5b01e10d6367efa27a51c9860b45d8fc1a682448fe1e44929524db96 size 58355712 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12Backend.dll b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12Backend.dll index fb8c3051..f4bf1985 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12Backend.dll +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12Backend.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:486b189f7d50640beebe21aebdb817deb126e7069544a218b7c9e425287d1c46 +oid sha256:ce8bbca7ab6b657264636c5777e08fbcf5ba4785d3e75db3ce7de45c092d8d09 size 98816 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12Backend.pdb b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12Backend.pdb index c707ebf8..6d9bd529 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12Backend.pdb +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXD3D12Backend.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f74606db0da50b2fc7326b4dc411ed0bd9dab2ce4f7fedfa4f119b2bee4c7d4a +oid sha256:f54343d50bd4f43d373b3db155e8ad25b41cdc870f91e28afb178f84b78133a8 size 62148608 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Api.dll b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Api.dll index e93be2b9..48156cf9 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Api.dll +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Api.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d6e35916943ca6928fa4c1b80aea1bd4cfb3f1a4b82f09734e5e3f95d66f90fe +oid sha256:00fb131e7bcdbeda00220eb45d5abeb97fd70c60ed76f11686ede2fc612fcf35 size 95744 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Api.pdb b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Api.pdb index b207eca2..aa613569 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Api.pdb +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Api.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d11443e87cb0555f1a5ea31375135d5e9b97f2603f3e89232c503223c2f7334 +oid sha256:d3b598f2ce849d031b8974cc6948548de4be0b7d55fdd263f1fec5a82a5e7244 size 58232832 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Settings.dll b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Settings.dll index dad03035..4a073036 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Settings.dll +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Settings.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93493692f0a7204d0ab192ab0ff0d6975efa3ff4c539bfdde9ee0671ae0e58d7 +oid sha256:f44de0d1162c5bd9df2c047300d88aaf7ad8df9ecfba87a4f63881f0a2f24662 size 155648 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Settings.pdb b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Settings.pdb index 4aa2a6be..94103f9a 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Settings.pdb +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3Settings.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfd43f7905d37b981bde5d9e166ce667128a87287065df86f0790461374c855f +oid sha256:28e8cbd9df961217644eeee1de1972eaeeba7b1ea323ee7da054fecc5b04db96 size 58462208 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3TemporalUpscaling.dll b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3TemporalUpscaling.dll index aa74698b..ede2bece 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3TemporalUpscaling.dll +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3TemporalUpscaling.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98b25988e5fc64a9c8c206a834180f0fb0caddad9ec61d982cbea40bd0c41449 +oid sha256:f77e070369b45adc6d42f1a619acd2c4c9cb88a161e5142855dc52f8bbbeffb0 size 470016 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3TemporalUpscaling.pdb b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3TemporalUpscaling.pdb index c2bc09ee..596304c2 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3TemporalUpscaling.pdb +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFSR3TemporalUpscaling.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:423c691a463334d85934977204eb72d7ab5b292ada37021e43d9c11f730ff2f0 +oid sha256:cfcdb5a12d6b5fa0eb168d3de7d5f41e3747c573f899fada5a01f9e33a110c84 size 70324224 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolation.dll b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolation.dll index 0eb27182..dd3fbc28 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolation.dll +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolation.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6536f0c7aa947d6187eef32213178f7f1cc5d0e344d11c90b0d3205adcce3da4 +oid sha256:3fb9afca5ba924308b6ab79651752372e817ede9219d1beba83cd4554cad99b5 size 577536 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolation.pdb b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolation.pdb index 67e876b3..2f2c874e 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolation.pdb +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolation.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea7401af970cf2d25a70474370b8a3fd389fd567a2008281e356aefbe18b1f8d -size 69832704 +oid sha256:f422b13683660bec86e8f646902e9d7d8f83ebe9e3de47add11d1dec9c7e8887 +size 69840896 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolationApi.dll b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolationApi.dll index 7e94023a..fa9f2908 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolationApi.dll +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolationApi.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a17c4a7ee1e4e8f79e15f185d13769fe6d9f6b929decc4ed3c2f36ba173cfba +oid sha256:8da9cdb315751c524f54c76ba47fc64ddff0f6b1b4ba3f9ed19edfebeb73f43a size 87040 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolationApi.pdb b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolationApi.pdb index d2f72168..69528a7e 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolationApi.pdb +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXFrameInterpolationApi.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d66c737eb48d08e6656d397eaf04c9583cfac7e883851f843b52621b3bf65bf7 +oid sha256:29789d6c6bfa8faa35820d581a3e2010afa08c792451a6f1d0a554d955353c0f size 58224640 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXOpticalFlowApi.dll b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXOpticalFlowApi.dll index 8712bd02..89bdb8d5 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXOpticalFlowApi.dll +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXOpticalFlowApi.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7c4724a7d4617c52d955dd4c0673e294e5200048ef5bc3ea36ceb438aac35987 +oid sha256:5c398b6a699e7d75774f76cbe0a67aea529aef5b1a897ed8c1db615ab24b5360 size 79872 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXOpticalFlowApi.pdb b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXOpticalFlowApi.pdb index 540b3e1d..168efb57 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXOpticalFlowApi.pdb +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXOpticalFlowApi.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:186739f03b043a69b510ce42da246fb6e03fb7ffd3d51a7614f697d205e4cde7 +oid sha256:bee01e92b3956a2deeed87d8f553688539067a27f98ccaacb1221ffbdb374c6c size 58249216 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXRHIBackend.dll b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXRHIBackend.dll index 24e98511..6271d439 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXRHIBackend.dll +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXRHIBackend.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:52ce9d1248a04057461eefbf3ab25760d75da1c7ca7cc56777519593e4daa9e8 +oid sha256:3f29e400c94ab6e82cd39cfa355db519d8a528a8bbdd7a20fb166b7701ce7a1e size 161792 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXRHIBackend.pdb b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXRHIBackend.pdb index 7d2c6d0c..1620fbf8 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXRHIBackend.pdb +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXRHIBackend.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82265a7d7ec57b2cd5bb402c737e840233844c4234b21592b572c26bc44c873c +oid sha256:f5bdf688650df405696376ced1a735db5c7beb1d432b6dbdfced42377f37184f size 60354560 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXShared.dll b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXShared.dll index 9aed4c79..85f07a5a 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXShared.dll +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXShared.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:44e3878a69beea2c79cbeb5716d772e2d27e6507cbcccfaad96bb8a6bf6d3406 +oid sha256:a0c7bbbc9582a12209d0f4b61c60b841519425adc5be76a6bd3e1ecaa41e43d0 size 52736 diff --git a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXShared.pdb b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXShared.pdb index 5b31e8c3..8bc5cb2f 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXShared.pdb +++ b/Plugins/Marketplace/FSR3-550/FSR3/Binaries/Win64/UnrealEditor-FFXShared.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:692044b537e205ea151e292d44c3b5347e2ec3949bb8c9530d14a7b97300f3c8 +oid sha256:f1d7d355d785ffdf92b444a9d176e30b46a3215da1b56370c3a39bbfd7c01b54 size 58109952 diff --git a/Plugins/Marketplace/FSR3-550/FSR3MovieRenderPipeline/Binaries/Win64/UnrealEditor-FSR3MovieRenderPipeline.dll b/Plugins/Marketplace/FSR3-550/FSR3MovieRenderPipeline/Binaries/Win64/UnrealEditor-FSR3MovieRenderPipeline.dll index 9beac096..34efdd45 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3MovieRenderPipeline/Binaries/Win64/UnrealEditor-FSR3MovieRenderPipeline.dll +++ b/Plugins/Marketplace/FSR3-550/FSR3MovieRenderPipeline/Binaries/Win64/UnrealEditor-FSR3MovieRenderPipeline.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98f2ec3d226a4c0ecbb0777c1122817831da64e7381c5553c1f2fb83eb77d9cc +oid sha256:58c8aa1228cff8a693cbc28416d3441e8793bf18a3f9a3bea6501509ccda0080 size 83968 diff --git a/Plugins/Marketplace/FSR3-550/FSR3MovieRenderPipeline/Binaries/Win64/UnrealEditor-FSR3MovieRenderPipeline.pdb b/Plugins/Marketplace/FSR3-550/FSR3MovieRenderPipeline/Binaries/Win64/UnrealEditor-FSR3MovieRenderPipeline.pdb index f7634716..8cb8f458 100644 --- a/Plugins/Marketplace/FSR3-550/FSR3MovieRenderPipeline/Binaries/Win64/UnrealEditor-FSR3MovieRenderPipeline.pdb +++ b/Plugins/Marketplace/FSR3-550/FSR3MovieRenderPipeline/Binaries/Win64/UnrealEditor-FSR3MovieRenderPipeline.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e66a6c8eff1c754afc2b548df06fbf0b22be57d068b191402dd6ae68a1218c78 +oid sha256:cb0c9524cd8faa872dbc9dc425451b2b0c114c8673bac4c31df864a52f459060 size 61427712 diff --git a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-CoreUtility.dll b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-CoreUtility.dll index 4d7757df..e93f43c1 100644 --- a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-CoreUtility.dll +++ b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-CoreUtility.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3be67178d112019a6d6764f713c3f56228e0bb9e940e24ca04760e580a1220f5 +oid sha256:7848ac41c2f4fefa5964d774d6f3cb06148011f8e39c72e28817f2673269e688 size 578560 diff --git a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-CoreUtility.pdb b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-CoreUtility.pdb index 819f21f9..8d1e80d1 100644 --- a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-CoreUtility.pdb +++ b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-CoreUtility.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:005f8d81ab91cba44364d885f5c33fd86402c549adcc03d680bda050a111210e -size 60616704 +oid sha256:7e15e85b7ad488c91ca7b86d0421515b9331b4aa866484e924420c474a8eec4e +size 60624896 diff --git a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJEditorPlugin.dll b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJEditorPlugin.dll index 1003edaf..a7cefa0f 100644 --- a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJEditorPlugin.dll +++ b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJEditorPlugin.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5cf033ca3b2470e8d9b20190cb03825b26e56eabb1a7bd137231b640f17a903f +oid sha256:133afb6c43d9ca0a9a6b802c11dae7b2f6e32432d49cd2f2b2e33c13a187ff0c size 130048 diff --git a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJEditorPlugin.pdb b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJEditorPlugin.pdb index 29f635ab..51f276b9 100644 --- a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJEditorPlugin.pdb +++ b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJEditorPlugin.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8109de5f01ac9c6ad6f3bb3adf15baf758ecbd8d7873556a6eadac3cd7532be4 +oid sha256:0f58523f6a9b0beb27f1d8336ce7289057e269ec590e93a8291dcfeb84207728 size 59559936 diff --git a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJson.dll b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJson.dll index 6a06fd76..b8a0a7c0 100644 --- a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJson.dll +++ b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJson.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f5d250249ce905dfd51783a04fa3b8595e149baea996c7bbe94ccf60ae225285 +oid sha256:8197cb27cde201370c5f82778e9b579d4abb10ad944041c09dd83cc75030a99e size 553984 diff --git a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJson.pdb b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJson.pdb index 6c040c54..25fc122e 100644 --- a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJson.pdb +++ b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJson.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b9ce69e1266c0894ecf3f647ef7bfd1a1226e89e50cd4f75ac63aba2b86666d +oid sha256:5960a365bd9e4796443dfb306a471534bc8ba8560aa27afc436b316fb222f820 size 61263872 diff --git a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOClient.dll b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOClient.dll index ba078ac9..1a986e73 100644 --- a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOClient.dll +++ b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOClient.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3a5462b91b4c325a52943ae6f75b6f99c7f4f7f5077efa77fbf93080b3d24b74 +oid sha256:56940eb2fdd661fe2d5f619423b1ae99705824cfc57ee98572d4000267622eba size 399872 diff --git a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOClient.pdb b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOClient.pdb index 28da636b..8e05e3de 100644 --- a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOClient.pdb +++ b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOClient.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4c8b456c5338563cf98c6a1636c8155dc0e67b9447b9afbbc525f43f56fdc29f +oid sha256:7f2919db8c5952340766de1f955269bf44c906089480b4b3767ca12ea260ca96 size 60993536 diff --git a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOLib.dll b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOLib.dll index 6efd9f4b..08353e11 100644 --- a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOLib.dll +++ b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOLib.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fef7cc4fce7008551aa5cc9998adf063dd533eb03988382dc75e9a7af6e6dff5 +oid sha256:72ec80d7bb1a4451ba12c7d4d693b1d8bc16191ddda41ac8ab0c4fb70f27612a size 4060672 diff --git a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOLib.pdb b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOLib.pdb index b3a364b7..63761e7e 100644 --- a/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOLib.pdb +++ b/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOLib.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6095e49097930f305fc48ae02259e66065ce014298c720a1ee0415606858bd4e -size 81760256 +oid sha256:3c55b9c1b0a42e5df7a714e9c13d63efa2f9512d6797b71ff9f17f25e9c6ba0f +size 81752064 diff --git a/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRest.dll b/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRest.dll index d8fc412a..ae61d621 100644 --- a/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRest.dll +++ b/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRest.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd212c54d5635dbe2212074d1cf23ee2204620421b60e4572ae27097f81f317a +oid sha256:45c7b06e1b763e03283a0308f7e37f19745dc1b29ec0ce1ea5cb5d1708a219f1 size 620544 diff --git a/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRest.pdb b/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRest.pdb index 46ebb2da..429f8c44 100644 --- a/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRest.pdb +++ b/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRest.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea1a63f95ba45935f5b15dc74448c36f99bcbffec8e4ab4bd5d802c73dd3cad1 +oid sha256:00c12c7b4fa9c2bac6affe1261e2b9bfbaf4bda85d63bd2c707931b5bd03186d size 61607936 diff --git a/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRestEditor.dll b/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRestEditor.dll index 1f16a7f2..f0127a57 100644 --- a/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRestEditor.dll +++ b/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRestEditor.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9486062a83cd64d7944a4472369a3948ce9e15c6513aaf11d9a8ff50c2b5d256 +oid sha256:4345a65856ad8214261b7f4449b849b21f436812ab74e6ddeeed3608a396a843 size 144896 diff --git a/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRestEditor.pdb b/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRestEditor.pdb index 4efba638..2b306859 100644 --- a/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRestEditor.pdb +++ b/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRestEditor.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:933eae3591ab6f78fb161bd39165a3463659dbf117a6bbc14d7c0e78534bd796 +oid sha256:a082ead1e9b1c8b60dae21a9e1a53939375bf27dc5ce20fd78156926969eb961 size 59510784 diff --git a/RobotData/0_ArmCam/0_Depth.jpg b/RobotData/0_ArmCam/0_Depth.jpg index b23b6ab1..9b0ce76f 100644 --- a/RobotData/0_ArmCam/0_Depth.jpg +++ b/RobotData/0_ArmCam/0_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b507d57e7e583c7745fcc0c15ff458c202efb5216c0091cc93553fa1c1ae3db6 -size 43926 +oid sha256:02588f547bcf46641d9caffcb26f22982f70c2bae4adf09c2590ffa470071429 +size 914062 diff --git a/RobotData/0_ArmCam/0_RGB.jpg b/RobotData/0_ArmCam/0_RGB.jpg index 55717493..92246d2f 100644 --- a/RobotData/0_ArmCam/0_RGB.jpg +++ b/RobotData/0_ArmCam/0_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfcd9f2443c3c87d53dd51c20da84fee2164a098be641c98738f3891d72502bb -size 43967 +oid sha256:41ca8eb125efd37d237715d65907d6a272cbb7aacd15c0bc3556921f5f46fbe4 +size 913553 diff --git a/RobotData/0_ArmCam/ArmCamPos.json b/RobotData/0_ArmCam/ArmCamPos.json index 964b9df8..924fc198 100644 --- a/RobotData/0_ArmCam/ArmCamPos.json +++ b/RobotData/0_ArmCam/ArmCamPos.json @@ -2,411 +2,7 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/0_HeadCam/0_Depth.jpg b/RobotData/0_HeadCam/0_Depth.jpg index 324f7f12..cfdb7ba1 100644 --- a/RobotData/0_HeadCam/0_Depth.jpg +++ b/RobotData/0_HeadCam/0_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:60ec89cfda1e1b7f6b63fad89128534d369fe6f19adaa90412fdd80a99c214f2 -size 55508 +oid sha256:ff227408d2ede1225f926a05a276e31076e90627116d61eed11a80aebf874613 +size 907466 diff --git a/RobotData/0_HeadCam/0_RGB.jpg b/RobotData/0_HeadCam/0_RGB.jpg index 9c8faa65..86abb425 100644 --- a/RobotData/0_HeadCam/0_RGB.jpg +++ b/RobotData/0_HeadCam/0_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e31e95c7a3a4471d9d24daa395734a9f36392b9c661ad5ea101b8fddd9540885 -size 54236 +oid sha256:687e34f9fe571806ea4207736588c7d3590ea6a8ec540eba8008b7cb94c25d36 +size 931147 diff --git a/RobotData/0_HeadCam/HeadCamPos.json b/RobotData/0_HeadCam/HeadCamPos.json index 0fc5bc9f..d2975a08 100644 --- a/RobotData/0_HeadCam/HeadCamPos.json +++ b/RobotData/0_HeadCam/HeadCamPos.json @@ -2,411 +2,7 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/10_ArmCam/10_Depth.jpg b/RobotData/10_ArmCam/10_Depth.jpg index 1cd16a51..5d61fea8 100644 --- a/RobotData/10_ArmCam/10_Depth.jpg +++ b/RobotData/10_ArmCam/10_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:349c0ea4b599e462656906d885b3a227fbd7a2283b16132c17245577fdb51902 -size 44251 +oid sha256:d1b4a3a4b7e70d5288fd482c53ffcb430dd4d3470faf9d435c2d3dd543da5438 +size 864669 diff --git a/RobotData/10_ArmCam/10_RGB.jpg b/RobotData/10_ArmCam/10_RGB.jpg index 332c6ac2..e17404d0 100644 --- a/RobotData/10_ArmCam/10_RGB.jpg +++ b/RobotData/10_ArmCam/10_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c15264c7b74f560c2297749e4467209177a5f40809dd7306c2aecb220c4601ae -size 44227 +oid sha256:8c93331c316a4048a7b6dca86d47d9b343ff694ef61a135207decff37f7f4988 +size 865643 diff --git a/RobotData/10_ArmCam/ArmCamPos.json b/RobotData/10_ArmCam/ArmCamPos.json index 342367c6..1f90584b 100644 --- a/RobotData/10_ArmCam/ArmCamPos.json +++ b/RobotData/10_ArmCam/ArmCamPos.json @@ -2,451 +2,47 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-33.407 Y=197.118 Z=17.367 Rotation: P=-10.065453 Y=24.838411 R=-0.152538 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-32.817 Y=195.812 Z=17.399 Rotation: P=-10.019595 Y=24.861629 R=-0.156040 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-32.099 Y=194.285 Z=17.379 Rotation: P=-10.053852 Y=24.897728 R=-0.142674 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-31.463 Y=192.908 Z=17.382 Rotation: P=-10.042117 Y=24.921978 R=-0.156537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-30.859 Y=191.610 Z=17.387 Rotation: P=-10.042464 Y=24.953226 R=-0.143456 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-30.112 Y=190.017 Z=17.373 Rotation: P=-10.061177 Y=24.988284 R=-0.143981 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-29.501 Y=188.679 Z=17.398 Rotation: P=-10.019915 Y=25.010581 R=-0.158788 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-28.747 Y=187.060 Z=17.402 Rotation: P=-10.014552 Y=25.050998 R=-0.157645 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-28.107 Y=185.727 Z=17.368 Rotation: P=-10.065564 Y=25.084056 R=-0.148858 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/10_HeadCam/10_Depth.jpg b/RobotData/10_HeadCam/10_Depth.jpg index 6e34a781..400fefc8 100644 --- a/RobotData/10_HeadCam/10_Depth.jpg +++ b/RobotData/10_HeadCam/10_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d871f877746609b3b925f8d2999a237519c49736a034acda2a8ff524d377ebc -size 54937 +oid sha256:730441a79768f58f29c80f27b5eec49e2c51c56739b3e7bb6f9de134b02567ac +size 1227030 diff --git a/RobotData/10_HeadCam/10_RGB.jpg b/RobotData/10_HeadCam/10_RGB.jpg index d810ab07..66189ae6 100644 --- a/RobotData/10_HeadCam/10_RGB.jpg +++ b/RobotData/10_HeadCam/10_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f207d9a8948b89c04ae00e41e9147b3ead50ae6b6978d0a6e3d4c0487f58d139 -size 53667 +oid sha256:963a12610ac50d453f69f7c97d35bbe25c00b5fcaa1ce6db65585cddaf21ae46 +size 1235814 diff --git a/RobotData/10_HeadCam/HeadCamPos.json b/RobotData/10_HeadCam/HeadCamPos.json index 75d2123a..4b2faf77 100644 --- a/RobotData/10_HeadCam/HeadCamPos.json +++ b/RobotData/10_HeadCam/HeadCamPos.json @@ -2,451 +2,47 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-73.514 Y=169.657 Z=125.951 Rotation: P=-0.229038 Y=-65.108815 R=0.019686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-72.991 Y=168.295 Z=125.945 Rotation: P=-0.232446 Y=-65.089575 R=-0.026162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-72.205 Y=166.791 Z=125.955 Rotation: P=-0.219315 Y=-65.050374 R=0.008104 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-71.569 Y=165.367 Z=125.947 Rotation: P=-0.232954 Y=-65.029686 R=-0.003639 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-70.959 Y=164.068 Z=125.953 Rotation: P=-0.220074 Y=-64.996765 R=-0.003278 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-70.162 Y=162.464 Z=125.955 Rotation: P=-0.220608 Y=-64.960755 R=0.015431 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-69.602 Y=161.055 Z=125.944 Rotation: P=-0.235153 Y=-64.943490 R=-0.025834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-68.838 Y=159.406 Z=125.943 Rotation: P=-0.234024 Y=-64.903797 R=-0.031192 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-68.100 Y=158.103 Z=125.953 Rotation: P=-0.225413 Y=-64.866819 R=0.019817 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/11_ArmCam/11_Depth.jpg b/RobotData/11_ArmCam/11_Depth.jpg index 56bbee07..cb91b874 100644 --- a/RobotData/11_ArmCam/11_Depth.jpg +++ b/RobotData/11_ArmCam/11_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bac9b0e5eb7a793bfe51ae1c06e2b1293e7391af4e9e5200edd8ea9dd3815b5d -size 44241 +oid sha256:d83b6f8f2e6d76556d4848292b8e8df266558b8e39d5d1ab39e5eed0323d2709 +size 870961 diff --git a/RobotData/11_ArmCam/11_RGB.jpg b/RobotData/11_ArmCam/11_RGB.jpg index c62de9a8..d9138e64 100644 --- a/RobotData/11_ArmCam/11_RGB.jpg +++ b/RobotData/11_ArmCam/11_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f7333decb3b387087ddb391e9cb5ea6eeaf38f98a94cdaed81fd8a2da9fa50a -size 44287 +oid sha256:a5e04ede62c6031d798cd8bc0698cde1d59861da361c42f40e521ef2d5b1cb5f +size 871530 diff --git a/RobotData/11_ArmCam/ArmCamPos.json b/RobotData/11_ArmCam/ArmCamPos.json index 43d465b0..510605a8 100644 --- a/RobotData/11_ArmCam/ArmCamPos.json +++ b/RobotData/11_ArmCam/ArmCamPos.json @@ -2,455 +2,51 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-33.407 Y=197.118 Z=17.367 Rotation: P=-10.065453 Y=24.838411 R=-0.152538 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-32.817 Y=195.812 Z=17.399 Rotation: P=-10.019595 Y=24.861629 R=-0.156040 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-32.099 Y=194.285 Z=17.379 Rotation: P=-10.053852 Y=24.897728 R=-0.142674 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-31.463 Y=192.908 Z=17.382 Rotation: P=-10.042117 Y=24.921978 R=-0.156537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-30.859 Y=191.610 Z=17.387 Rotation: P=-10.042464 Y=24.953226 R=-0.143456 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-30.112 Y=190.017 Z=17.373 Rotation: P=-10.061177 Y=24.988284 R=-0.143981 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-29.501 Y=188.679 Z=17.398 Rotation: P=-10.019915 Y=25.010581 R=-0.158788 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-28.747 Y=187.060 Z=17.402 Rotation: P=-10.014552 Y=25.050998 R=-0.157645 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-28.107 Y=185.727 Z=17.368 Rotation: P=-10.065564 Y=25.084056 R=-0.148858 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-27.533 Y=184.465 Z=17.402 Rotation: P=-10.014562 Y=25.106478 R=-0.157693 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/11_HeadCam/11_Depth.jpg b/RobotData/11_HeadCam/11_Depth.jpg index 3bc29d09..ebcc758c 100644 --- a/RobotData/11_HeadCam/11_Depth.jpg +++ b/RobotData/11_HeadCam/11_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:52115996814c2505f22c65cfe248fc9f3a8e95ce853e6dccbd4b949fcec6e930 -size 54677 +oid sha256:4b3ea911a5f4d53a083931af6bf58a4aadeaa97bd28fbe0f4d89b0712733d508 +size 1228741 diff --git a/RobotData/11_HeadCam/11_RGB.jpg b/RobotData/11_HeadCam/11_RGB.jpg index d36e2e38..51ffbd13 100644 --- a/RobotData/11_HeadCam/11_RGB.jpg +++ b/RobotData/11_HeadCam/11_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:74c9e67f652dc5662086cbd8351a4efe44858292add2c0a7fbcb41fb4d16afaf -size 53430 +oid sha256:4cfd8451827755b1b8dc7ef4c1d391ae94d7db60974e47bd3243e7951160d225 +size 1238019 diff --git a/RobotData/11_HeadCam/HeadCamPos.json b/RobotData/11_HeadCam/HeadCamPos.json index 5888c595..dab1c99e 100644 --- a/RobotData/11_HeadCam/HeadCamPos.json +++ b/RobotData/11_HeadCam/HeadCamPos.json @@ -2,455 +2,51 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-73.514 Y=169.657 Z=125.951 Rotation: P=-0.229038 Y=-65.108815 R=0.019686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-72.991 Y=168.295 Z=125.945 Rotation: P=-0.232446 Y=-65.089575 R=-0.026162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-72.205 Y=166.791 Z=125.955 Rotation: P=-0.219315 Y=-65.050374 R=0.008104 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-71.569 Y=165.367 Z=125.947 Rotation: P=-0.232954 Y=-65.029686 R=-0.003639 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-70.959 Y=164.068 Z=125.953 Rotation: P=-0.220074 Y=-64.996765 R=-0.003278 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-70.162 Y=162.464 Z=125.955 Rotation: P=-0.220608 Y=-64.960755 R=0.015431 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-69.602 Y=161.055 Z=125.944 Rotation: P=-0.235153 Y=-64.943490 R=-0.025834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-68.838 Y=159.406 Z=125.943 Rotation: P=-0.234024 Y=-64.903797 R=-0.031192 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-68.100 Y=158.103 Z=125.953 Rotation: P=-0.225413 Y=-64.866819 R=0.019817 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-67.598 Y=156.772 Z=125.943 Rotation: P=-0.234072 Y=-64.849029 R=-0.031179 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/12_ArmCam/12_Depth.jpg b/RobotData/12_ArmCam/12_Depth.jpg index 1a7465b5..c4529182 100644 --- a/RobotData/12_ArmCam/12_Depth.jpg +++ b/RobotData/12_ArmCam/12_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b45a15ec02a9745ea15099298ae1cecebcfbb6281d9f77b2758008bf7c7f7c4 -size 43803 +oid sha256:15fc2142d757bb1351eb3b4b120f9ef8516554e6d86ecb9dae2f952abecb88a6 +size 870018 diff --git a/RobotData/12_ArmCam/12_RGB.jpg b/RobotData/12_ArmCam/12_RGB.jpg index 7b3b75d9..8d2b4f83 100644 --- a/RobotData/12_ArmCam/12_RGB.jpg +++ b/RobotData/12_ArmCam/12_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5f3cad0d30f5d7a8d4bba863c0910e167aa4fd35e0f6cabbb7e80815595aa7e7 -size 43856 +oid sha256:68264b227ae7eaddeb259a6ae1fa8f8129d2a6d4504704888f825cfe3caa0338 +size 868207 diff --git a/RobotData/12_ArmCam/ArmCamPos.json b/RobotData/12_ArmCam/ArmCamPos.json index 44d69976..59593ef2 100644 --- a/RobotData/12_ArmCam/ArmCamPos.json +++ b/RobotData/12_ArmCam/ArmCamPos.json @@ -2,459 +2,55 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-33.407 Y=197.118 Z=17.367 Rotation: P=-10.065453 Y=24.838411 R=-0.152538 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-32.817 Y=195.812 Z=17.399 Rotation: P=-10.019595 Y=24.861629 R=-0.156040 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-32.099 Y=194.285 Z=17.379 Rotation: P=-10.053852 Y=24.897728 R=-0.142674 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-31.463 Y=192.908 Z=17.382 Rotation: P=-10.042117 Y=24.921978 R=-0.156537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-30.859 Y=191.610 Z=17.387 Rotation: P=-10.042464 Y=24.953226 R=-0.143456 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-30.112 Y=190.017 Z=17.373 Rotation: P=-10.061177 Y=24.988284 R=-0.143981 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-29.501 Y=188.679 Z=17.398 Rotation: P=-10.019915 Y=25.010581 R=-0.158788 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-28.747 Y=187.060 Z=17.402 Rotation: P=-10.014552 Y=25.050998 R=-0.157645 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-28.107 Y=185.727 Z=17.368 Rotation: P=-10.065564 Y=25.084056 R=-0.148858 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-27.533 Y=184.465 Z=17.402 Rotation: P=-10.014562 Y=25.106478 R=-0.157693 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-26.740 Y=182.776 Z=17.399 Rotation: P=-10.020523 Y=25.146491 R=-0.152832 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/12_HeadCam/12_Depth.jpg b/RobotData/12_HeadCam/12_Depth.jpg index 9792247c..4b1fd57a 100644 --- a/RobotData/12_HeadCam/12_Depth.jpg +++ b/RobotData/12_HeadCam/12_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6bcd0a976cb24247af9ae7e151bbbf586d338cdc099a1a0a21bba1ebd57e5f99 -size 54519 +oid sha256:eed6d3d8f63e39e7364b8708393b517c23ff3bca24ce166b94af601123f2c886 +size 1226307 diff --git a/RobotData/12_HeadCam/12_RGB.jpg b/RobotData/12_HeadCam/12_RGB.jpg index 8a1271d1..018f21b1 100644 --- a/RobotData/12_HeadCam/12_RGB.jpg +++ b/RobotData/12_HeadCam/12_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38086f71f0518c29cf088ed8f2c5388d55fae106ea9424dce888d127f66a69a2 -size 53272 +oid sha256:5d35de6d2fb9fad10ae619020753547171ff71ea942713ca9dbaa7448c07dcb2 +size 1234138 diff --git a/RobotData/12_HeadCam/HeadCamPos.json b/RobotData/12_HeadCam/HeadCamPos.json index 595c1e6d..e05fab6e 100644 --- a/RobotData/12_HeadCam/HeadCamPos.json +++ b/RobotData/12_HeadCam/HeadCamPos.json @@ -2,459 +2,55 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-73.514 Y=169.657 Z=125.951 Rotation: P=-0.229038 Y=-65.108815 R=0.019686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-72.991 Y=168.295 Z=125.945 Rotation: P=-0.232446 Y=-65.089575 R=-0.026162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-72.205 Y=166.791 Z=125.955 Rotation: P=-0.219315 Y=-65.050374 R=0.008104 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-71.569 Y=165.367 Z=125.947 Rotation: P=-0.232954 Y=-65.029686 R=-0.003639 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-70.959 Y=164.068 Z=125.953 Rotation: P=-0.220074 Y=-64.996765 R=-0.003278 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-70.162 Y=162.464 Z=125.955 Rotation: P=-0.220608 Y=-64.960755 R=0.015431 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-69.602 Y=161.055 Z=125.944 Rotation: P=-0.235153 Y=-64.943490 R=-0.025834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-68.838 Y=159.406 Z=125.943 Rotation: P=-0.234024 Y=-64.903797 R=-0.031192 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-68.100 Y=158.103 Z=125.953 Rotation: P=-0.225413 Y=-64.866819 R=0.019817 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-67.598 Y=156.772 Z=125.943 Rotation: P=-0.234072 Y=-64.849029 R=-0.031179 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-66.778 Y=155.068 Z=125.946 Rotation: P=-0.229290 Y=-64.808422 R=-0.025214 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/13_ArmCam/13_Depth.jpg b/RobotData/13_ArmCam/13_Depth.jpg index ff8abb74..50f97fbc 100644 --- a/RobotData/13_ArmCam/13_Depth.jpg +++ b/RobotData/13_ArmCam/13_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b1b619c3f59ea8a8089f4877ccb0902237c578f1199d2905c6318a6049c959e -size 43919 +oid sha256:c5ab6476ad6cc238c653461b301e5f79c043dd1fa2f20453801fcee331e21806 +size 882648 diff --git a/RobotData/13_ArmCam/13_RGB.jpg b/RobotData/13_ArmCam/13_RGB.jpg index 9f8ad02e..f813ad65 100644 --- a/RobotData/13_ArmCam/13_RGB.jpg +++ b/RobotData/13_ArmCam/13_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0705417f8571ccf2d16de8de09a335979cd291d0536117ac1931ef66505a7199 -size 43914 +oid sha256:49b454f5917a85213ae2fa38607a7887af3817d525ee79e271d1eeca5f457fd0 +size 880457 diff --git a/RobotData/13_ArmCam/ArmCamPos.json b/RobotData/13_ArmCam/ArmCamPos.json index 755f97b0..451714cc 100644 --- a/RobotData/13_ArmCam/ArmCamPos.json +++ b/RobotData/13_ArmCam/ArmCamPos.json @@ -2,463 +2,59 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-33.407 Y=197.118 Z=17.367 Rotation: P=-10.065453 Y=24.838411 R=-0.152538 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-32.817 Y=195.812 Z=17.399 Rotation: P=-10.019595 Y=24.861629 R=-0.156040 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-32.099 Y=194.285 Z=17.379 Rotation: P=-10.053852 Y=24.897728 R=-0.142674 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-31.463 Y=192.908 Z=17.382 Rotation: P=-10.042117 Y=24.921978 R=-0.156537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-30.859 Y=191.610 Z=17.387 Rotation: P=-10.042464 Y=24.953226 R=-0.143456 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-30.112 Y=190.017 Z=17.373 Rotation: P=-10.061177 Y=24.988284 R=-0.143981 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-29.501 Y=188.679 Z=17.398 Rotation: P=-10.019915 Y=25.010581 R=-0.158788 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-28.747 Y=187.060 Z=17.402 Rotation: P=-10.014552 Y=25.050998 R=-0.157645 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-28.107 Y=185.727 Z=17.368 Rotation: P=-10.065564 Y=25.084056 R=-0.148858 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-27.533 Y=184.465 Z=17.402 Rotation: P=-10.014562 Y=25.106478 R=-0.157693 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-26.740 Y=182.776 Z=17.399 Rotation: P=-10.020523 Y=25.146491 R=-0.152832 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-26.138 Y=181.522 Z=17.368 Rotation: P=-10.060305 Y=25.175667 R=-0.158256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/13_HeadCam/13_Depth.jpg b/RobotData/13_HeadCam/13_Depth.jpg index 88ad68b6..444fd31f 100644 --- a/RobotData/13_HeadCam/13_Depth.jpg +++ b/RobotData/13_HeadCam/13_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8fbca330bb9b8bd7b6b207ca8b07bcd5280bfdbd1b1b9e258e4779429e73219e -size 54489 +oid sha256:91380afa757d6d5f4f515a0068f14750b7b2407a22241a1c859df2eb9ac04cd9 +size 1233025 diff --git a/RobotData/13_HeadCam/13_RGB.jpg b/RobotData/13_HeadCam/13_RGB.jpg index 95f412e4..66cefff0 100644 --- a/RobotData/13_HeadCam/13_RGB.jpg +++ b/RobotData/13_HeadCam/13_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b050102f890bcefa54ae1042a4923a3d3bf1e18b66284a4e408df33206a3b2b8 -size 53210 +oid sha256:78be7aaeac69eefc4e314fb50eaf95ef24a9eaebae2763823d605ac116900911 +size 1241258 diff --git a/RobotData/13_HeadCam/HeadCamPos.json b/RobotData/13_HeadCam/HeadCamPos.json index 0ad22357..717b652d 100644 --- a/RobotData/13_HeadCam/HeadCamPos.json +++ b/RobotData/13_HeadCam/HeadCamPos.json @@ -2,463 +2,59 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-73.514 Y=169.657 Z=125.951 Rotation: P=-0.229038 Y=-65.108815 R=0.019686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-72.991 Y=168.295 Z=125.945 Rotation: P=-0.232446 Y=-65.089575 R=-0.026162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-72.205 Y=166.791 Z=125.955 Rotation: P=-0.219315 Y=-65.050374 R=0.008104 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-71.569 Y=165.367 Z=125.947 Rotation: P=-0.232954 Y=-65.029686 R=-0.003639 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-70.959 Y=164.068 Z=125.953 Rotation: P=-0.220074 Y=-64.996765 R=-0.003278 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-70.162 Y=162.464 Z=125.955 Rotation: P=-0.220608 Y=-64.960755 R=0.015431 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-69.602 Y=161.055 Z=125.944 Rotation: P=-0.235153 Y=-64.943490 R=-0.025834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-68.838 Y=159.406 Z=125.943 Rotation: P=-0.234024 Y=-64.903797 R=-0.031192 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-68.100 Y=158.103 Z=125.953 Rotation: P=-0.225413 Y=-64.866819 R=0.019817 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-67.598 Y=156.772 Z=125.943 Rotation: P=-0.234072 Y=-64.849029 R=-0.031179 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-66.778 Y=155.068 Z=125.946 Rotation: P=-0.229290 Y=-64.808422 R=-0.025214 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-66.089 Y=153.816 Z=125.947 Rotation: P=-0.234662 Y=-64.777696 R=0.014553 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/14_ArmCam/14_Depth.jpg b/RobotData/14_ArmCam/14_Depth.jpg index 84699c78..23da8bfc 100644 --- a/RobotData/14_ArmCam/14_Depth.jpg +++ b/RobotData/14_ArmCam/14_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:15a38bc9586b83f626e4c3c793ff07c2021745e861ad9109a9affad4f03406e0 -size 43582 +oid sha256:00e3bdeb134912163471e500c7468e6c1b32c3e67337f33bc18583227ea07cfa +size 861502 diff --git a/RobotData/14_ArmCam/14_RGB.jpg b/RobotData/14_ArmCam/14_RGB.jpg index e34a4a8f..fccaac05 100644 --- a/RobotData/14_ArmCam/14_RGB.jpg +++ b/RobotData/14_ArmCam/14_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b770b3b23eee315bc076609525bc8509b59e6e08e787304378a255afd523d482 -size 43630 +oid sha256:dc3f56a4c3d27d5f03f9efced042b3857088c387293a13671b48ee824c60ddce +size 861594 diff --git a/RobotData/14_ArmCam/ArmCamPos.json b/RobotData/14_ArmCam/ArmCamPos.json index b5dbdce5..b17a3aa4 100644 --- a/RobotData/14_ArmCam/ArmCamPos.json +++ b/RobotData/14_ArmCam/ArmCamPos.json @@ -2,63 +2,63 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/14_HeadCam/14_Depth.jpg b/RobotData/14_HeadCam/14_Depth.jpg index 0b54d1f1..8e40cdea 100644 --- a/RobotData/14_HeadCam/14_Depth.jpg +++ b/RobotData/14_HeadCam/14_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ed7bc1c9e2251ac355f17577f17d5a66049da0522dabbb9f48a50acfea1e807 -size 60799 +oid sha256:043e19998608052e0952d15eb52c2a384fd936e6aa25ede657fc033cdc4056bf +size 1229467 diff --git a/RobotData/14_HeadCam/14_RGB.jpg b/RobotData/14_HeadCam/14_RGB.jpg index ba001996..27f282ee 100644 --- a/RobotData/14_HeadCam/14_RGB.jpg +++ b/RobotData/14_HeadCam/14_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b954a0b2b79631871a72796a264091bf91c2473d9b7de4b33ef922041e6ef6c -size 59923 +oid sha256:19aa702a7c0b60bb07e59857c1274772fb29ce27a2c59cf394136821f00daade +size 1237399 diff --git a/RobotData/14_HeadCam/HeadCamPos.json b/RobotData/14_HeadCam/HeadCamPos.json index bb7935da..3a932ec7 100644 --- a/RobotData/14_HeadCam/HeadCamPos.json +++ b/RobotData/14_HeadCam/HeadCamPos.json @@ -2,63 +2,63 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/15_ArmCam/15_Depth.jpg b/RobotData/15_ArmCam/15_Depth.jpg index 859139d0..af5b1e2d 100644 --- a/RobotData/15_ArmCam/15_Depth.jpg +++ b/RobotData/15_ArmCam/15_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed99969b7f9640fb4694512c1dadaa432fff43c2eb19e85ecf0ea68179bd7300 -size 43557 +oid sha256:5f5f081c14e37dc38cbc85b12b43b91cbab9586b01cbdade9c05d71b8aee1075 +size 868089 diff --git a/RobotData/15_ArmCam/15_RGB.jpg b/RobotData/15_ArmCam/15_RGB.jpg index 0f9bb1bf..72ef1dd5 100644 --- a/RobotData/15_ArmCam/15_RGB.jpg +++ b/RobotData/15_ArmCam/15_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5eca1efc1d9c3c7212bea18ae7b30f74c4867e6693246a9e48fd28609aac1e7a -size 43537 +oid sha256:fbb8229e5bc186039421c023af09a58dc40fbf55b677123cd90783bc97b55703 +size 867223 diff --git a/RobotData/15_ArmCam/ArmCamPos.json b/RobotData/15_ArmCam/ArmCamPos.json index eb9554b7..a89e4dd8 100644 --- a/RobotData/15_ArmCam/ArmCamPos.json +++ b/RobotData/15_ArmCam/ArmCamPos.json @@ -2,67 +2,67 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/15_HeadCam/15_Depth.jpg b/RobotData/15_HeadCam/15_Depth.jpg index b26a0fbf..ca99e97d 100644 --- a/RobotData/15_HeadCam/15_Depth.jpg +++ b/RobotData/15_HeadCam/15_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8fd45174fe730a06450743875f7cd43cecfc36980ff406589ab309e9e9016f0 -size 60749 +oid sha256:9a02f19c84a9dd8d9a72e4cbe9c91ca43963eb9d4a8a5b4de9812caf5ee4146a +size 1233015 diff --git a/RobotData/15_HeadCam/15_RGB.jpg b/RobotData/15_HeadCam/15_RGB.jpg index 5fea17bd..4162a7a4 100644 --- a/RobotData/15_HeadCam/15_RGB.jpg +++ b/RobotData/15_HeadCam/15_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad19076d2b0435983b7daa0abe9e4d4eff358206938b39aae3070cc892d7dae4 -size 59931 +oid sha256:59de21e2839afc5aaafc55785d4f915290157f32e16c41bb98fa87e4078f48dd +size 1241537 diff --git a/RobotData/15_HeadCam/HeadCamPos.json b/RobotData/15_HeadCam/HeadCamPos.json index a889803c..2952b757 100644 --- a/RobotData/15_HeadCam/HeadCamPos.json +++ b/RobotData/15_HeadCam/HeadCamPos.json @@ -2,67 +2,67 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/16_ArmCam/16_Depth.jpg b/RobotData/16_ArmCam/16_Depth.jpg index 5c781919..84322a94 100644 --- a/RobotData/16_ArmCam/16_Depth.jpg +++ b/RobotData/16_ArmCam/16_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4e97c56d9441e6f1c4d7448b33e1c9a64506a0e1f9d558f7d0a3d0f57a0eaad -size 43483 +oid sha256:532e599be5d528acb819fd63007b66c16c5ab6cdbe1a7cd61315cb9fc36f9ab5 +size 861448 diff --git a/RobotData/16_ArmCam/16_RGB.jpg b/RobotData/16_ArmCam/16_RGB.jpg index 7d067f30..dd4a987f 100644 --- a/RobotData/16_ArmCam/16_RGB.jpg +++ b/RobotData/16_ArmCam/16_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61734c3b71daa1bfcd9e76dca651e5fa0be5422823f146ec0cf7b1078019465e -size 43464 +oid sha256:5c6cbe46518e41d99adccf840fad2072d442551554a3c951298645d5bdbc091f +size 861276 diff --git a/RobotData/16_ArmCam/ArmCamPos.json b/RobotData/16_ArmCam/ArmCamPos.json index 724183cd..ab1d0dfd 100644 --- a/RobotData/16_ArmCam/ArmCamPos.json +++ b/RobotData/16_ArmCam/ArmCamPos.json @@ -2,71 +2,71 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/16_HeadCam/16_Depth.jpg b/RobotData/16_HeadCam/16_Depth.jpg index 7b038adb..6aeb77b0 100644 --- a/RobotData/16_HeadCam/16_Depth.jpg +++ b/RobotData/16_HeadCam/16_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d77863a65b1b758fc2e2b2915f0d2b1922af34b8e5ff3b98f031c763e605b1aa -size 60834 +oid sha256:3a47fcee84b16cdaebb963cd2f11e93c71789496d012932e1d53534754dab253 +size 1223096 diff --git a/RobotData/16_HeadCam/16_RGB.jpg b/RobotData/16_HeadCam/16_RGB.jpg index 2161482d..51bad558 100644 --- a/RobotData/16_HeadCam/16_RGB.jpg +++ b/RobotData/16_HeadCam/16_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93a56417b36bf2bd3c66ac494c0c21395fd9de0e7cc0acec270d092c2e2a134d -size 59941 +oid sha256:82c76c01fc26dda98d6f4d8ae205de2d2128a4c8e0377f3526afb7fc4ee78f0d +size 1229857 diff --git a/RobotData/16_HeadCam/HeadCamPos.json b/RobotData/16_HeadCam/HeadCamPos.json index b5e5e4a8..78227816 100644 --- a/RobotData/16_HeadCam/HeadCamPos.json +++ b/RobotData/16_HeadCam/HeadCamPos.json @@ -2,71 +2,71 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/17_ArmCam/17_Depth.jpg b/RobotData/17_ArmCam/17_Depth.jpg index 24a86c2d..fe402513 100644 --- a/RobotData/17_ArmCam/17_Depth.jpg +++ b/RobotData/17_ArmCam/17_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce2bd2dcf165ff733a6c2ab11416a2d2b57560091ec901d64784430841f30313 -size 43013 +oid sha256:9e6d960f999c1e3f52891266ca4eb2409bcda5ae6082a11b76cc0748188776ad +size 872361 diff --git a/RobotData/17_ArmCam/17_RGB.jpg b/RobotData/17_ArmCam/17_RGB.jpg index 9f917faa..e1e158c5 100644 --- a/RobotData/17_ArmCam/17_RGB.jpg +++ b/RobotData/17_ArmCam/17_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:601eb83ba1bd468aa0df8294058d2f4f8371befe5a22c4cdb5dc7ec80f9465fc -size 43075 +oid sha256:07cfaec5f592c4fb0df51934665fd044b2f1539c79e09ab85c33cca70e2c769e +size 872784 diff --git a/RobotData/17_ArmCam/ArmCamPos.json b/RobotData/17_ArmCam/ArmCamPos.json index 81265e67..7a5d342b 100644 --- a/RobotData/17_ArmCam/ArmCamPos.json +++ b/RobotData/17_ArmCam/ArmCamPos.json @@ -2,75 +2,75 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/17_HeadCam/17_Depth.jpg b/RobotData/17_HeadCam/17_Depth.jpg index d679632d..339ebe56 100644 --- a/RobotData/17_HeadCam/17_Depth.jpg +++ b/RobotData/17_HeadCam/17_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1dffa902c7ad5fd3a8ddac8c8dd8b5a884e1a3128dac680dedf2711efb02d8a3 -size 60921 +oid sha256:579f23b4cbd422021e78df980dc666f242dda62bb051ff48ca26120d985f5334 +size 1232134 diff --git a/RobotData/17_HeadCam/17_RGB.jpg b/RobotData/17_HeadCam/17_RGB.jpg index d99dc9b0..e3258c27 100644 --- a/RobotData/17_HeadCam/17_RGB.jpg +++ b/RobotData/17_HeadCam/17_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1c25bd742d3e05a7cf8f4ef80127956a4a7df01bb6341cefaa05c628e66f9dd -size 60027 +oid sha256:c509aa32a5bf44743d327533e52b1d77864ae62f458fac6a1cd7ffb44b3d449f +size 1240327 diff --git a/RobotData/17_HeadCam/HeadCamPos.json b/RobotData/17_HeadCam/HeadCamPos.json index 7d5bd09a..5e746250 100644 --- a/RobotData/17_HeadCam/HeadCamPos.json +++ b/RobotData/17_HeadCam/HeadCamPos.json @@ -2,75 +2,75 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/18_ArmCam/18_Depth.jpg b/RobotData/18_ArmCam/18_Depth.jpg index c0307f9b..c4dc966b 100644 --- a/RobotData/18_ArmCam/18_Depth.jpg +++ b/RobotData/18_ArmCam/18_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b410e2c1d5ad6ce905eb43becd0bff67e264867ad07ba30397a3cd67c6d5cb38 -size 42989 +oid sha256:01164dc76328e4ad98096a2ec850674d2b04fac7150083870d97eab2ecb65d2b +size 863967 diff --git a/RobotData/18_ArmCam/18_RGB.jpg b/RobotData/18_ArmCam/18_RGB.jpg index c0d7cc17..848d892b 100644 --- a/RobotData/18_ArmCam/18_RGB.jpg +++ b/RobotData/18_ArmCam/18_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:17e3b86e909e1d6e7f07a98fe59cc529d3da44b15c46f8e712723c24c64fea6b -size 43047 +oid sha256:10bbb6a9d81a8f04ddc3e7ca68c523c9ea5de691944dff6dd94a6fb23635d499 +size 863765 diff --git a/RobotData/18_ArmCam/ArmCamPos.json b/RobotData/18_ArmCam/ArmCamPos.json index e6185e3f..eff85a22 100644 --- a/RobotData/18_ArmCam/ArmCamPos.json +++ b/RobotData/18_ArmCam/ArmCamPos.json @@ -2,79 +2,79 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/18_HeadCam/18_Depth.jpg b/RobotData/18_HeadCam/18_Depth.jpg index bf501d56..4f346672 100644 --- a/RobotData/18_HeadCam/18_Depth.jpg +++ b/RobotData/18_HeadCam/18_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf9f10dd481cb9aff79ca770a0fada101063883ba7ec8f15f8f64744e7cbc821 -size 60927 +oid sha256:4667e34c7d958785b900c54d21816dbf2fb841fb5c75150bc5a528fe9a820557 +size 1225529 diff --git a/RobotData/18_HeadCam/18_RGB.jpg b/RobotData/18_HeadCam/18_RGB.jpg index b9432cda..4e4f393e 100644 --- a/RobotData/18_HeadCam/18_RGB.jpg +++ b/RobotData/18_HeadCam/18_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef9767094ce157571fa194b6b0cc9065c5cb6ebb53dfeaf97e82d346c63d6421 -size 60035 +oid sha256:6d2a11847599cc54d88b9bc0ba1c378e88949d0c992b144978f42dd46ace1dd5 +size 1232892 diff --git a/RobotData/18_HeadCam/HeadCamPos.json b/RobotData/18_HeadCam/HeadCamPos.json index 3265c0a8..caadb2c6 100644 --- a/RobotData/18_HeadCam/HeadCamPos.json +++ b/RobotData/18_HeadCam/HeadCamPos.json @@ -2,79 +2,79 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/19_ArmCam/19_Depth.jpg b/RobotData/19_ArmCam/19_Depth.jpg index 83176cc0..a3bf2474 100644 --- a/RobotData/19_ArmCam/19_Depth.jpg +++ b/RobotData/19_ArmCam/19_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b94ae39062984f5268fa42f1827196800865d56c6aaadff2fb1152605506c80b -size 42817 +oid sha256:97cd94b955d24cf75d9af21f175976f9c1cce1a238955cde8bbabe62cd8ff9d0 +size 871250 diff --git a/RobotData/19_ArmCam/19_RGB.jpg b/RobotData/19_ArmCam/19_RGB.jpg index dbf55a15..caeb6726 100644 --- a/RobotData/19_ArmCam/19_RGB.jpg +++ b/RobotData/19_ArmCam/19_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31cddd3abe998722f5a686d5a2eb26706e6d50ea47deb5d2433acac61a6f04de -size 42844 +oid sha256:6f8776bf0124b5ee2fc75e787e59e97165cb69d5fcedce399eba1f00b14faa28 +size 870419 diff --git a/RobotData/19_ArmCam/ArmCamPos.json b/RobotData/19_ArmCam/ArmCamPos.json index 21acd243..cc8b1dd0 100644 --- a/RobotData/19_ArmCam/ArmCamPos.json +++ b/RobotData/19_ArmCam/ArmCamPos.json @@ -2,83 +2,83 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/19_HeadCam/19_Depth.jpg b/RobotData/19_HeadCam/19_Depth.jpg index a0c2cd9d..fbd416d5 100644 --- a/RobotData/19_HeadCam/19_Depth.jpg +++ b/RobotData/19_HeadCam/19_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1119f83e2ff1dcad5fa8f88e1915661b5db89aa0aa6b22c30ec8a979859fdf4c -size 61074 +oid sha256:fe06452a52db46b833608c6a5f08efbfbcc8fb1971bc643a950ee595762b3e2c +size 1229414 diff --git a/RobotData/19_HeadCam/19_RGB.jpg b/RobotData/19_HeadCam/19_RGB.jpg index 0c3d8b8e..ccccb875 100644 --- a/RobotData/19_HeadCam/19_RGB.jpg +++ b/RobotData/19_HeadCam/19_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ee6b788f43ef8df56806a6928e5b9de64e58dd69e097320229abee38c012553a -size 60191 +oid sha256:cb5b34ec533cfbb84df76e02f6164dc20218f3c922221ea3e4c8f562105dee68 +size 1235395 diff --git a/RobotData/19_HeadCam/HeadCamPos.json b/RobotData/19_HeadCam/HeadCamPos.json index 7c01a18b..a8b21d51 100644 --- a/RobotData/19_HeadCam/HeadCamPos.json +++ b/RobotData/19_HeadCam/HeadCamPos.json @@ -2,83 +2,83 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/1_ArmCam/1_Depth.jpg b/RobotData/1_ArmCam/1_Depth.jpg index f0617336..a466d263 100644 --- a/RobotData/1_ArmCam/1_Depth.jpg +++ b/RobotData/1_ArmCam/1_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c9a6d03880b4b286f916421ee9b2cd37144e2bffa91cdd8d5799abca63baade -size 43851 +oid sha256:1210501e58a226ed2589e6b4261e689d3bcd8f0051e63520b4c1dd582a1fe499 +size 898022 diff --git a/RobotData/1_ArmCam/1_RGB.jpg b/RobotData/1_ArmCam/1_RGB.jpg index eacd87d9..531eb74a 100644 --- a/RobotData/1_ArmCam/1_RGB.jpg +++ b/RobotData/1_ArmCam/1_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f9db13855d3ed31b545211a19c5c0ab64f685d5018be929a590010dc5160acf -size 43911 +oid sha256:72b7bd157b2c9e1a92e88a9c815eaae8a0e313005bdfc8c516277788f0bf4443 +size 896834 diff --git a/RobotData/1_ArmCam/ArmCamPos.json b/RobotData/1_ArmCam/ArmCamPos.json index 1eef5a5b..71453ae7 100644 --- a/RobotData/1_ArmCam/ArmCamPos.json +++ b/RobotData/1_ArmCam/ArmCamPos.json @@ -2,415 +2,11 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/1_HeadCam/1_Depth.jpg b/RobotData/1_HeadCam/1_Depth.jpg index 7f04a5df..df126224 100644 --- a/RobotData/1_HeadCam/1_Depth.jpg +++ b/RobotData/1_HeadCam/1_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:25a6e285f3a498b924782619f68669e92c209f2181ba3be7ddc3af48bf797f56 -size 55478 +oid sha256:4e1a0c4c23c315ddcd5f943c556688518ecef18d9fa1f761250942d3eae21636 +size 930195 diff --git a/RobotData/1_HeadCam/1_RGB.jpg b/RobotData/1_HeadCam/1_RGB.jpg index 97db365f..8159f525 100644 --- a/RobotData/1_HeadCam/1_RGB.jpg +++ b/RobotData/1_HeadCam/1_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c310627d722687b486a37fc00f2940eac1f23aa9e310b787f5d8cb5425927cc7 -size 54227 +oid sha256:fb12512f7a2cd6d65cd10e0c3c4259be94016328f66e536ace346f2cfb1f8f5d +size 954586 diff --git a/RobotData/1_HeadCam/HeadCamPos.json b/RobotData/1_HeadCam/HeadCamPos.json index 9aae98ef..dccde402 100644 --- a/RobotData/1_HeadCam/HeadCamPos.json +++ b/RobotData/1_HeadCam/HeadCamPos.json @@ -2,415 +2,11 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/20_ArmCam/20_Depth.jpg b/RobotData/20_ArmCam/20_Depth.jpg index a4a3b93f..13c6bfa4 100644 --- a/RobotData/20_ArmCam/20_Depth.jpg +++ b/RobotData/20_ArmCam/20_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:13e3d4c34911fbc74512e591d7fbc8a66f928fd2b707d0997032bd20bf70ceb6 -size 42719 +oid sha256:d35dc6eb0753abd44000671b35e267f88d2190005d5fd3822c95882d77266cce +size 857980 diff --git a/RobotData/20_ArmCam/20_RGB.jpg b/RobotData/20_ArmCam/20_RGB.jpg index d2ffa228..11734f76 100644 --- a/RobotData/20_ArmCam/20_RGB.jpg +++ b/RobotData/20_ArmCam/20_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfedcf066563dd8e2122dc2b00322e4116787282f496f51522a18a29049f3de1 -size 42799 +oid sha256:32e9a7cd9b204b3738c73b84677cba858e3d0db367118e4f32c6b7f3e2aa8aae +size 858404 diff --git a/RobotData/20_ArmCam/ArmCamPos.json b/RobotData/20_ArmCam/ArmCamPos.json index 0385e860..333d82a9 100644 --- a/RobotData/20_ArmCam/ArmCamPos.json +++ b/RobotData/20_ArmCam/ArmCamPos.json @@ -2,87 +2,87 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/20_HeadCam/20_Depth.jpg b/RobotData/20_HeadCam/20_Depth.jpg index 366edaf5..43ced15b 100644 --- a/RobotData/20_HeadCam/20_Depth.jpg +++ b/RobotData/20_HeadCam/20_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5e406297df3db8db9d9a2d9c279898c027df5fe55b796135f75bc1ca0b26dbe3 -size 60992 +oid sha256:d8df0b5006e1f46784623b1de54f6049c895cd816a3a1eb90bc539c3d85d48d4 +size 1222879 diff --git a/RobotData/20_HeadCam/20_RGB.jpg b/RobotData/20_HeadCam/20_RGB.jpg index 4c436015..c9c733ec 100644 --- a/RobotData/20_HeadCam/20_RGB.jpg +++ b/RobotData/20_HeadCam/20_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9401d363c2bfaacca30641310ddc7c5af0b1f328cf22f320e221e27c5de28da8 -size 60037 +oid sha256:bc37f8f633a920fadfa00baa9f885985e5190cf328572607ebc4fde62b86bb7e +size 1229393 diff --git a/RobotData/20_HeadCam/HeadCamPos.json b/RobotData/20_HeadCam/HeadCamPos.json index 15861f45..89f65f3b 100644 --- a/RobotData/20_HeadCam/HeadCamPos.json +++ b/RobotData/20_HeadCam/HeadCamPos.json @@ -2,87 +2,87 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/21_ArmCam/21_Depth.jpg b/RobotData/21_ArmCam/21_Depth.jpg index 14080654..867e8539 100644 --- a/RobotData/21_ArmCam/21_Depth.jpg +++ b/RobotData/21_ArmCam/21_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:55ecebe38eea6ffef51dcd72c347c99bc18ef7bbb5c96bc6d9d280d14d545ac3 -size 42787 +oid sha256:95b9fe361606bc62d6e1e0e41f63c9e7680b82fb4b9c0ad85786d724927b1629 +size 867761 diff --git a/RobotData/21_ArmCam/21_RGB.jpg b/RobotData/21_ArmCam/21_RGB.jpg index a4df9cab..1a70b91d 100644 --- a/RobotData/21_ArmCam/21_RGB.jpg +++ b/RobotData/21_ArmCam/21_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f5f9761b9a9b7d78a8f4e0bec58e7b58b3b5028cd31d44810c00fd7b105e8ae -size 42786 +oid sha256:845e7fe497608e3c61e7a905640504346a61696efc238cdd39e2fd767993c5bd +size 866763 diff --git a/RobotData/21_ArmCam/ArmCamPos.json b/RobotData/21_ArmCam/ArmCamPos.json index e25fa6c1..04efd85d 100644 --- a/RobotData/21_ArmCam/ArmCamPos.json +++ b/RobotData/21_ArmCam/ArmCamPos.json @@ -2,91 +2,91 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/21_HeadCam/21_Depth.jpg b/RobotData/21_HeadCam/21_Depth.jpg index 613a5690..cb0b5532 100644 --- a/RobotData/21_HeadCam/21_Depth.jpg +++ b/RobotData/21_HeadCam/21_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59e9942b3adb87cac51e2dc22e11db87d1716e7c0f1e9852f6f9883146876517 -size 61327 +oid sha256:22c7564a09f344aef6dfb850504b91963e9013757383fdaca90ecd98e7cdefb4 +size 1231637 diff --git a/RobotData/21_HeadCam/21_RGB.jpg b/RobotData/21_HeadCam/21_RGB.jpg index f225e2ff..73f2f597 100644 --- a/RobotData/21_HeadCam/21_RGB.jpg +++ b/RobotData/21_HeadCam/21_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b0cebc17df46691dfaf9e5ba83a5d378aedfeebaf25575aede436915cf94b589 -size 60315 +oid sha256:370a365a6f012aabc0bde44aee043402ba158484228bd39c5c363d5a6285deb2 +size 1239169 diff --git a/RobotData/21_HeadCam/HeadCamPos.json b/RobotData/21_HeadCam/HeadCamPos.json index c654ccac..b1dcb3d1 100644 --- a/RobotData/21_HeadCam/HeadCamPos.json +++ b/RobotData/21_HeadCam/HeadCamPos.json @@ -2,91 +2,91 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/22_ArmCam/22_Depth.jpg b/RobotData/22_ArmCam/22_Depth.jpg index 7bd5fa19..6708cb71 100644 --- a/RobotData/22_ArmCam/22_Depth.jpg +++ b/RobotData/22_ArmCam/22_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5403226788abad36f863e8cbbf46718833c199d6d617b24e2c2dbed3865f21a6 -size 42917 +oid sha256:fa2882d1f431da48c0ff76f0147891c07f3038a60ea40c7030bac7f3b77688d9 +size 866087 diff --git a/RobotData/22_ArmCam/22_RGB.jpg b/RobotData/22_ArmCam/22_RGB.jpg index 808172ae..138f3ba1 100644 --- a/RobotData/22_ArmCam/22_RGB.jpg +++ b/RobotData/22_ArmCam/22_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7de35df7999ad0b37c063694a5e032d5232cf2dbc7f2977e334d9fbfd8b65550 -size 42951 +oid sha256:b20ba83d629f1419e4bf3be741432f8884e7a8a6899de148acc62705bf5d17ab +size 864519 diff --git a/RobotData/22_ArmCam/ArmCamPos.json b/RobotData/22_ArmCam/ArmCamPos.json index 790d1a55..53bf8709 100644 --- a/RobotData/22_ArmCam/ArmCamPos.json +++ b/RobotData/22_ArmCam/ArmCamPos.json @@ -2,95 +2,95 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/22_HeadCam/22_Depth.jpg b/RobotData/22_HeadCam/22_Depth.jpg index 18ce36d5..c5a474c3 100644 --- a/RobotData/22_HeadCam/22_Depth.jpg +++ b/RobotData/22_HeadCam/22_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:924af64802dec8d93cb77716a389937096cc76e5446119a8a4f776b7579a7f52 -size 60908 +oid sha256:7e2f0347624d08d64914376b02cca105b55c3e45d07f0fb9b65faefd6febd861 +size 1215313 diff --git a/RobotData/22_HeadCam/22_RGB.jpg b/RobotData/22_HeadCam/22_RGB.jpg index 31e76b7c..3f309764 100644 --- a/RobotData/22_HeadCam/22_RGB.jpg +++ b/RobotData/22_HeadCam/22_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a008488caa4638ca3e9f8e1a72c53b58fa0b2960fbcd5d893bef3641d5827c1d -size 59994 +oid sha256:fda597237e59764cd03d536ffcf5794d35040d883af657b97da5dd5dbbac03fb +size 1222276 diff --git a/RobotData/22_HeadCam/HeadCamPos.json b/RobotData/22_HeadCam/HeadCamPos.json index 17a35b84..653326b7 100644 --- a/RobotData/22_HeadCam/HeadCamPos.json +++ b/RobotData/22_HeadCam/HeadCamPos.json @@ -2,95 +2,95 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/23_ArmCam/23_Depth.jpg b/RobotData/23_ArmCam/23_Depth.jpg index 3717ea04..8bdfacc3 100644 --- a/RobotData/23_ArmCam/23_Depth.jpg +++ b/RobotData/23_ArmCam/23_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db835cfaf3c3ee0dc0a9f12fb3181f0af5fcfc77551a1bcc19929dcdded122e2 -size 43114 +oid sha256:836fadbbf5463c8761b64072af85a3692b1ff4946d77b47db906142a02941d9c +size 871538 diff --git a/RobotData/23_ArmCam/23_RGB.jpg b/RobotData/23_ArmCam/23_RGB.jpg index cd7b3080..8328aef9 100644 --- a/RobotData/23_ArmCam/23_RGB.jpg +++ b/RobotData/23_ArmCam/23_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:67b6598f7a8e2d6829189f17a38962f26aa84237faf47a6c3c3a96b4a57e2f10 -size 43178 +oid sha256:ff192a6e172f1b0b856f9adf65294bbedbf9fcc53f6c83fc9653df2d6be1ecd9 +size 870150 diff --git a/RobotData/23_ArmCam/ArmCamPos.json b/RobotData/23_ArmCam/ArmCamPos.json index ff715f6b..d2a96005 100644 --- a/RobotData/23_ArmCam/ArmCamPos.json +++ b/RobotData/23_ArmCam/ArmCamPos.json @@ -2,99 +2,99 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/23_HeadCam/23_Depth.jpg b/RobotData/23_HeadCam/23_Depth.jpg index 4fc54d17..46117056 100644 --- a/RobotData/23_HeadCam/23_Depth.jpg +++ b/RobotData/23_HeadCam/23_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:031d0fed59bfc78b3c5c1ef9cd86050b7f36954fbe25e715c86b648571e5074b -size 61103 +oid sha256:946c183058dca70110147a409bfe89d06a0e5ba785fdbbadd8ee7cfa7e14f392 +size 1219982 diff --git a/RobotData/23_HeadCam/23_RGB.jpg b/RobotData/23_HeadCam/23_RGB.jpg index 9d9e92f3..da410a86 100644 --- a/RobotData/23_HeadCam/23_RGB.jpg +++ b/RobotData/23_HeadCam/23_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:81f99a120cf6ff8470dd6c9818097e592c22cc08940e2b353e76833afac50d05 -size 60141 +oid sha256:094a12488b3a89ad6073019db457f12e9637f28ef047f4a63acc57ab13e68020 +size 1226707 diff --git a/RobotData/23_HeadCam/HeadCamPos.json b/RobotData/23_HeadCam/HeadCamPos.json index d46b22ff..bb7b8fb6 100644 --- a/RobotData/23_HeadCam/HeadCamPos.json +++ b/RobotData/23_HeadCam/HeadCamPos.json @@ -2,99 +2,99 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/24_ArmCam/24_Depth.jpg b/RobotData/24_ArmCam/24_Depth.jpg index aee7f759..bbaa30b7 100644 --- a/RobotData/24_ArmCam/24_Depth.jpg +++ b/RobotData/24_ArmCam/24_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03f863e5e0ed8d38c43cf25c340f9af5debe20c611e6fab66797883ced324545 -size 43686 +oid sha256:d9aa0b93e6a53dbc369285a21d549c8826412742c6a14443349d1d88d4b322a7 +size 857718 diff --git a/RobotData/24_ArmCam/24_RGB.jpg b/RobotData/24_ArmCam/24_RGB.jpg index 52810bbb..201f10f0 100644 --- a/RobotData/24_ArmCam/24_RGB.jpg +++ b/RobotData/24_ArmCam/24_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89c3be9b23ab50451a394fd8e77ebf8d19ece59ead518a65bd3fbb45cf9e10f3 -size 43651 +oid sha256:c746db8a85bde4777550af49b5272ed02abae03cb58e24f23ba2a5fad338ce31 +size 856641 diff --git a/RobotData/24_ArmCam/ArmCamPos.json b/RobotData/24_ArmCam/ArmCamPos.json index 2e98f000..5f1ee414 100644 --- a/RobotData/24_ArmCam/ArmCamPos.json +++ b/RobotData/24_ArmCam/ArmCamPos.json @@ -2,103 +2,103 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/24_HeadCam/24_Depth.jpg b/RobotData/24_HeadCam/24_Depth.jpg index 7dd0a7f1..b35a4090 100644 --- a/RobotData/24_HeadCam/24_Depth.jpg +++ b/RobotData/24_HeadCam/24_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ea0a89c63cedb193bafe5e5f4965826167a8f8a6b22c20d7416dafc34182839 -size 61229 +oid sha256:6e721cb9af4d71fc5653af28e01b8f58cbeb1663e671c78935bc044f52630792 +size 1208830 diff --git a/RobotData/24_HeadCam/24_RGB.jpg b/RobotData/24_HeadCam/24_RGB.jpg index c801d8fc..6069d17c 100644 --- a/RobotData/24_HeadCam/24_RGB.jpg +++ b/RobotData/24_HeadCam/24_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5910a8ab3e5b07407447cb38e0063b04ace463d8332978e7fc0dd9675adf6bd1 -size 60254 +oid sha256:e53f6ef69c9ec2766fd9d55e369b8d5ade8e8136c762804e5a16684c3d4795c5 +size 1214927 diff --git a/RobotData/24_HeadCam/HeadCamPos.json b/RobotData/24_HeadCam/HeadCamPos.json index 883a52c4..a882013c 100644 --- a/RobotData/24_HeadCam/HeadCamPos.json +++ b/RobotData/24_HeadCam/HeadCamPos.json @@ -2,103 +2,103 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/25_ArmCam/25_Depth.jpg b/RobotData/25_ArmCam/25_Depth.jpg index 528e71e4..408cec25 100644 --- a/RobotData/25_ArmCam/25_Depth.jpg +++ b/RobotData/25_ArmCam/25_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e397081822a4bce2899008c9ff4079d4881f50628d57d2f04ad0fc8813d1a9b1 -size 43708 +oid sha256:5661c22da312fe5ec03b38e887efd0478d9d65355ad732175239d7ff1c07f6a2 +size 869415 diff --git a/RobotData/25_ArmCam/25_RGB.jpg b/RobotData/25_ArmCam/25_RGB.jpg index 29972d2a..156e52ee 100644 --- a/RobotData/25_ArmCam/25_RGB.jpg +++ b/RobotData/25_ArmCam/25_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93d18508fb4f58e377fba10aedb8487aef99664ea9e866426e6fece78e8335d4 -size 43732 +oid sha256:bd0267a94c4d25047b5d971e4815e91aff1983fb3c8a72d814e6adb1fcf4ca02 +size 866830 diff --git a/RobotData/25_ArmCam/ArmCamPos.json b/RobotData/25_ArmCam/ArmCamPos.json index c637e276..55b0bd02 100644 --- a/RobotData/25_ArmCam/ArmCamPos.json +++ b/RobotData/25_ArmCam/ArmCamPos.json @@ -2,107 +2,107 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/25_HeadCam/25_Depth.jpg b/RobotData/25_HeadCam/25_Depth.jpg index efdeaa2e..02c6897f 100644 --- a/RobotData/25_HeadCam/25_Depth.jpg +++ b/RobotData/25_HeadCam/25_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a38da34cf8df5db974158d6cca378fe988817f97cb43d2f744773ea01bd7e3f6 -size 61376 +oid sha256:33ff5a8e35cbc704c8b5d6eea307741efe22ba420c7e3537bf01fd9ff79ebd20 +size 1220655 diff --git a/RobotData/25_HeadCam/25_RGB.jpg b/RobotData/25_HeadCam/25_RGB.jpg index 5bc2a6d4..4f80a769 100644 --- a/RobotData/25_HeadCam/25_RGB.jpg +++ b/RobotData/25_HeadCam/25_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d47a0a921e19f48e682eac672dc6ec80aa9467a2022b0e3db7dce20a7af477a8 -size 60497 +oid sha256:8dda0235e8bd9e426457daf15fa73b75d8a40ce3e001728ec13345108a2680e6 +size 1227547 diff --git a/RobotData/25_HeadCam/HeadCamPos.json b/RobotData/25_HeadCam/HeadCamPos.json index 05b77f9f..5fa0bd5f 100644 --- a/RobotData/25_HeadCam/HeadCamPos.json +++ b/RobotData/25_HeadCam/HeadCamPos.json @@ -2,107 +2,107 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/26_ArmCam/26_Depth.jpg b/RobotData/26_ArmCam/26_Depth.jpg index baebed08..aa234218 100644 --- a/RobotData/26_ArmCam/26_Depth.jpg +++ b/RobotData/26_ArmCam/26_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5cf3a982ffa4a8a0d7b0df35354c48cf3c5899c04cb7bbf19f8c584154e916b9 -size 43651 +oid sha256:8dbb9dd82257c2166e402286a5d2745c3e6a7044586441505aa10a5b359ef777 +size 859957 diff --git a/RobotData/26_ArmCam/26_RGB.jpg b/RobotData/26_ArmCam/26_RGB.jpg index 8c230c2b..a48a3abb 100644 --- a/RobotData/26_ArmCam/26_RGB.jpg +++ b/RobotData/26_ArmCam/26_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb9537987e7e4d2a1e2e14647c6491799b91817ea9925bf36f544d8db4a547af -size 43700 +oid sha256:0c7c80f266d831c167da91b68be038a2848e92944418cf1b0bf2a4f901f9a2a7 +size 859902 diff --git a/RobotData/26_ArmCam/ArmCamPos.json b/RobotData/26_ArmCam/ArmCamPos.json index d4ecd011..5ff2efbb 100644 --- a/RobotData/26_ArmCam/ArmCamPos.json +++ b/RobotData/26_ArmCam/ArmCamPos.json @@ -2,111 +2,111 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/26_HeadCam/26_Depth.jpg b/RobotData/26_HeadCam/26_Depth.jpg index 6c665811..dc06df52 100644 --- a/RobotData/26_HeadCam/26_Depth.jpg +++ b/RobotData/26_HeadCam/26_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea8df0c8a4c75a8709bdcf1ec2bc10c90775a8470fd626ba7d48cf9f493f4e81 -size 61234 +oid sha256:14ba7fa53a1ddf0797daadd1dacb36bfda752f2651b22a7a2a91f52c02aa293c +size 1208974 diff --git a/RobotData/26_HeadCam/26_RGB.jpg b/RobotData/26_HeadCam/26_RGB.jpg index d7356928..9215257e 100644 --- a/RobotData/26_HeadCam/26_RGB.jpg +++ b/RobotData/26_HeadCam/26_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f10f8de077c3845cbc65ac67e28369e60e05f6cc35f72191342a4426d163323 -size 60209 +oid sha256:92c1109fd72180a2eb5f5a3f39c7d8c6b60652fb15b754d6792e4bf99b9db328 +size 1216703 diff --git a/RobotData/26_HeadCam/HeadCamPos.json b/RobotData/26_HeadCam/HeadCamPos.json index 3d990683..07f93d74 100644 --- a/RobotData/26_HeadCam/HeadCamPos.json +++ b/RobotData/26_HeadCam/HeadCamPos.json @@ -2,111 +2,111 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/27_ArmCam/27_Depth.jpg b/RobotData/27_ArmCam/27_Depth.jpg index 79c94aa0..9ad39094 100644 --- a/RobotData/27_ArmCam/27_Depth.jpg +++ b/RobotData/27_ArmCam/27_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a6af9b5ca98875529819d1bdb6daba901ddb3d511ab45fba741d566de623348b -size 43672 +oid sha256:9eb30c4dd5042f38f96a190d4c84d7c7485181374768ce3fe70f26b7c696283b +size 869247 diff --git a/RobotData/27_ArmCam/27_RGB.jpg b/RobotData/27_ArmCam/27_RGB.jpg index 5594b225..4cc2c5af 100644 --- a/RobotData/27_ArmCam/27_RGB.jpg +++ b/RobotData/27_ArmCam/27_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:22d80496fb85d42dfc9a41e059f176736a9edbff2e54e044d5fe104fcf90b4f8 -size 43685 +oid sha256:b80a77d88f3561295cf83058691201a856ae4ee9f6319c90fc7bc6db7c8dca47 +size 868276 diff --git a/RobotData/27_ArmCam/ArmCamPos.json b/RobotData/27_ArmCam/ArmCamPos.json index 5b321401..1ff98bcc 100644 --- a/RobotData/27_ArmCam/ArmCamPos.json +++ b/RobotData/27_ArmCam/ArmCamPos.json @@ -2,115 +2,115 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/27_HeadCam/27_Depth.jpg b/RobotData/27_HeadCam/27_Depth.jpg index 67a44fab..15de7538 100644 --- a/RobotData/27_HeadCam/27_Depth.jpg +++ b/RobotData/27_HeadCam/27_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d07e517c357c41067d2af554a48b97a967f3dee43a9ced45e2660b97af95e633 -size 61014 +oid sha256:6aa04e8f628723a45fab3005a999d7675a20d171b15acb479c72766faf092369 +size 1213451 diff --git a/RobotData/27_HeadCam/27_RGB.jpg b/RobotData/27_HeadCam/27_RGB.jpg index 9ff55a03..bc6ec522 100644 --- a/RobotData/27_HeadCam/27_RGB.jpg +++ b/RobotData/27_HeadCam/27_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dbdf73d0f5c9ad570b22762f4efb1ae5d87e099e3e1e2be80b755eea2c69c7b4 -size 59981 +oid sha256:bb72a5cd1f4b1590c36ddd54de9aa14c945ea73ce7e660f2a2e3124d596f9061 +size 1220683 diff --git a/RobotData/27_HeadCam/HeadCamPos.json b/RobotData/27_HeadCam/HeadCamPos.json index 7b924dfe..b82383a1 100644 --- a/RobotData/27_HeadCam/HeadCamPos.json +++ b/RobotData/27_HeadCam/HeadCamPos.json @@ -2,115 +2,115 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/28_ArmCam/28_Depth.jpg b/RobotData/28_ArmCam/28_Depth.jpg index 5da9f530..9ef125cc 100644 --- a/RobotData/28_ArmCam/28_Depth.jpg +++ b/RobotData/28_ArmCam/28_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cba0d59488a9bee36dcb72f17524246976b5caa9aaa3296967e2698710702b51 -size 43410 +oid sha256:d312328c313476cf4141cf3033fbbf158d6a0a3c1f3029ce1b5da335d8a23e74 +size 861769 diff --git a/RobotData/28_ArmCam/28_RGB.jpg b/RobotData/28_ArmCam/28_RGB.jpg index 40b98229..00197351 100644 --- a/RobotData/28_ArmCam/28_RGB.jpg +++ b/RobotData/28_ArmCam/28_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e066d0030c7c9226dd54e4f2e6179aa99f821e7c8e8982a5afaf2740f970563e -size 43430 +oid sha256:56c091aa8840c1fd2a49cf322800bdf60103b0fa34c75daa03b03e88009baf8b +size 861271 diff --git a/RobotData/28_ArmCam/ArmCamPos.json b/RobotData/28_ArmCam/ArmCamPos.json index d7da5ecb..dfdc78fc 100644 --- a/RobotData/28_ArmCam/ArmCamPos.json +++ b/RobotData/28_ArmCam/ArmCamPos.json @@ -2,119 +2,119 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/28_HeadCam/28_Depth.jpg b/RobotData/28_HeadCam/28_Depth.jpg index b7dc60c9..4d53e761 100644 --- a/RobotData/28_HeadCam/28_Depth.jpg +++ b/RobotData/28_HeadCam/28_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c49913c531957a49d565e8acd642df424741bc01c6b6e0ffa82c1b30de814669 -size 61106 +oid sha256:e39cd939985e34b82d3b47f3548963924f356eab15ffa5e0403be03d6bdff46e +size 1193194 diff --git a/RobotData/28_HeadCam/28_RGB.jpg b/RobotData/28_HeadCam/28_RGB.jpg index 49aa8117..f09b4bd6 100644 --- a/RobotData/28_HeadCam/28_RGB.jpg +++ b/RobotData/28_HeadCam/28_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5d4c1f76d3e93bab9426b06b349d03a237fe695cc6a57b9f444db4767ff05c8b -size 60096 +oid sha256:230a209104681f398a9f7f9cc1737852cb1b968201608da10a27e2cf135e8b79 +size 1199721 diff --git a/RobotData/28_HeadCam/HeadCamPos.json b/RobotData/28_HeadCam/HeadCamPos.json index 8637d73c..fb5f5225 100644 --- a/RobotData/28_HeadCam/HeadCamPos.json +++ b/RobotData/28_HeadCam/HeadCamPos.json @@ -2,119 +2,119 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/29_ArmCam/29_Depth.jpg b/RobotData/29_ArmCam/29_Depth.jpg index dbca8715..ff791144 100644 --- a/RobotData/29_ArmCam/29_Depth.jpg +++ b/RobotData/29_ArmCam/29_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7937ebe6637d15dc1a50885e33f6bfb6c18f4610eb5cec25882874e4a534c409 -size 43441 +oid sha256:8c54be4c9eed3a61cd8dc0b26b9325061ce59ed600093734f2491975c65e94f2 +size 874128 diff --git a/RobotData/29_ArmCam/29_RGB.jpg b/RobotData/29_ArmCam/29_RGB.jpg index 74cd3256..3e1fdcf3 100644 --- a/RobotData/29_ArmCam/29_RGB.jpg +++ b/RobotData/29_ArmCam/29_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:912c111b17e7bdc490a0b90c2881ea070565eb9683c80885368bf64e33d27891 -size 43429 +oid sha256:e37a5d6d9368aa2b94d99e1742a393f70bd6891fc9285407bd8798e9c0781c86 +size 872668 diff --git a/RobotData/29_ArmCam/ArmCamPos.json b/RobotData/29_ArmCam/ArmCamPos.json index 98d4039e..2844ccf6 100644 --- a/RobotData/29_ArmCam/ArmCamPos.json +++ b/RobotData/29_ArmCam/ArmCamPos.json @@ -2,123 +2,123 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/29_HeadCam/29_Depth.jpg b/RobotData/29_HeadCam/29_Depth.jpg index f9444567..5f8efad3 100644 --- a/RobotData/29_HeadCam/29_Depth.jpg +++ b/RobotData/29_HeadCam/29_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:728873d35b560e01a1c27aa3f50e418bffe4cb4a7e4d826d6ba51f690a464a69 -size 61294 +oid sha256:6f2213c8007a369560afa0912d151ced9a70c6f2eb79c25602797cd99191d51d +size 1201406 diff --git a/RobotData/29_HeadCam/29_RGB.jpg b/RobotData/29_HeadCam/29_RGB.jpg index e8268c78..76475b46 100644 --- a/RobotData/29_HeadCam/29_RGB.jpg +++ b/RobotData/29_HeadCam/29_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:383efdaafb2a303f8d1b066d68dab82658320cbfc49c34f111c65f07ceabd9db -size 60312 +oid sha256:14560fa5adc551400b9ea4f9b80758c1de474a4a07cf30bf0d59885d5ece39ce +size 1209507 diff --git a/RobotData/29_HeadCam/HeadCamPos.json b/RobotData/29_HeadCam/HeadCamPos.json index d4dde3ff..128ffdaf 100644 --- a/RobotData/29_HeadCam/HeadCamPos.json +++ b/RobotData/29_HeadCam/HeadCamPos.json @@ -2,123 +2,123 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/2_ArmCam/2_Depth.jpg b/RobotData/2_ArmCam/2_Depth.jpg index 465ce463..1031d404 100644 --- a/RobotData/2_ArmCam/2_Depth.jpg +++ b/RobotData/2_ArmCam/2_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6e2dd68f32a3f10e2b77c5dbc12218a38e94a74859243e3a7fd99f401374838 -size 43691 +oid sha256:efb5bf461fcfa2945374e51a86634f9d3123816a6258696f0c844b71d63937eb +size 919548 diff --git a/RobotData/2_ArmCam/2_RGB.jpg b/RobotData/2_ArmCam/2_RGB.jpg index 8ca95f4e..890a7a93 100644 --- a/RobotData/2_ArmCam/2_RGB.jpg +++ b/RobotData/2_ArmCam/2_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:32851925b2465bacc9a82acb4b6ed05e502025e092142696f15df9c0d45c6ac6 -size 43713 +oid sha256:bd4e42eaeedb901cd7727bbeb96b98c348952cfee86ecb7cdf8a1cea84f873a9 +size 918886 diff --git a/RobotData/2_ArmCam/ArmCamPos.json b/RobotData/2_ArmCam/ArmCamPos.json index d26dddb7..5e57add6 100644 --- a/RobotData/2_ArmCam/ArmCamPos.json +++ b/RobotData/2_ArmCam/ArmCamPos.json @@ -2,419 +2,15 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-33.407 Y=197.118 Z=17.367 Rotation: P=-10.065453 Y=24.838411 R=-0.152538 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/2_HeadCam/2_Depth.jpg b/RobotData/2_HeadCam/2_Depth.jpg index 50c7cdd6..e197b30f 100644 --- a/RobotData/2_HeadCam/2_Depth.jpg +++ b/RobotData/2_HeadCam/2_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7950c67fb940050e561afa320e715cced728b8225da4913aed46073a2f4918fb -size 55379 +oid sha256:093526f3187ffce9fda5facb8ba2337842ee8df0c8dece73988d493e43637ab3 +size 1239941 diff --git a/RobotData/2_HeadCam/2_RGB.jpg b/RobotData/2_HeadCam/2_RGB.jpg index f01ce28a..835c59f3 100644 --- a/RobotData/2_HeadCam/2_RGB.jpg +++ b/RobotData/2_HeadCam/2_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1120c4511f7474cef9653494b1cd801c8e1260c7f728059b97ab863d0cb49ea1 -size 54136 +oid sha256:46156ec276616b54007ae99a4bcb260ff076823e39590cb1762379159e2ef9fa +size 1252633 diff --git a/RobotData/2_HeadCam/HeadCamPos.json b/RobotData/2_HeadCam/HeadCamPos.json index 9127bee8..006b3737 100644 --- a/RobotData/2_HeadCam/HeadCamPos.json +++ b/RobotData/2_HeadCam/HeadCamPos.json @@ -2,419 +2,15 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-73.514 Y=169.657 Z=125.951 Rotation: P=-0.229038 Y=-65.108815 R=0.019686 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/30_ArmCam/30_Depth.jpg b/RobotData/30_ArmCam/30_Depth.jpg index 5cbee5c8..2c5ffe94 100644 --- a/RobotData/30_ArmCam/30_Depth.jpg +++ b/RobotData/30_ArmCam/30_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:552674e1c05adca7f909b8d785aa427df5db62691debf2bbb291d6412592a60a -size 43271 +oid sha256:59824f882d89a66bf3a4542e53c52e309b00867cf9346b47e825fa8fde13ace6 +size 862290 diff --git a/RobotData/30_ArmCam/30_RGB.jpg b/RobotData/30_ArmCam/30_RGB.jpg index 796e6321..e0d43dcb 100644 --- a/RobotData/30_ArmCam/30_RGB.jpg +++ b/RobotData/30_ArmCam/30_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db7156966f07b20c2ca84e7f5cdbfbddd7663018ce9ed09c8c0431f75c211eb0 -size 43284 +oid sha256:944c127bccc4808ddf96408d05bda987d89361a7c4cf535ea145d9cd24219df1 +size 861192 diff --git a/RobotData/30_ArmCam/ArmCamPos.json b/RobotData/30_ArmCam/ArmCamPos.json index 45990f67..0b0d02ad 100644 --- a/RobotData/30_ArmCam/ArmCamPos.json +++ b/RobotData/30_ArmCam/ArmCamPos.json @@ -2,127 +2,127 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/30_HeadCam/30_Depth.jpg b/RobotData/30_HeadCam/30_Depth.jpg index 649a0dc7..86511f7b 100644 --- a/RobotData/30_HeadCam/30_Depth.jpg +++ b/RobotData/30_HeadCam/30_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d73c6ab603e115d486467e8d9a5a65728e2a65a41228bfca605e9f2918d3fa72 -size 61296 +oid sha256:4c510dcff84903e6c2153cf1b0f9913ebf9d1af101982b1ab93ef444cc6d95d0 +size 1183567 diff --git a/RobotData/30_HeadCam/30_RGB.jpg b/RobotData/30_HeadCam/30_RGB.jpg index 9a529658..b7bcb393 100644 --- a/RobotData/30_HeadCam/30_RGB.jpg +++ b/RobotData/30_HeadCam/30_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:282363da3e14f7ddaf56617a1aa07d4c0b443fe72a2007f50eb9c41d79538882 -size 60274 +oid sha256:edcc75462e50db5c0cd8c7a390f8d5db4803f0a3bb8a22ccbf5863bb8d41e035 +size 1190749 diff --git a/RobotData/30_HeadCam/HeadCamPos.json b/RobotData/30_HeadCam/HeadCamPos.json index ff9560e5..46a3ed66 100644 --- a/RobotData/30_HeadCam/HeadCamPos.json +++ b/RobotData/30_HeadCam/HeadCamPos.json @@ -2,127 +2,127 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/31_ArmCam/31_Depth.jpg b/RobotData/31_ArmCam/31_Depth.jpg index 98122d62..ff1ea0a2 100644 --- a/RobotData/31_ArmCam/31_Depth.jpg +++ b/RobotData/31_ArmCam/31_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f573ec2730b8f0e38a62a8988d92e990c1b6dd4645a046642fdab556cb7419bb -size 42949 +oid sha256:f41585406bb427a880ab6c928bfacea870cace933a8926aa721cd1e0cd32c5f2 +size 870637 diff --git a/RobotData/31_ArmCam/31_RGB.jpg b/RobotData/31_ArmCam/31_RGB.jpg index 4e3c7e82..fe133ff7 100644 --- a/RobotData/31_ArmCam/31_RGB.jpg +++ b/RobotData/31_ArmCam/31_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:171dc3e5fabe4f9a0c5bf3df5b04b6c140443e55524d261109071bb41195bc05 -size 43043 +oid sha256:491499899ffd0c5b27ec95637ae77f38144f959b5fc377ee93181f353482554f +size 868553 diff --git a/RobotData/31_ArmCam/ArmCamPos.json b/RobotData/31_ArmCam/ArmCamPos.json index 12f25ac6..e6e52b55 100644 --- a/RobotData/31_ArmCam/ArmCamPos.json +++ b/RobotData/31_ArmCam/ArmCamPos.json @@ -2,131 +2,131 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/31_HeadCam/31_Depth.jpg b/RobotData/31_HeadCam/31_Depth.jpg index 4d0f46ae..f6db6b50 100644 --- a/RobotData/31_HeadCam/31_Depth.jpg +++ b/RobotData/31_HeadCam/31_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c04fa8dcf8f82e7f107e096e415d88cab1185e7eaea5d749afdfedb9de31511c -size 61157 +oid sha256:8c11e168176d4dd273777251c3ace1272bfcc0a9a9908840ef9a68cf32ecbbb1 +size 1189582 diff --git a/RobotData/31_HeadCam/31_RGB.jpg b/RobotData/31_HeadCam/31_RGB.jpg index a0fc27aa..2c647f29 100644 --- a/RobotData/31_HeadCam/31_RGB.jpg +++ b/RobotData/31_HeadCam/31_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b739e8b83eac60b72352569746c21efeeb6fc64f30462f4c7d2d4fd58e3d4f53 -size 60113 +oid sha256:cbbcddf9b81e4c2b74c7b6655a6f84b676fa46aee3fd5c61adc818b87411f964 +size 1198728 diff --git a/RobotData/31_HeadCam/HeadCamPos.json b/RobotData/31_HeadCam/HeadCamPos.json index 06e400d2..2221db1f 100644 --- a/RobotData/31_HeadCam/HeadCamPos.json +++ b/RobotData/31_HeadCam/HeadCamPos.json @@ -2,131 +2,131 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/32_ArmCam/32_Depth.jpg b/RobotData/32_ArmCam/32_Depth.jpg index 199f5779..ae635f56 100644 --- a/RobotData/32_ArmCam/32_Depth.jpg +++ b/RobotData/32_ArmCam/32_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a3cfda626507b0bfc754323b6fb354430bbf6d85a0cf8553b99bc615c4da0cb -size 42702 +oid sha256:3142d1adbbb812cc09bf0beebd3a442854a80402c7c2f6b11a99bc74f23a86f8 +size 869548 diff --git a/RobotData/32_ArmCam/32_RGB.jpg b/RobotData/32_ArmCam/32_RGB.jpg index bfd9b32a..6f893b39 100644 --- a/RobotData/32_ArmCam/32_RGB.jpg +++ b/RobotData/32_ArmCam/32_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:46f6a78d046fba62f2950bdb436f76f8129f04f3de413330d19cf0bc6227cc2c -size 42689 +oid sha256:d5f4dd63dc684097d07dc73111403356e41be29858b6d841c0c82492fbfc38b9 +size 868712 diff --git a/RobotData/32_ArmCam/ArmCamPos.json b/RobotData/32_ArmCam/ArmCamPos.json index 13b7d72f..10c95471 100644 --- a/RobotData/32_ArmCam/ArmCamPos.json +++ b/RobotData/32_ArmCam/ArmCamPos.json @@ -2,135 +2,135 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/32_HeadCam/32_Depth.jpg b/RobotData/32_HeadCam/32_Depth.jpg index e1fd5c5f..dcb93668 100644 --- a/RobotData/32_HeadCam/32_Depth.jpg +++ b/RobotData/32_HeadCam/32_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e18851209b3d2135864efb3fada1e902fdd4ae1c6612ad93eec0f9be0255f2d3 -size 61446 +oid sha256:1d57c5109bc530f3af990c1a6b79173f273794cff7f69cdee50bb8ff005af51c +size 1175046 diff --git a/RobotData/32_HeadCam/32_RGB.jpg b/RobotData/32_HeadCam/32_RGB.jpg index 498fc63a..95870912 100644 --- a/RobotData/32_HeadCam/32_RGB.jpg +++ b/RobotData/32_HeadCam/32_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f46bbf7d16e3cd1c19d066b89552e51d7d1ac78521130bba95e29c225da2812 -size 60464 +oid sha256:56b39544029fc6e01c0af31794e85b09848af16715798e5ceb88cfd9567a2111 +size 1182900 diff --git a/RobotData/32_HeadCam/HeadCamPos.json b/RobotData/32_HeadCam/HeadCamPos.json index 998a8c5d..98c784b6 100644 --- a/RobotData/32_HeadCam/HeadCamPos.json +++ b/RobotData/32_HeadCam/HeadCamPos.json @@ -2,135 +2,135 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/33_ArmCam/33_Depth.jpg b/RobotData/33_ArmCam/33_Depth.jpg index 0d7f11ef..91c03591 100644 --- a/RobotData/33_ArmCam/33_Depth.jpg +++ b/RobotData/33_ArmCam/33_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b3e5c2fc4899bcfb266a47d86ef30e80139d5bcb7e9ebd59a811403551117174 -size 42663 +oid sha256:490ce119950dffe2ae7ba14503c8522e15d590bb0f5e6cd81bf3808eb95ec00a +size 882249 diff --git a/RobotData/33_ArmCam/33_RGB.jpg b/RobotData/33_ArmCam/33_RGB.jpg index 7526a83f..d069d706 100644 --- a/RobotData/33_ArmCam/33_RGB.jpg +++ b/RobotData/33_ArmCam/33_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:148eec19f522cb844e548d93c7b55182a39bf17c35755822882b658e7eaf3538 -size 42679 +oid sha256:40ab06faad1c2b7a538dc64c87d8e514dae315fc2e5b213ecc020fa2b6bff6f7 +size 880789 diff --git a/RobotData/33_ArmCam/ArmCamPos.json b/RobotData/33_ArmCam/ArmCamPos.json index bb584fdc..c2206372 100644 --- a/RobotData/33_ArmCam/ArmCamPos.json +++ b/RobotData/33_ArmCam/ArmCamPos.json @@ -2,139 +2,139 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/33_HeadCam/33_Depth.jpg b/RobotData/33_HeadCam/33_Depth.jpg index c9daff6d..c9e3da24 100644 --- a/RobotData/33_HeadCam/33_Depth.jpg +++ b/RobotData/33_HeadCam/33_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b1903bca526a7bd7fb581a70f84b80b2efbfd7fc5d541cc7ea63d47febd046e -size 61571 +oid sha256:468cb8094d9391f79421eb3002d51d9ad0eaf7ffe988c7c037243232fce7f8fb +size 1186174 diff --git a/RobotData/33_HeadCam/33_RGB.jpg b/RobotData/33_HeadCam/33_RGB.jpg index 187c7d1a..f8be4f6e 100644 --- a/RobotData/33_HeadCam/33_RGB.jpg +++ b/RobotData/33_HeadCam/33_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7bce0713958f2995368d71fa44d50cb6dc78f0b9175048c32b5496a2e50268dc -size 60575 +oid sha256:482f5166c910d0c723057388a8916308d18bca08a514749b67a705596793d64a +size 1194194 diff --git a/RobotData/33_HeadCam/HeadCamPos.json b/RobotData/33_HeadCam/HeadCamPos.json index f5d74695..15e5a3b4 100644 --- a/RobotData/33_HeadCam/HeadCamPos.json +++ b/RobotData/33_HeadCam/HeadCamPos.json @@ -2,139 +2,139 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/34_ArmCam/34_Depth.jpg b/RobotData/34_ArmCam/34_Depth.jpg index 3a298f7d..ee64bd38 100644 --- a/RobotData/34_ArmCam/34_Depth.jpg +++ b/RobotData/34_ArmCam/34_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c6976f4652c92a1ddcdf7e7e680f4c3498bd487558399726c4df1aa0a20650f -size 42654 +oid sha256:22b5100d2d1e8758e7d8fe9dde71ebe32ae4da83979e3c3d861e4930104fa180 +size 875668 diff --git a/RobotData/34_ArmCam/34_RGB.jpg b/RobotData/34_ArmCam/34_RGB.jpg index aa0e9ba8..87c176a6 100644 --- a/RobotData/34_ArmCam/34_RGB.jpg +++ b/RobotData/34_ArmCam/34_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ff43d99a02bff7920c88a3cde4314d25a1db62f330f9b643d256db58e70d46c -size 42713 +oid sha256:00987ba064b41d2016aa30768452aaa7d266db7d3ff05ada17c9db83c19ac85c +size 874926 diff --git a/RobotData/34_ArmCam/ArmCamPos.json b/RobotData/34_ArmCam/ArmCamPos.json index 1e5f01c1..537ab4f1 100644 --- a/RobotData/34_ArmCam/ArmCamPos.json +++ b/RobotData/34_ArmCam/ArmCamPos.json @@ -2,143 +2,143 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/34_HeadCam/34_Depth.jpg b/RobotData/34_HeadCam/34_Depth.jpg index ce435958..e9cbf17c 100644 --- a/RobotData/34_HeadCam/34_Depth.jpg +++ b/RobotData/34_HeadCam/34_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:86f81129552149e6197306ac811fb3e0e967b45486121a9747de1c4fbf06751a -size 61381 +oid sha256:5f2891a995a2770c5e1d502e3fef172145b913f28156348ec88478029ae3ddea +size 1173838 diff --git a/RobotData/34_HeadCam/34_RGB.jpg b/RobotData/34_HeadCam/34_RGB.jpg index ecdfafd0..200b56b3 100644 --- a/RobotData/34_HeadCam/34_RGB.jpg +++ b/RobotData/34_HeadCam/34_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a71e3eae0645d2fdced3d1c3744e511dfbf97e8a6ecf7bd6182751c5cd2e4928 -size 60341 +oid sha256:f3b2512532affe7d53b714e435463934d0038b38b0c143f6c5936681a765a9d3 +size 1181699 diff --git a/RobotData/34_HeadCam/HeadCamPos.json b/RobotData/34_HeadCam/HeadCamPos.json index 706a1256..ec8f0646 100644 --- a/RobotData/34_HeadCam/HeadCamPos.json +++ b/RobotData/34_HeadCam/HeadCamPos.json @@ -2,143 +2,143 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/35_ArmCam/35_Depth.jpg b/RobotData/35_ArmCam/35_Depth.jpg index fc7c916b..e4ab7606 100644 --- a/RobotData/35_ArmCam/35_Depth.jpg +++ b/RobotData/35_ArmCam/35_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07f7abd81dc8625f5eecc1239398fad6c4b00850f09e23657438300d7ae71d09 -size 42598 +oid sha256:126486a19c0a2cafcc198502741910414966a5cf3b31de496d24af09683fdba8 +size 887673 diff --git a/RobotData/35_ArmCam/35_RGB.jpg b/RobotData/35_ArmCam/35_RGB.jpg index db2493b5..af48fb18 100644 --- a/RobotData/35_ArmCam/35_RGB.jpg +++ b/RobotData/35_ArmCam/35_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2de46e2a1df133342ae4bd420aa20e80215cb904082f09a84886678800552d87 -size 42613 +oid sha256:266de6785634fd93f2f8bc775e83b3710744de2a5e29c0d3c4937edc5ea2f6b3 +size 885399 diff --git a/RobotData/35_ArmCam/ArmCamPos.json b/RobotData/35_ArmCam/ArmCamPos.json index 606e23bd..dda23121 100644 --- a/RobotData/35_ArmCam/ArmCamPos.json +++ b/RobotData/35_ArmCam/ArmCamPos.json @@ -2,147 +2,147 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/35_HeadCam/35_Depth.jpg b/RobotData/35_HeadCam/35_Depth.jpg index b14108b9..c626b5e2 100644 --- a/RobotData/35_HeadCam/35_Depth.jpg +++ b/RobotData/35_HeadCam/35_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:53252e87ddbd4f405bcd27e58ad849751addb0070edaf8f37e8afed85a9f9ec6 -size 61582 +oid sha256:cb923dbd3b39a6a19d10949adcfd15e577ea652bb0c366478235c540b1649642 +size 1180532 diff --git a/RobotData/35_HeadCam/35_RGB.jpg b/RobotData/35_HeadCam/35_RGB.jpg index 1fc944bf..5e6ceb0c 100644 --- a/RobotData/35_HeadCam/35_RGB.jpg +++ b/RobotData/35_HeadCam/35_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c47ac5048705a9417ac54bb8cbcfb3bb6e4b2a265d0c233bd38a1ac3a79b001a -size 60536 +oid sha256:9fb24d7ea3244321bac7ba92479808722c0250fed21c311e07230f6417d744cd +size 1188675 diff --git a/RobotData/35_HeadCam/HeadCamPos.json b/RobotData/35_HeadCam/HeadCamPos.json index 8ad8b568..a10396b5 100644 --- a/RobotData/35_HeadCam/HeadCamPos.json +++ b/RobotData/35_HeadCam/HeadCamPos.json @@ -2,147 +2,147 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/36_ArmCam/36_Depth.jpg b/RobotData/36_ArmCam/36_Depth.jpg index 2d51e60e..b1db5893 100644 --- a/RobotData/36_ArmCam/36_Depth.jpg +++ b/RobotData/36_ArmCam/36_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:448d6b45f14098f946a69049cf9d5e59963316263da86d5eea3e2a4b813703ef -size 43153 +oid sha256:4dbf1cd8d9f008dfc5f4035209d658e1b8435a19be14908460b01020e4bfd6e6 +size 868179 diff --git a/RobotData/36_ArmCam/36_RGB.jpg b/RobotData/36_ArmCam/36_RGB.jpg index 4d299ec8..17c4308e 100644 --- a/RobotData/36_ArmCam/36_RGB.jpg +++ b/RobotData/36_ArmCam/36_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6d045aa003167585b053ec41f91a60f7bd4c68c122c7e1c70acbb240e6e30ca1 -size 43198 +oid sha256:e7527a78db9118d5591749725d8fac2f467c97c2190238b2457e504c7c847157 +size 867497 diff --git a/RobotData/36_ArmCam/ArmCamPos.json b/RobotData/36_ArmCam/ArmCamPos.json index 82f0b7db..f8e94771 100644 --- a/RobotData/36_ArmCam/ArmCamPos.json +++ b/RobotData/36_ArmCam/ArmCamPos.json @@ -2,151 +2,151 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/36_HeadCam/36_Depth.jpg b/RobotData/36_HeadCam/36_Depth.jpg index 2073dea4..908f8312 100644 --- a/RobotData/36_HeadCam/36_Depth.jpg +++ b/RobotData/36_HeadCam/36_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bdd10d4710f483d8a18b097b511216752b15866d8fcb9b2ae5956344d9eac981 -size 61431 +oid sha256:6006c6647c5465d6f861a447ba04675fde8f315ebba4fb4300ec1cd804adfe26 +size 1169993 diff --git a/RobotData/36_HeadCam/36_RGB.jpg b/RobotData/36_HeadCam/36_RGB.jpg index 712f8ca8..dc756e4f 100644 --- a/RobotData/36_HeadCam/36_RGB.jpg +++ b/RobotData/36_HeadCam/36_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e3d03593ca325c94416dfba8e6e6434265ce3fcb13a92d815f0b3c55005ba0c -size 60386 +oid sha256:a04e49c7ff3e3d6917f9fbe490c2247e25570ff65295585667c84dd24dff5d1f +size 1177389 diff --git a/RobotData/36_HeadCam/HeadCamPos.json b/RobotData/36_HeadCam/HeadCamPos.json index d26c962e..b0b1e8da 100644 --- a/RobotData/36_HeadCam/HeadCamPos.json +++ b/RobotData/36_HeadCam/HeadCamPos.json @@ -2,151 +2,151 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/37_ArmCam/37_Depth.jpg b/RobotData/37_ArmCam/37_Depth.jpg index c3ba9f2d..daf55e10 100644 --- a/RobotData/37_ArmCam/37_Depth.jpg +++ b/RobotData/37_ArmCam/37_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b1b78b55a27d34c20746305efaa715d40a3cb0d935aa0c6326a7f9e4c6c6d410 -size 43373 +oid sha256:c51e9a0af5439ae7fd6f326061d985c90b19c533b9be674015177d68db53a756 +size 878883 diff --git a/RobotData/37_ArmCam/37_RGB.jpg b/RobotData/37_ArmCam/37_RGB.jpg index 246cbaac..b3549937 100644 --- a/RobotData/37_ArmCam/37_RGB.jpg +++ b/RobotData/37_ArmCam/37_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:047f846919f7b81d93ea6fe1c036b2dcd0bb1f86c9efdc96f9359c44b0a0e3f7 -size 43446 +oid sha256:d5533b44620b6957198237561b6daf12bb2fe3911832830616363365d13d568a +size 878244 diff --git a/RobotData/37_ArmCam/ArmCamPos.json b/RobotData/37_ArmCam/ArmCamPos.json index f95edce6..631de5c7 100644 --- a/RobotData/37_ArmCam/ArmCamPos.json +++ b/RobotData/37_ArmCam/ArmCamPos.json @@ -2,155 +2,155 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/37_HeadCam/37_Depth.jpg b/RobotData/37_HeadCam/37_Depth.jpg index f8c1fa8f..1d937157 100644 --- a/RobotData/37_HeadCam/37_Depth.jpg +++ b/RobotData/37_HeadCam/37_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:87d1304426a2becc81e038cc8b4095792d3741f504705a74c8c2f0762126e254 -size 60796 +oid sha256:1f81b85144e3fea9528b21c4e771695bf6d053183438d7ff59616b68b4bfee8f +size 1184699 diff --git a/RobotData/37_HeadCam/37_RGB.jpg b/RobotData/37_HeadCam/37_RGB.jpg index cbb450b6..252334b0 100644 --- a/RobotData/37_HeadCam/37_RGB.jpg +++ b/RobotData/37_HeadCam/37_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2fcff148f4e1e3061fc147769ad8875e421a1eea85993fa598b44688db4d45f0 -size 59812 +oid sha256:27467fcce0e9e1412d9f4a41187296d12d095e1bf0022afc10321bcd31414f74 +size 1190937 diff --git a/RobotData/37_HeadCam/HeadCamPos.json b/RobotData/37_HeadCam/HeadCamPos.json index 946cd9df..7c3e8350 100644 --- a/RobotData/37_HeadCam/HeadCamPos.json +++ b/RobotData/37_HeadCam/HeadCamPos.json @@ -2,155 +2,155 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/38_ArmCam/38_Depth.jpg b/RobotData/38_ArmCam/38_Depth.jpg index f4c48e75..dd33d340 100644 --- a/RobotData/38_ArmCam/38_Depth.jpg +++ b/RobotData/38_ArmCam/38_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0930a14dfd7825356347128580fb80a1c550b9e08b3bfd2ea5e077336322bfc0 -size 43969 +oid sha256:ac58e4ad613c8d2692d7d84b7c5ba6dab91533bd028fa8791ef1d3b9285d1fab +size 870881 diff --git a/RobotData/38_ArmCam/38_RGB.jpg b/RobotData/38_ArmCam/38_RGB.jpg index 792a7512..a6e8bc00 100644 --- a/RobotData/38_ArmCam/38_RGB.jpg +++ b/RobotData/38_ArmCam/38_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9456a069c2d0d554a2c8a16785e239989083a79e38bf835b6fd6d12f941ebdb -size 43971 +oid sha256:bb038d4ea7b19013faf48514a89c24933d0fb44d077c9531ba7ff756b00d7b6b +size 871128 diff --git a/RobotData/38_ArmCam/ArmCamPos.json b/RobotData/38_ArmCam/ArmCamPos.json index d8e79b3b..cbc1034b 100644 --- a/RobotData/38_ArmCam/ArmCamPos.json +++ b/RobotData/38_ArmCam/ArmCamPos.json @@ -2,159 +2,159 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/38_HeadCam/38_Depth.jpg b/RobotData/38_HeadCam/38_Depth.jpg index 4e4a54fb..6705539c 100644 --- a/RobotData/38_HeadCam/38_Depth.jpg +++ b/RobotData/38_HeadCam/38_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:40d8f060195b044ab6b46cefbddb10ff3c69e38b2dd44436dd6e8c0ff16d0703 -size 61164 +oid sha256:de27448d323872f16b4e9098e5b97ee0e08eb569540cf16149b089eb1c9d93fc +size 1160586 diff --git a/RobotData/38_HeadCam/38_RGB.jpg b/RobotData/38_HeadCam/38_RGB.jpg index eb9df900..c78b31fc 100644 --- a/RobotData/38_HeadCam/38_RGB.jpg +++ b/RobotData/38_HeadCam/38_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:930e1e78e9ef7af8c62cbe37a0ee8da730486cf301d5c21b832fe89491862f93 -size 60067 +oid sha256:eb8f6557a2ce7e693a7557a8986e4553f6d291248cdccd4b4c38a8ebbeac43ed +size 1166770 diff --git a/RobotData/38_HeadCam/HeadCamPos.json b/RobotData/38_HeadCam/HeadCamPos.json index d933212f..f52e08a7 100644 --- a/RobotData/38_HeadCam/HeadCamPos.json +++ b/RobotData/38_HeadCam/HeadCamPos.json @@ -2,159 +2,159 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/39_ArmCam/39_Depth.jpg b/RobotData/39_ArmCam/39_Depth.jpg index 5e317e8a..26486aa1 100644 --- a/RobotData/39_ArmCam/39_Depth.jpg +++ b/RobotData/39_ArmCam/39_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:67e4c83200505e3f4d48e20ca493cc55f6ad46f222f6e1b9983106e6198c7b2c -size 44003 +oid sha256:59831c6873bde201d5708e14be8fb199cf35a19468df353027f8e07229c063c4 +size 879975 diff --git a/RobotData/39_ArmCam/39_RGB.jpg b/RobotData/39_ArmCam/39_RGB.jpg index ffbc508a..e66fc566 100644 --- a/RobotData/39_ArmCam/39_RGB.jpg +++ b/RobotData/39_ArmCam/39_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5f1903b9e34a22d91bb0c4bfa0448b4374a840c760d22d74f4a7b787bdf10c03 -size 44058 +oid sha256:b844eb9a14e33cfc80315ae2b0f8a0c0709548e85ddeb305022d1980cdda2d65 +size 879563 diff --git a/RobotData/39_ArmCam/ArmCamPos.json b/RobotData/39_ArmCam/ArmCamPos.json index 81034b53..6941cd8a 100644 --- a/RobotData/39_ArmCam/ArmCamPos.json +++ b/RobotData/39_ArmCam/ArmCamPos.json @@ -2,163 +2,163 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/39_HeadCam/39_Depth.jpg b/RobotData/39_HeadCam/39_Depth.jpg index 8b06e5ba..2317bd83 100644 --- a/RobotData/39_HeadCam/39_Depth.jpg +++ b/RobotData/39_HeadCam/39_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:511a7042616317a1a740ab9ce690b348c4108910213ecf0b4fb98f023b5d02c8 -size 61421 +oid sha256:6f28679612ee01f0912763df599a6580264d3cdcc2b954722131b95c9c2f00f3 +size 1166749 diff --git a/RobotData/39_HeadCam/39_RGB.jpg b/RobotData/39_HeadCam/39_RGB.jpg index 87e1689e..b94aa19e 100644 --- a/RobotData/39_HeadCam/39_RGB.jpg +++ b/RobotData/39_HeadCam/39_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be83f8f98cf2f428ea9bc2fae8a64fdd192896a4aedf7a81781799c1f4708f96 -size 60334 +oid sha256:bf20848b0e5ca81e06d640d80c001672e14d3b7029c12be84fcf89c7d3405a36 +size 1174344 diff --git a/RobotData/39_HeadCam/HeadCamPos.json b/RobotData/39_HeadCam/HeadCamPos.json index b498d7b7..0bacc4b8 100644 --- a/RobotData/39_HeadCam/HeadCamPos.json +++ b/RobotData/39_HeadCam/HeadCamPos.json @@ -2,163 +2,163 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/3_ArmCam/3_Depth.jpg b/RobotData/3_ArmCam/3_Depth.jpg index b3bc6ce6..4d6e2148 100644 --- a/RobotData/3_ArmCam/3_Depth.jpg +++ b/RobotData/3_ArmCam/3_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:35ba800faa355098f890c48ac2eb6805886dd382fe08c7dc015c3b25b48b7e09 -size 43664 +oid sha256:cdcb84462ae8836d2051ece6ebc0b935d0b08da0f22d175ab2586826404a0022 +size 920574 diff --git a/RobotData/3_ArmCam/3_RGB.jpg b/RobotData/3_ArmCam/3_RGB.jpg index adc71bb5..234fe1c3 100644 --- a/RobotData/3_ArmCam/3_RGB.jpg +++ b/RobotData/3_ArmCam/3_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:814787fd9aceb9ec7f9aee995ab001b389adeb0a054a71923e7453a1122ad70a -size 43645 +oid sha256:8c71383a9306b385e7cab240c478d6bfa382ed49a57fd47f89caf9b9d25d047f +size 920102 diff --git a/RobotData/3_ArmCam/ArmCamPos.json b/RobotData/3_ArmCam/ArmCamPos.json index e683ba29..5a11640d 100644 --- a/RobotData/3_ArmCam/ArmCamPos.json +++ b/RobotData/3_ArmCam/ArmCamPos.json @@ -2,423 +2,19 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-33.407 Y=197.118 Z=17.367 Rotation: P=-10.065453 Y=24.838411 R=-0.152538 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-32.817 Y=195.812 Z=17.399 Rotation: P=-10.019595 Y=24.861629 R=-0.156040 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/3_HeadCam/3_Depth.jpg b/RobotData/3_HeadCam/3_Depth.jpg index 934fe524..b03427aa 100644 --- a/RobotData/3_HeadCam/3_Depth.jpg +++ b/RobotData/3_HeadCam/3_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6a23f7d1b3ae92b7c8e478d290275bdc442cc9a595f177186e52897194b817e0 -size 55124 +oid sha256:6fe8913a757a0fcf39bb052d2b08bee8214aa71b7855965c263b957c22444e04 +size 1278425 diff --git a/RobotData/3_HeadCam/3_RGB.jpg b/RobotData/3_HeadCam/3_RGB.jpg index caa69881..3cb8312a 100644 --- a/RobotData/3_HeadCam/3_RGB.jpg +++ b/RobotData/3_HeadCam/3_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:46397ed190cd484ccbea3c91eed0d78a228c3039bb4a4d91ce80b0214b189e17 -size 53949 +oid sha256:29b86762f649f2661c0ea731ee5390de432d299382da31b65c7197ed57a3c4ea +size 1293460 diff --git a/RobotData/3_HeadCam/HeadCamPos.json b/RobotData/3_HeadCam/HeadCamPos.json index cf7f2259..3c21265e 100644 --- a/RobotData/3_HeadCam/HeadCamPos.json +++ b/RobotData/3_HeadCam/HeadCamPos.json @@ -2,423 +2,19 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-73.514 Y=169.657 Z=125.951 Rotation: P=-0.229038 Y=-65.108815 R=0.019686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-72.991 Y=168.295 Z=125.945 Rotation: P=-0.232446 Y=-65.089575 R=-0.026162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/40_ArmCam/40_Depth.jpg b/RobotData/40_ArmCam/40_Depth.jpg index fcc691cf..47220600 100644 --- a/RobotData/40_ArmCam/40_Depth.jpg +++ b/RobotData/40_ArmCam/40_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a33d0598e664c795fea07d7c9bf47c11a7c4a2242d7b86dc40645ca54666c0fb -size 43759 +oid sha256:7e40ae46a42439c7d6fb5e03c489214aac4ebde56bb560d572e85465c4eb7b38 +size 864675 diff --git a/RobotData/40_ArmCam/40_RGB.jpg b/RobotData/40_ArmCam/40_RGB.jpg index 01ebb546..a4e44496 100644 --- a/RobotData/40_ArmCam/40_RGB.jpg +++ b/RobotData/40_ArmCam/40_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:442698bc20eb48cd8ef29cc349d7a34b2c3fc7e2e47f07f9ad9303aa977979c7 -size 43843 +oid sha256:087be18cb262c919e1298e7ff658f3952fd373649738e64698b045970759e4ad +size 865377 diff --git a/RobotData/40_ArmCam/ArmCamPos.json b/RobotData/40_ArmCam/ArmCamPos.json index 3bf10604..d92c4f1e 100644 --- a/RobotData/40_ArmCam/ArmCamPos.json +++ b/RobotData/40_ArmCam/ArmCamPos.json @@ -2,167 +2,167 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/40_HeadCam/40_Depth.jpg b/RobotData/40_HeadCam/40_Depth.jpg index fd754d74..4ae95056 100644 --- a/RobotData/40_HeadCam/40_Depth.jpg +++ b/RobotData/40_HeadCam/40_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:32f4de9e9ca90eb20bc7d61704c18586b8714447a3800751571e8182dd8151bc -size 61059 +oid sha256:f2b0c027ba971ffdab6804cde9c96df845d58cbfc94713d4df56813b2e5c845d +size 1169452 diff --git a/RobotData/40_HeadCam/40_RGB.jpg b/RobotData/40_HeadCam/40_RGB.jpg index a5bddce7..5728e777 100644 --- a/RobotData/40_HeadCam/40_RGB.jpg +++ b/RobotData/40_HeadCam/40_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:70fc200a6a1c311bf80b7c7059c455c552d0c15394a6bed27370e9b4252f2122 -size 60036 +oid sha256:9915f09c3a885ec35815047967d2f8e52a5eede462b207c71f4b5e9f3fc65a38 +size 1175094 diff --git a/RobotData/40_HeadCam/HeadCamPos.json b/RobotData/40_HeadCam/HeadCamPos.json index d6b8a34f..91d658a3 100644 --- a/RobotData/40_HeadCam/HeadCamPos.json +++ b/RobotData/40_HeadCam/HeadCamPos.json @@ -2,167 +2,167 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/41_ArmCam/41_Depth.jpg b/RobotData/41_ArmCam/41_Depth.jpg index 1d8bd91e..c5415236 100644 --- a/RobotData/41_ArmCam/41_Depth.jpg +++ b/RobotData/41_ArmCam/41_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:098f3819c28418dad077c939c70dd4d610f4e5b14057dd07314312866a142282 -size 43887 +oid sha256:6aeaf15f41caf18c3ed7048d2470be4f4296a4dbe3c8270948e8489239b3a261 +size 879605 diff --git a/RobotData/41_ArmCam/41_RGB.jpg b/RobotData/41_ArmCam/41_RGB.jpg index 1506ab81..92e24e87 100644 --- a/RobotData/41_ArmCam/41_RGB.jpg +++ b/RobotData/41_ArmCam/41_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b012d4057662ab19513ae78994d0f9a03d7732bebe8a99eafbb372faed8c29da -size 43893 +oid sha256:6a4240ea04de17b9162e686833125e7b77370052fe4253d33dd6659dbe9b9bc6 +size 876728 diff --git a/RobotData/41_ArmCam/ArmCamPos.json b/RobotData/41_ArmCam/ArmCamPos.json index e8eff6d0..c9fa2a9d 100644 --- a/RobotData/41_ArmCam/ArmCamPos.json +++ b/RobotData/41_ArmCam/ArmCamPos.json @@ -2,171 +2,171 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/41_HeadCam/41_Depth.jpg b/RobotData/41_HeadCam/41_Depth.jpg index 9b41a8dc..2bdfcd96 100644 --- a/RobotData/41_HeadCam/41_Depth.jpg +++ b/RobotData/41_HeadCam/41_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6a2ab1d6428b92797176b60f972c3cea1698d2cce2ce616fbb2d0c77c416cfb7 -size 61392 +oid sha256:f60013b888efd1e7e1cf73ee67576d10416f0ca29afa822cb3ec18dda7a12c5b +size 1178035 diff --git a/RobotData/41_HeadCam/41_RGB.jpg b/RobotData/41_HeadCam/41_RGB.jpg index c3f09ec7..ccc30b6f 100644 --- a/RobotData/41_HeadCam/41_RGB.jpg +++ b/RobotData/41_HeadCam/41_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5316cb59d774a88151d0d748219e7fe061435550f126d5a19d013c959985ff6b -size 60326 +oid sha256:c5230bcb31b92c2fb81640009dd6fe0d7052bdd1de3db585a073eafad10fd0ed +size 1184452 diff --git a/RobotData/41_HeadCam/HeadCamPos.json b/RobotData/41_HeadCam/HeadCamPos.json index c17f147b..8031107c 100644 --- a/RobotData/41_HeadCam/HeadCamPos.json +++ b/RobotData/41_HeadCam/HeadCamPos.json @@ -2,171 +2,171 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/42_ArmCam/42_Depth.jpg b/RobotData/42_ArmCam/42_Depth.jpg index a9e74767..7e0b7452 100644 --- a/RobotData/42_ArmCam/42_Depth.jpg +++ b/RobotData/42_ArmCam/42_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3be8f4ae1448254cada94a3a5b0a8c39b52ba387866c14ca3e54838084242843 -size 43923 +oid sha256:659c8bfc01d0646f10b95ed79993c655bf87ff6fad6a944561ef874f5652611e +size 862147 diff --git a/RobotData/42_ArmCam/42_RGB.jpg b/RobotData/42_ArmCam/42_RGB.jpg index 5795320b..8a876fe8 100644 --- a/RobotData/42_ArmCam/42_RGB.jpg +++ b/RobotData/42_ArmCam/42_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:daa7d6a92ae7e95b3fd5d0db132604543ff8b8a80f76da08802aed54807a86dd -size 43967 +oid sha256:492b97af5297ba97b7a048d35e9daa295557daed01d2c91cfbe6cf524b2f8076 +size 863043 diff --git a/RobotData/42_ArmCam/ArmCamPos.json b/RobotData/42_ArmCam/ArmCamPos.json index 49fc43cc..72a273c7 100644 --- a/RobotData/42_ArmCam/ArmCamPos.json +++ b/RobotData/42_ArmCam/ArmCamPos.json @@ -2,175 +2,175 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/42_HeadCam/42_Depth.jpg b/RobotData/42_HeadCam/42_Depth.jpg index fdf7a39e..b3a02c4c 100644 --- a/RobotData/42_HeadCam/42_Depth.jpg +++ b/RobotData/42_HeadCam/42_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:556c55334d1822d06eb996efdbb8cdc2f8c49ef4b44e381bc2bf010131b30141 -size 61479 +oid sha256:a52fd6b77b67eebea02c5ab60b249f41cf5622f6492876537bccac71274176b7 +size 1141837 diff --git a/RobotData/42_HeadCam/42_RGB.jpg b/RobotData/42_HeadCam/42_RGB.jpg index 1a2a815d..386fe824 100644 --- a/RobotData/42_HeadCam/42_RGB.jpg +++ b/RobotData/42_HeadCam/42_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2960006c6738fddcdc5edf40b0ac452b0c5b20c8076313c9cfc0095dfe803380 -size 60460 +oid sha256:4d788fdf819290bf7adca65a50c549926517415905eb2d33cb7fb564b1aa2380 +size 1146998 diff --git a/RobotData/42_HeadCam/HeadCamPos.json b/RobotData/42_HeadCam/HeadCamPos.json index 133e50d5..70bab247 100644 --- a/RobotData/42_HeadCam/HeadCamPos.json +++ b/RobotData/42_HeadCam/HeadCamPos.json @@ -2,175 +2,175 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/43_ArmCam/43_Depth.jpg b/RobotData/43_ArmCam/43_Depth.jpg index f799a40d..d041f8c6 100644 --- a/RobotData/43_ArmCam/43_Depth.jpg +++ b/RobotData/43_ArmCam/43_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b31d6b0430e0815671f1a5acc2f6fbd5a5949f6f11def2f3553eef1b0dd454db -size 43782 +oid sha256:b2c2963dbaeafd25306e78df151eb1fcd782c7c146f4bfb8e0643e0f7b045e5e +size 873392 diff --git a/RobotData/43_ArmCam/43_RGB.jpg b/RobotData/43_ArmCam/43_RGB.jpg index 5b2671ef..13b193e3 100644 --- a/RobotData/43_ArmCam/43_RGB.jpg +++ b/RobotData/43_ArmCam/43_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88ce4600bbdb180a230cb6cd5454c6e5c6340d30eee51c1937edd908e27689fe -size 43802 +oid sha256:dc55ec04871c492556956ff343a6fbdfebfda24c92563b33b8510b5b43b7c047 +size 873041 diff --git a/RobotData/43_ArmCam/ArmCamPos.json b/RobotData/43_ArmCam/ArmCamPos.json index 4ced8307..9b2d3bee 100644 --- a/RobotData/43_ArmCam/ArmCamPos.json +++ b/RobotData/43_ArmCam/ArmCamPos.json @@ -2,179 +2,179 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/43_HeadCam/43_Depth.jpg b/RobotData/43_HeadCam/43_Depth.jpg index d96868d9..3b9789ee 100644 --- a/RobotData/43_HeadCam/43_Depth.jpg +++ b/RobotData/43_HeadCam/43_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:29d87ef5ba71d81f7f8354566bb198a02d7b0ed4dae20829dbfbaad36e7c7f19 -size 60968 +oid sha256:5b770351959518d48d7b8610f2eaced16a4daae2cbc14356a4de7f3d803752cc +size 1149456 diff --git a/RobotData/43_HeadCam/43_RGB.jpg b/RobotData/43_HeadCam/43_RGB.jpg index 35982e9e..9de0c5d3 100644 --- a/RobotData/43_HeadCam/43_RGB.jpg +++ b/RobotData/43_HeadCam/43_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f5f28600c8da7e86697ba6fd0b77321fd9164773cd6189bf255a7a73ab808963 -size 59919 +oid sha256:04867e0c94a1da36bb1b40d49514e7ee6a006fbca257f28c0c2d1bb77f19576b +size 1156314 diff --git a/RobotData/43_HeadCam/HeadCamPos.json b/RobotData/43_HeadCam/HeadCamPos.json index 58ffcd4a..e819bce6 100644 --- a/RobotData/43_HeadCam/HeadCamPos.json +++ b/RobotData/43_HeadCam/HeadCamPos.json @@ -2,179 +2,179 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/44_ArmCam/44_Depth.jpg b/RobotData/44_ArmCam/44_Depth.jpg index 969e076a..71e101ba 100644 --- a/RobotData/44_ArmCam/44_Depth.jpg +++ b/RobotData/44_ArmCam/44_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:76444691e232b2df1fda72403b1db79921e26c381e301f36ae89b258562dbc6b -size 43768 +oid sha256:ebcbfff4958199632ea243147a41f40502b0542981d6d4e1e0ad282d745ef9fb +size 866424 diff --git a/RobotData/44_ArmCam/44_RGB.jpg b/RobotData/44_ArmCam/44_RGB.jpg index ca3a2dc4..4daeb2b3 100644 --- a/RobotData/44_ArmCam/44_RGB.jpg +++ b/RobotData/44_ArmCam/44_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba8afaa62edd22ad8ce793fce8b0d07ec2e97a5bdbd898ae78411ecdc2db14e8 -size 43797 +oid sha256:3987004867355eea7e7c8835fde30d008a78c8dd51ac7d3fc9352a987428d9ba +size 865482 diff --git a/RobotData/44_ArmCam/ArmCamPos.json b/RobotData/44_ArmCam/ArmCamPos.json index d1caec51..a1f6d8cf 100644 --- a/RobotData/44_ArmCam/ArmCamPos.json +++ b/RobotData/44_ArmCam/ArmCamPos.json @@ -2,183 +2,183 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/44_HeadCam/44_Depth.jpg b/RobotData/44_HeadCam/44_Depth.jpg index 732efeaa..ff65fc1e 100644 --- a/RobotData/44_HeadCam/44_Depth.jpg +++ b/RobotData/44_HeadCam/44_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e8b56bff10cf2af8b2ca7204aed3150a8ba0dfc37a56374c2973b4d8cfd5cb33 -size 61394 +oid sha256:bd82b01b18c10317e0be0d87ee455ae856f887554a04224d859807e0e95f3042 +size 1114634 diff --git a/RobotData/44_HeadCam/44_RGB.jpg b/RobotData/44_HeadCam/44_RGB.jpg index 0fa976bb..7b056d18 100644 --- a/RobotData/44_HeadCam/44_RGB.jpg +++ b/RobotData/44_HeadCam/44_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4302f18780d04ffd2728f6a19c1561340a0f5862c8140454e3bde7516054ad10 -size 60265 +oid sha256:c121f57779fe8414f8b10d7fad93878a45af8b7bea85807cd51c82ba64520b2a +size 1120588 diff --git a/RobotData/44_HeadCam/HeadCamPos.json b/RobotData/44_HeadCam/HeadCamPos.json index dae2eb04..3fa3d564 100644 --- a/RobotData/44_HeadCam/HeadCamPos.json +++ b/RobotData/44_HeadCam/HeadCamPos.json @@ -2,183 +2,183 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/45_ArmCam/45_Depth.jpg b/RobotData/45_ArmCam/45_Depth.jpg index 6346c7cb..c5df5f3a 100644 --- a/RobotData/45_ArmCam/45_Depth.jpg +++ b/RobotData/45_ArmCam/45_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4bbd3e5739fda36f4c5bf15f033ad0e3905e0b74c12a36922cd374ffdff3df13 -size 43458 +oid sha256:2249f8d5792c348411213bfe6b612c25a3418d607d840fe0d58d6fa8d21d6a3a +size 879710 diff --git a/RobotData/45_ArmCam/45_RGB.jpg b/RobotData/45_ArmCam/45_RGB.jpg index 741fade0..2901afa1 100644 --- a/RobotData/45_ArmCam/45_RGB.jpg +++ b/RobotData/45_ArmCam/45_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:28db8c102a3eb648e050ed06abadc2cc95d348272ffbcec12ba94e3ad4df2b71 -size 43505 +oid sha256:cac5a077de05e99a7ca5e335db199dc841a661b36432b5fc8e7a6909d17f63df +size 878922 diff --git a/RobotData/45_ArmCam/ArmCamPos.json b/RobotData/45_ArmCam/ArmCamPos.json index dc8125aa..55540a9a 100644 --- a/RobotData/45_ArmCam/ArmCamPos.json +++ b/RobotData/45_ArmCam/ArmCamPos.json @@ -2,187 +2,187 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/45_HeadCam/45_Depth.jpg b/RobotData/45_HeadCam/45_Depth.jpg index e1997d83..40894bc2 100644 --- a/RobotData/45_HeadCam/45_Depth.jpg +++ b/RobotData/45_HeadCam/45_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ff39a8a244f26bd24734303ab99b91ac761de916790c85d008a85c74375db43 -size 61397 +oid sha256:a12c99c411556a6c1b709985a1fa74b5dfb53dae26d9f0c01e92ffd9073a6be7 +size 1124857 diff --git a/RobotData/45_HeadCam/45_RGB.jpg b/RobotData/45_HeadCam/45_RGB.jpg index 68e53878..a55fc529 100644 --- a/RobotData/45_HeadCam/45_RGB.jpg +++ b/RobotData/45_HeadCam/45_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dc9c223d196a9787750fff43631ab0fb3eb15a863b04d6884b76971ee744f401 -size 60309 +oid sha256:da998d5c8fb18b5aedd18eead59751d973e3b82a3e556fc96a1127b09b5bad48 +size 1130996 diff --git a/RobotData/45_HeadCam/HeadCamPos.json b/RobotData/45_HeadCam/HeadCamPos.json index 8be40500..d10a160c 100644 --- a/RobotData/45_HeadCam/HeadCamPos.json +++ b/RobotData/45_HeadCam/HeadCamPos.json @@ -2,187 +2,187 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/46_ArmCam/46_Depth.jpg b/RobotData/46_ArmCam/46_Depth.jpg index 9fd16922..b3e521b7 100644 --- a/RobotData/46_ArmCam/46_Depth.jpg +++ b/RobotData/46_ArmCam/46_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ee6a0fdabcfd1bcc4631b990a3478b8fa8ea2ad1a656fb6fa028469e2fe618e -size 43243 +oid sha256:4a97f52cffc7e7ba0b33cf1ea5fcae53489722de0ef5157e96c68d1817037819 +size 862335 diff --git a/RobotData/46_ArmCam/46_RGB.jpg b/RobotData/46_ArmCam/46_RGB.jpg index 5fe18328..1ea47318 100644 --- a/RobotData/46_ArmCam/46_RGB.jpg +++ b/RobotData/46_ArmCam/46_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a2800e1b5891882d7adad5480d05202d0516d4e04fa7696351622464a99eff3 -size 43289 +oid sha256:ad28811810c7c43593d48aa320bc34c1f33e5cb3af88de4096ce83a98098f3d3 +size 861692 diff --git a/RobotData/46_ArmCam/ArmCamPos.json b/RobotData/46_ArmCam/ArmCamPos.json index 453f6b3f..2151c795 100644 --- a/RobotData/46_ArmCam/ArmCamPos.json +++ b/RobotData/46_ArmCam/ArmCamPos.json @@ -2,191 +2,191 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/46_HeadCam/46_Depth.jpg b/RobotData/46_HeadCam/46_Depth.jpg index b069ec88..25c7aeec 100644 --- a/RobotData/46_HeadCam/46_Depth.jpg +++ b/RobotData/46_HeadCam/46_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b225129bee8f7980330f5b523b6414ca66e67dbbe28456db46d0db4310f3ca97 -size 61274 +oid sha256:fd7093c7c538ce953605b41d42add48171fcd4be7f1136c9115e197120977145 +size 1093656 diff --git a/RobotData/46_HeadCam/46_RGB.jpg b/RobotData/46_HeadCam/46_RGB.jpg index 30cc5629..f70e1f07 100644 --- a/RobotData/46_HeadCam/46_RGB.jpg +++ b/RobotData/46_HeadCam/46_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0010875f0c48f6809a40c7194baa5a793d351a16c3835e48813f88ebbcb717f3 -size 60260 +oid sha256:068d0366709c929706c35c150de75688572be63d4ac74f074d103bb5fa2c37c1 +size 1097858 diff --git a/RobotData/46_HeadCam/HeadCamPos.json b/RobotData/46_HeadCam/HeadCamPos.json index c205ec02..88214ac3 100644 --- a/RobotData/46_HeadCam/HeadCamPos.json +++ b/RobotData/46_HeadCam/HeadCamPos.json @@ -2,191 +2,191 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/47_ArmCam/47_Depth.jpg b/RobotData/47_ArmCam/47_Depth.jpg index c49cfa66..b4ce593f 100644 --- a/RobotData/47_ArmCam/47_Depth.jpg +++ b/RobotData/47_ArmCam/47_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7bf53329c52a333bbef01e9742cdac5df9cd46f218aa601ed7df3bbd57ce5ad5 -size 43336 +oid sha256:486936538987b52de3f85437e75ace87ba23f1456a547152d591566348fbadb2 +size 872595 diff --git a/RobotData/47_ArmCam/47_RGB.jpg b/RobotData/47_ArmCam/47_RGB.jpg index 81855ce5..4d76a323 100644 --- a/RobotData/47_ArmCam/47_RGB.jpg +++ b/RobotData/47_ArmCam/47_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8ef47b2fdaed2507a4ad37e75b7ca59889dfb10e050935a3ebc75d8211abaa53 -size 43337 +oid sha256:ce879204a83a00ab41b0fd1bd0e3432f47a5eb0aa926256b2842e40a430e59dd +size 871175 diff --git a/RobotData/47_ArmCam/ArmCamPos.json b/RobotData/47_ArmCam/ArmCamPos.json index 2f088e12..9ef74bac 100644 --- a/RobotData/47_ArmCam/ArmCamPos.json +++ b/RobotData/47_ArmCam/ArmCamPos.json @@ -2,195 +2,195 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/47_HeadCam/47_Depth.jpg b/RobotData/47_HeadCam/47_Depth.jpg index 8215d401..2c35c53e 100644 --- a/RobotData/47_HeadCam/47_Depth.jpg +++ b/RobotData/47_HeadCam/47_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6040990277915b617c3921c01d8ac8cc5be90ed146c262a6841962662ed50b0c -size 61534 +oid sha256:f2507b68660d72f80f9f467042dd3578c27aa4ac086dc521ef9e830ce104d404 +size 1093872 diff --git a/RobotData/47_HeadCam/47_RGB.jpg b/RobotData/47_HeadCam/47_RGB.jpg index b6a9edd1..3b176f28 100644 --- a/RobotData/47_HeadCam/47_RGB.jpg +++ b/RobotData/47_HeadCam/47_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:955b2bf54e7b62aa1201c6a8cc3c8f51338b79ed502d9d37bff995e3b2d643c4 -size 60513 +oid sha256:144dd7f179064790fa7c6b56546bb616820ecf966da170f6cad527035052adfe +size 1098071 diff --git a/RobotData/47_HeadCam/HeadCamPos.json b/RobotData/47_HeadCam/HeadCamPos.json index 93f0fab2..35c83e2f 100644 --- a/RobotData/47_HeadCam/HeadCamPos.json +++ b/RobotData/47_HeadCam/HeadCamPos.json @@ -2,195 +2,195 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/48_ArmCam/48_Depth.jpg b/RobotData/48_ArmCam/48_Depth.jpg index e721a5ae..d11b2d60 100644 --- a/RobotData/48_ArmCam/48_Depth.jpg +++ b/RobotData/48_ArmCam/48_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:80bacda6a87610aa387e3c05abc3981ed3912cfdb2ef22d7df3f55ee9a0b170e -size 43232 +oid sha256:d3850058d86a847510b4d95e5ee4294a1d061b508464c9659eca0c413ab262c5 +size 864515 diff --git a/RobotData/48_ArmCam/48_RGB.jpg b/RobotData/48_ArmCam/48_RGB.jpg index 456cd663..f8d81025 100644 --- a/RobotData/48_ArmCam/48_RGB.jpg +++ b/RobotData/48_ArmCam/48_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:796574201162721c36cccc36d51c7202b16d8fce3588eeedabd0d5c553810c41 -size 43267 +oid sha256:690fc4e169c249f306285ecb74025e397f138a2959f2726df26df143f15b8fbf +size 863575 diff --git a/RobotData/48_ArmCam/ArmCamPos.json b/RobotData/48_ArmCam/ArmCamPos.json index 675a2564..a1c91dfd 100644 --- a/RobotData/48_ArmCam/ArmCamPos.json +++ b/RobotData/48_ArmCam/ArmCamPos.json @@ -2,199 +2,199 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/48_HeadCam/48_Depth.jpg b/RobotData/48_HeadCam/48_Depth.jpg index 3f84d7ce..190a27ac 100644 --- a/RobotData/48_HeadCam/48_Depth.jpg +++ b/RobotData/48_HeadCam/48_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27972954c72c5b3629b1d117ec312e134730abc7e077d1df0b62a42b04b6f3fd -size 61497 +oid sha256:41be8f5df2b5647dc3677431c4750cc04d957a4a124cd72ed1ddf27efb9eac01 +size 1064836 diff --git a/RobotData/48_HeadCam/48_RGB.jpg b/RobotData/48_HeadCam/48_RGB.jpg index f0086c6b..8ec493d0 100644 --- a/RobotData/48_HeadCam/48_RGB.jpg +++ b/RobotData/48_HeadCam/48_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:225a0d48985dd2ebee94ae989f6136840c7ca9c5ccd32879f11af9f6a4e5dd2e -size 60447 +oid sha256:53a537d5c8dddff8df34882271ea9a445d6ac7dc856700d830d41909b690819a +size 1067251 diff --git a/RobotData/48_HeadCam/HeadCamPos.json b/RobotData/48_HeadCam/HeadCamPos.json index 6ff1dee0..a32cc3c6 100644 --- a/RobotData/48_HeadCam/HeadCamPos.json +++ b/RobotData/48_HeadCam/HeadCamPos.json @@ -2,199 +2,199 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/49_ArmCam/49_Depth.jpg b/RobotData/49_ArmCam/49_Depth.jpg index b180446a..8f9e55ee 100644 --- a/RobotData/49_ArmCam/49_Depth.jpg +++ b/RobotData/49_ArmCam/49_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a0641ff7a8b6927c03df84efece532bb38f2ceb726925f23ccc93c612897dc34 -size 43328 +oid sha256:08a484f445243ee24035a4ce902d9e63525fe0e40fb2812f38ecca28e1384eb5 +size 877148 diff --git a/RobotData/49_ArmCam/49_RGB.jpg b/RobotData/49_ArmCam/49_RGB.jpg index 973d412a..66e6853e 100644 --- a/RobotData/49_ArmCam/49_RGB.jpg +++ b/RobotData/49_ArmCam/49_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ec5cc972f72e5802228f7ec90343a395378887a1f01cfc013a5c2559a573948 -size 43334 +oid sha256:fc801f5bb03a7e836b731ff535562f6b5b17287dbbb6993d37f62e04431a7eb2 +size 874746 diff --git a/RobotData/49_ArmCam/ArmCamPos.json b/RobotData/49_ArmCam/ArmCamPos.json index f58a6cc2..8109c141 100644 --- a/RobotData/49_ArmCam/ArmCamPos.json +++ b/RobotData/49_ArmCam/ArmCamPos.json @@ -2,203 +2,203 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/49_HeadCam/49_Depth.jpg b/RobotData/49_HeadCam/49_Depth.jpg index 1393ea81..15b83cd8 100644 --- a/RobotData/49_HeadCam/49_Depth.jpg +++ b/RobotData/49_HeadCam/49_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:244b67253577b5995db4abba2b292e400503181dc4580add89df04a8b56d3fc1 -size 61000 +oid sha256:bc6d1fc5e78b39b8824aee74afcfea31ecff192675501fb3d732007cbf543f91 +size 1072690 diff --git a/RobotData/49_HeadCam/49_RGB.jpg b/RobotData/49_HeadCam/49_RGB.jpg index 86641465..30a21e74 100644 --- a/RobotData/49_HeadCam/49_RGB.jpg +++ b/RobotData/49_HeadCam/49_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b605df50e40969c96b428bb4782efbd3b172b6be0b0b3b1294359404e2335d1a -size 59896 +oid sha256:537b011031897bd82d084dc9f6274e20563c52a53f01d5c06df606e7633f02c1 +size 1075540 diff --git a/RobotData/49_HeadCam/HeadCamPos.json b/RobotData/49_HeadCam/HeadCamPos.json index b57bcc08..7326f5f6 100644 --- a/RobotData/49_HeadCam/HeadCamPos.json +++ b/RobotData/49_HeadCam/HeadCamPos.json @@ -2,203 +2,203 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/4_ArmCam/4_Depth.jpg b/RobotData/4_ArmCam/4_Depth.jpg index 17aac982..c1af8f3b 100644 --- a/RobotData/4_ArmCam/4_Depth.jpg +++ b/RobotData/4_ArmCam/4_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfd6224313f3711759dce71bbb0b035dbb443c5c9b46b766ebbf1d50c2be908c -size 43678 +oid sha256:fded13db4d5cd46bddc18cfe234005c5ad88aa4ed71b6634fcef024c26deceb7 +size 880895 diff --git a/RobotData/4_ArmCam/4_RGB.jpg b/RobotData/4_ArmCam/4_RGB.jpg index 9f902675..1693e126 100644 --- a/RobotData/4_ArmCam/4_RGB.jpg +++ b/RobotData/4_ArmCam/4_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6c19644a099a38bc94ea343126cbacf539d4f9b1c3a1a8ec495f714de548100 -size 43706 +oid sha256:af369b1236428e8ea3af73b6e238132b74108ba02dfe13ae86c9224bf5926909 +size 881124 diff --git a/RobotData/4_ArmCam/ArmCamPos.json b/RobotData/4_ArmCam/ArmCamPos.json index 0dc02fc7..754fd465 100644 --- a/RobotData/4_ArmCam/ArmCamPos.json +++ b/RobotData/4_ArmCam/ArmCamPos.json @@ -2,427 +2,23 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-33.407 Y=197.118 Z=17.367 Rotation: P=-10.065453 Y=24.838411 R=-0.152538 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-32.817 Y=195.812 Z=17.399 Rotation: P=-10.019595 Y=24.861629 R=-0.156040 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-32.099 Y=194.285 Z=17.379 Rotation: P=-10.053852 Y=24.897728 R=-0.142674 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/4_HeadCam/4_Depth.jpg b/RobotData/4_HeadCam/4_Depth.jpg index f3ec4e43..fbed5b0e 100644 --- a/RobotData/4_HeadCam/4_Depth.jpg +++ b/RobotData/4_HeadCam/4_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:00176092f67cdc758873e8e0e9c3374fa930ffabda44592f1213540aa73ad6a5 -size 55436 +oid sha256:bb0c1a7def62ee10910d2ce8d717940a29ace5816ab19cce78db75dc122ce996 +size 1243307 diff --git a/RobotData/4_HeadCam/4_RGB.jpg b/RobotData/4_HeadCam/4_RGB.jpg index 1cdc178c..0f2cbfad 100644 --- a/RobotData/4_HeadCam/4_RGB.jpg +++ b/RobotData/4_HeadCam/4_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7bb62edcf781971051fc99388e1837b07280f0ab7ca2ad2e5ec4a66f87f5d0b3 -size 54198 +oid sha256:02a57f57828684665b1549ed454baea38690602c7680fb0aa7d023ef1d80e818 +size 1255812 diff --git a/RobotData/4_HeadCam/HeadCamPos.json b/RobotData/4_HeadCam/HeadCamPos.json index 4f3d82fd..41db445e 100644 --- a/RobotData/4_HeadCam/HeadCamPos.json +++ b/RobotData/4_HeadCam/HeadCamPos.json @@ -2,427 +2,23 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-73.514 Y=169.657 Z=125.951 Rotation: P=-0.229038 Y=-65.108815 R=0.019686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-72.991 Y=168.295 Z=125.945 Rotation: P=-0.232446 Y=-65.089575 R=-0.026162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-72.205 Y=166.791 Z=125.955 Rotation: P=-0.219315 Y=-65.050374 R=0.008104 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/50_ArmCam/50_Depth.jpg b/RobotData/50_ArmCam/50_Depth.jpg index fa439618..83613bfd 100644 --- a/RobotData/50_ArmCam/50_Depth.jpg +++ b/RobotData/50_ArmCam/50_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d1e6f6049f8282d4e04aec19490ebb210aeae926730359d94ea236a8c2e26a38 -size 43861 +oid sha256:949c38cb3f35526b2dbe8876b75ced77a324890f282e64dcf5173f961a16fa84 +size 865347 diff --git a/RobotData/50_ArmCam/50_RGB.jpg b/RobotData/50_ArmCam/50_RGB.jpg index 1100daa5..23f5595e 100644 --- a/RobotData/50_ArmCam/50_RGB.jpg +++ b/RobotData/50_ArmCam/50_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:06e4f1318a765e4abc6308aaa1205b10fbaba532a8722ea8835dd7272de686f8 -size 43882 +oid sha256:971277e11598b2ce0141db6a1b505b86b33a999c8f07611871f4e549b5d615e2 +size 865408 diff --git a/RobotData/50_ArmCam/ArmCamPos.json b/RobotData/50_ArmCam/ArmCamPos.json index 3c2cdcfb..d7a852f2 100644 --- a/RobotData/50_ArmCam/ArmCamPos.json +++ b/RobotData/50_ArmCam/ArmCamPos.json @@ -2,207 +2,207 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-12.598 Y=140.792 Z=17.384 Rotation: P=-10.040175 Y=31.081177 R=-0.154855 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/50_HeadCam/50_Depth.jpg b/RobotData/50_HeadCam/50_Depth.jpg index 829b8b06..add7236b 100644 --- a/RobotData/50_HeadCam/50_Depth.jpg +++ b/RobotData/50_HeadCam/50_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f37e0a6f7401a922723b83f69d0a8060ba3022975af85e46bf2d8bf45aa05cd -size 61372 +oid sha256:40b1a28d870f6d43b9fed8b69ce81783cd49e16784997d90ef09e70a95e2f1f8 +size 1044741 diff --git a/RobotData/50_HeadCam/50_RGB.jpg b/RobotData/50_HeadCam/50_RGB.jpg index ae7d94eb..b089417d 100644 --- a/RobotData/50_HeadCam/50_RGB.jpg +++ b/RobotData/50_HeadCam/50_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea49ca2a5f09e6a513ac446e5441d4cab0229d192597979540ba17a3358cf18c -size 60208 +oid sha256:8d6e7be7376299b64b46760f9cd74c40093bda07b2a8d652665388b8fbabaee3 +size 1048034 diff --git a/RobotData/50_HeadCam/HeadCamPos.json b/RobotData/50_HeadCam/HeadCamPos.json index c8f8f754..a545c9c0 100644 --- a/RobotData/50_HeadCam/HeadCamPos.json +++ b/RobotData/50_HeadCam/HeadCamPos.json @@ -2,207 +2,207 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-49.536 Y=109.123 Z=125.947 Rotation: P=-0.231300 Y=-58.903058 R=-0.005447 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/51_ArmCam/51_Depth.jpg b/RobotData/51_ArmCam/51_Depth.jpg index 7e735878..d94b3407 100644 --- a/RobotData/51_ArmCam/51_Depth.jpg +++ b/RobotData/51_ArmCam/51_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:40af2dfa6f565b1939b6c2e4475532070459b84f28589cedae4e31742ac2a38f -size 44319 +oid sha256:05d8d8f96ee1e4760905a2748d0ca7709238d20c0cf22f92050b9bfdcc391e99 +size 875667 diff --git a/RobotData/51_ArmCam/51_RGB.jpg b/RobotData/51_ArmCam/51_RGB.jpg index 63f6e824..90374d19 100644 --- a/RobotData/51_ArmCam/51_RGB.jpg +++ b/RobotData/51_ArmCam/51_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ddf4cfde849b8971580ff63098e308e27a22ad5f25bb396a0edcbe73f5b1b2b -size 44361 +oid sha256:c9a42b0f4bc29c3adae09da1174092f646352edb04285d577945eaee2049a65e +size 875002 diff --git a/RobotData/51_ArmCam/ArmCamPos.json b/RobotData/51_ArmCam/ArmCamPos.json index 521c3225..57d78cc7 100644 --- a/RobotData/51_ArmCam/ArmCamPos.json +++ b/RobotData/51_ArmCam/ArmCamPos.json @@ -2,211 +2,211 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-12.598 Y=140.792 Z=17.384 Rotation: P=-10.040175 Y=31.081177 R=-0.154855 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-12.598 Y=140.792 Z=17.384 Rotation: P=-10.040175 Y=31.081177 R=-0.154855 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/51_HeadCam/51_Depth.jpg b/RobotData/51_HeadCam/51_Depth.jpg index 1d868f5e..e4205b97 100644 --- a/RobotData/51_HeadCam/51_Depth.jpg +++ b/RobotData/51_HeadCam/51_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce408c66587a5cde32c67cc8c435d8d012039e403512b00a6e30da32434f30e2 -size 61244 +oid sha256:5bbc7afe4b2c6fbd0f00a633ba300080296430f4586eb4a13b9a68d5c8ce5052 +size 1048499 diff --git a/RobotData/51_HeadCam/51_RGB.jpg b/RobotData/51_HeadCam/51_RGB.jpg index 45ab10e7..c5f439a3 100644 --- a/RobotData/51_HeadCam/51_RGB.jpg +++ b/RobotData/51_HeadCam/51_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4495f9ea6c48e4deefedf6f11655eedae63db9b59dcad23d5b62582db2b0aca -size 60168 +oid sha256:2c5d1e039a6317ee6cf15d11aa01016dafd75d2f287d799ff7bae617f6279cd6 +size 1052280 diff --git a/RobotData/51_HeadCam/HeadCamPos.json b/RobotData/51_HeadCam/HeadCamPos.json index 8b9737d4..5935d4b5 100644 --- a/RobotData/51_HeadCam/HeadCamPos.json +++ b/RobotData/51_HeadCam/HeadCamPos.json @@ -2,211 +2,211 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-49.536 Y=109.123 Z=125.947 Rotation: P=-0.231300 Y=-58.903058 R=-0.005447 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-49.536 Y=109.123 Z=125.947 Rotation: P=-0.231300 Y=-58.903058 R=-0.005447 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/52_ArmCam/52_Depth.jpg b/RobotData/52_ArmCam/52_Depth.jpg index 8524e829..0295440a 100644 --- a/RobotData/52_ArmCam/52_Depth.jpg +++ b/RobotData/52_ArmCam/52_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f3e8b121de28b635b759f2424e380a8fd0cd7e0d2b2c4b982a6db8ad807bb8b -size 44595 +oid sha256:c5768e7f74915a82a23518549198c40d9e97c9c98c858e94b4a6f3940be6df6c +size 857916 diff --git a/RobotData/52_ArmCam/52_RGB.jpg b/RobotData/52_ArmCam/52_RGB.jpg index 4e3e742d..6824397d 100644 --- a/RobotData/52_ArmCam/52_RGB.jpg +++ b/RobotData/52_ArmCam/52_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c7bd6cac9d5157e9718604e4cdb113d4737bab19275db9b413b41df09797eaef -size 44655 +oid sha256:d4f3797d85b5687931d25ac4910c62d00716c4caf3ab8aae7f8c922dfba712f3 +size 857130 diff --git a/RobotData/52_ArmCam/ArmCamPos.json b/RobotData/52_ArmCam/ArmCamPos.json index 4649497e..e4beac68 100644 --- a/RobotData/52_ArmCam/ArmCamPos.json +++ b/RobotData/52_ArmCam/ArmCamPos.json @@ -2,215 +2,215 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-12.598 Y=140.792 Z=17.384 Rotation: P=-10.040175 Y=31.081177 R=-0.154855 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-12.598 Y=140.792 Z=17.384 Rotation: P=-10.040175 Y=31.081177 R=-0.154855 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-8.372 Y=133.803 Z=17.377 Rotation: P=-10.052140 Y=31.259152 R=-0.149780 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/52_HeadCam/52_Depth.jpg b/RobotData/52_HeadCam/52_Depth.jpg index 4c697e5e..0f58ea4a 100644 --- a/RobotData/52_HeadCam/52_Depth.jpg +++ b/RobotData/52_HeadCam/52_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff8eee4ddfd1af16d81e9c489bcdc2d399b1526ff8bfd9493424ba27afc33654 -size 61021 +oid sha256:b556c7f1826af4f2c8ed112b164dfd7712da7ccddfc416fe2b66993bda6ae640 +size 1031121 diff --git a/RobotData/52_HeadCam/52_RGB.jpg b/RobotData/52_HeadCam/52_RGB.jpg index 477cdea5..c5aeb050 100644 --- a/RobotData/52_HeadCam/52_RGB.jpg +++ b/RobotData/52_HeadCam/52_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db3a5855b59d1b55db34237327979d2ee849334025895686133707c027e1f535 -size 60027 +oid sha256:ae2512bca87a634aeaa987860ed4186f6ade4253e7fddaf333d7867122bbbea5 +size 1033320 diff --git a/RobotData/52_HeadCam/HeadCamPos.json b/RobotData/52_HeadCam/HeadCamPos.json index 14bc512c..8f78d8cf 100644 --- a/RobotData/52_HeadCam/HeadCamPos.json +++ b/RobotData/52_HeadCam/HeadCamPos.json @@ -2,215 +2,215 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-49.536 Y=109.123 Z=125.947 Rotation: P=-0.231300 Y=-58.903058 R=-0.005447 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-49.536 Y=109.123 Z=125.947 Rotation: P=-0.231300 Y=-58.903058 R=-0.005447 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-45.195 Y=102.037 Z=125.951 Rotation: P=-0.226306 Y=-58.721239 R=0.006509 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/53_ArmCam/53_Depth.jpg b/RobotData/53_ArmCam/53_Depth.jpg index 7e7ce94d..6918c141 100644 --- a/RobotData/53_ArmCam/53_Depth.jpg +++ b/RobotData/53_ArmCam/53_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aadc441e7eaa2df9969a4bbfd15c4b00a65f3ea9560ce154e087fed7d631f0ce -size 44829 +oid sha256:9f626ad0a97ba099983297c20a5646b6c36ed321da80077172a960b9bc24f98f +size 867822 diff --git a/RobotData/53_ArmCam/53_RGB.jpg b/RobotData/53_ArmCam/53_RGB.jpg index ce00dfb5..5d045bab 100644 --- a/RobotData/53_ArmCam/53_RGB.jpg +++ b/RobotData/53_ArmCam/53_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:200b61e6c44c2c744633b4aaca0b8b20d94f8b152a593ae681f7fda8225d2a6a -size 44847 +oid sha256:4335eeba0071f9c8ae78ad7edbdead15b8734f25e6f1599e84a9f7e76f773161 +size 866672 diff --git a/RobotData/53_ArmCam/ArmCamPos.json b/RobotData/53_ArmCam/ArmCamPos.json index 5459a6d4..ee228b4d 100644 --- a/RobotData/53_ArmCam/ArmCamPos.json +++ b/RobotData/53_ArmCam/ArmCamPos.json @@ -2,219 +2,219 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-12.598 Y=140.792 Z=17.384 Rotation: P=-10.040175 Y=31.081177 R=-0.154855 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-12.598 Y=140.792 Z=17.384 Rotation: P=-10.040175 Y=31.081177 R=-0.154855 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-8.372 Y=133.803 Z=17.377 Rotation: P=-10.052140 Y=31.259152 R=-0.149780 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-8.372 Y=133.803 Z=17.377 Rotation: P=-10.052140 Y=31.259152 R=-0.149780 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/53_HeadCam/53_Depth.jpg b/RobotData/53_HeadCam/53_Depth.jpg index ad57bf15..804b723a 100644 --- a/RobotData/53_HeadCam/53_Depth.jpg +++ b/RobotData/53_HeadCam/53_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f621b7fe04f3c1c685924f813f43751154baf3d298a8c21c1a5e17a90535264b -size 61104 +oid sha256:d16eec3727644747dcc360210bb54e98db2321ea1783d961967cb18d6047ab3c +size 1037344 diff --git a/RobotData/53_HeadCam/53_RGB.jpg b/RobotData/53_HeadCam/53_RGB.jpg index 5e530ed6..00c03e10 100644 --- a/RobotData/53_HeadCam/53_RGB.jpg +++ b/RobotData/53_HeadCam/53_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ff72dda02d4c55954653ae5a6c032f13c751e26060949919f1410e37e59b193 -size 59993 +oid sha256:719aff6bb80caa69f5c3eac4bf7902ad131f05bcc383cfa5fbbfc4ecde894cde +size 1040188 diff --git a/RobotData/53_HeadCam/HeadCamPos.json b/RobotData/53_HeadCam/HeadCamPos.json index ec87e7f4..b5c58c1a 100644 --- a/RobotData/53_HeadCam/HeadCamPos.json +++ b/RobotData/53_HeadCam/HeadCamPos.json @@ -2,219 +2,219 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-49.536 Y=109.123 Z=125.947 Rotation: P=-0.231300 Y=-58.903058 R=-0.005447 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-49.536 Y=109.123 Z=125.947 Rotation: P=-0.231300 Y=-58.903058 R=-0.005447 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-45.195 Y=102.037 Z=125.951 Rotation: P=-0.226306 Y=-58.721239 R=0.006509 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-45.195 Y=102.037 Z=125.951 Rotation: P=-0.226306 Y=-58.721239 R=0.006509 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/54_ArmCam/54_Depth.jpg b/RobotData/54_ArmCam/54_Depth.jpg index 9be7f01d..1717589b 100644 --- a/RobotData/54_ArmCam/54_Depth.jpg +++ b/RobotData/54_ArmCam/54_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ecff222b322fa843143f03477ad1f7e7e58c5082007aed861cb1b61a657236e3 -size 44808 +oid sha256:d6a87241dfb4411a5f5e191a8807586ebfb17864b7699d43912ed8624ae027fe +size 872205 diff --git a/RobotData/54_ArmCam/54_RGB.jpg b/RobotData/54_ArmCam/54_RGB.jpg index 493fe468..eaca1efc 100644 --- a/RobotData/54_ArmCam/54_RGB.jpg +++ b/RobotData/54_ArmCam/54_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c525ef46c3e5aa5c622cfb401a43fb200ce17d17b655818df13cdc021552fa0e -size 44797 +oid sha256:06a5d0673fe8d3ab105dac55aadadb0195d344617d555e20f435d231aa7fc235 +size 872070 diff --git a/RobotData/54_ArmCam/ArmCamPos.json b/RobotData/54_ArmCam/ArmCamPos.json index a7277d79..01063006 100644 --- a/RobotData/54_ArmCam/ArmCamPos.json +++ b/RobotData/54_ArmCam/ArmCamPos.json @@ -2,223 +2,223 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-12.598 Y=140.792 Z=17.384 Rotation: P=-10.040175 Y=31.081177 R=-0.154855 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-12.598 Y=140.792 Z=17.384 Rotation: P=-10.040175 Y=31.081177 R=-0.154855 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-8.372 Y=133.803 Z=17.377 Rotation: P=-10.052140 Y=31.259152 R=-0.149780 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-8.372 Y=133.803 Z=17.377 Rotation: P=-10.052140 Y=31.259152 R=-0.149780 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-3.861 Y=126.403 Z=17.362 Rotation: P=-10.069432 Y=31.479803 R=-0.156024 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/54_HeadCam/54_Depth.jpg b/RobotData/54_HeadCam/54_Depth.jpg index 3be42bd4..8ed37447 100644 --- a/RobotData/54_HeadCam/54_Depth.jpg +++ b/RobotData/54_HeadCam/54_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:af3db426ae6b7306a4331608b1a08fac09c9b4f13f54c459eab258478ee9fe88 -size 60829 +oid sha256:ef9a6e4614fe1855a0a338588ad31ead2d08ffe4abdb2e56c8f2a1875f9586d9 +size 1011305 diff --git a/RobotData/54_HeadCam/54_RGB.jpg b/RobotData/54_HeadCam/54_RGB.jpg index 6cfd20ad..4d076651 100644 --- a/RobotData/54_HeadCam/54_RGB.jpg +++ b/RobotData/54_HeadCam/54_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4fabc5d5e5613e30af670b3bb0d56570f9e2dd583f87764662049bfcecc416e8 -size 59770 +oid sha256:1e8b2d86c7be89cd9da485f391ae056cb2b5d44bd6f0134f14204fce84ad63df +size 1013833 diff --git a/RobotData/54_HeadCam/HeadCamPos.json b/RobotData/54_HeadCam/HeadCamPos.json index c7f38208..209448a9 100644 --- a/RobotData/54_HeadCam/HeadCamPos.json +++ b/RobotData/54_HeadCam/HeadCamPos.json @@ -2,223 +2,223 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-49.536 Y=109.123 Z=125.947 Rotation: P=-0.231300 Y=-58.903058 R=-0.005447 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-49.536 Y=109.123 Z=125.947 Rotation: P=-0.231300 Y=-58.903058 R=-0.005447 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-45.195 Y=102.037 Z=125.951 Rotation: P=-0.226306 Y=-58.721239 R=0.006509 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-45.195 Y=102.037 Z=125.951 Rotation: P=-0.226306 Y=-58.721239 R=0.006509 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-40.528 Y=94.503 Z=125.949 Rotation: P=-0.232460 Y=-58.500208 R=0.023792 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/55_ArmCam/55_Depth.jpg b/RobotData/55_ArmCam/55_Depth.jpg index 43abe10f..9ec54817 100644 --- a/RobotData/55_ArmCam/55_Depth.jpg +++ b/RobotData/55_ArmCam/55_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:531cdeaeb9d7c7a586e4fea875f5d5c75c1c88d178df4ea6573f12945eb1d609 -size 44876 +oid sha256:dcb2f01b4aa458dba290e773aa6dac63dd00f9d56444aefa8ae8b4ea84805b3e +size 879687 diff --git a/RobotData/55_ArmCam/55_RGB.jpg b/RobotData/55_ArmCam/55_RGB.jpg index 02db4fe5..3de87c58 100644 --- a/RobotData/55_ArmCam/55_RGB.jpg +++ b/RobotData/55_ArmCam/55_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dc07b3d0d19f5c15c9232a5ca67e82e52a82065ba2d99929ea583047187e4cfc -size 44885 +oid sha256:21b95d7a3efefa00f82ab8b011a230fe40a83a1335f4926a9179275dd826cdc1 +size 879634 diff --git a/RobotData/55_ArmCam/ArmCamPos.json b/RobotData/55_ArmCam/ArmCamPos.json index f481fe91..2d16ea90 100644 --- a/RobotData/55_ArmCam/ArmCamPos.json +++ b/RobotData/55_ArmCam/ArmCamPos.json @@ -2,227 +2,227 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-97.604 Y=294.134 Z=17.371 Rotation: P=-10.061628 Y=27.200198 R=-0.147376 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.128 Y=285.463 Z=17.381 Rotation: P=-10.050205 Y=27.363369 R=-0.142502 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.035 Y=277.569 Z=17.400 Rotation: P=-10.019863 Y=27.519595 R=-0.152731 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-84.883 Y=269.643 Z=17.386 Rotation: P=-10.036060 Y=27.678488 R=-0.158409 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-80.641 Y=261.598 Z=17.381 Rotation: P=-10.050659 Y=27.853047 R=-0.142426 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.744 Y=254.254 Z=17.367 Rotation: P=-10.061063 Y=28.017582 R=-0.159631 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-72.689 Y=246.652 Z=17.380 Rotation: P=-10.047644 Y=28.190110 R=-0.150925 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-68.376 Y=238.624 Z=17.390 Rotation: P=-10.034418 Y=28.392711 R=-0.150123 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-64.361 Y=231.239 Z=17.370 Rotation: P=-10.063207 Y=28.590741 R=-0.147354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-60.145 Y=223.510 Z=17.388 Rotation: P=-10.037334 Y=28.779339 R=-0.150416 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-55.867 Y=215.730 Z=17.407 Rotation: P=-10.010992 Y=28.989507 R=-0.153048 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-51.690 Y=208.221 Z=17.402 Rotation: P=-10.016020 Y=29.200131 R=-0.156101 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-47.560 Y=200.852 Z=17.403 Rotation: P=-10.014330 Y=29.401796 R=-0.157342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-43.232 Y=193.197 Z=17.400 Rotation: P=-10.019516 Y=29.608703 R=-0.153471 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-38.946 Y=185.679 Z=17.400 Rotation: P=-10.023618 Y=29.816541 R=-0.146541 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-34.198 Y=177.423 Z=17.397 Rotation: P=-10.025529 Y=30.051428 R=-0.149165 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-29.905 Y=170.018 Z=17.404 Rotation: P=-10.016121 Y=30.247604 R=-0.150950 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-25.582 Y=162.624 Z=17.403 Rotation: P=-10.016664 Y=30.449858 R=-0.151354 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-21.157 Y=155.129 Z=17.393 Rotation: P=-10.033579 Y=30.661459 R=-0.144726 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-16.746 Y=147.717 Z=17.384 Rotation: P=-10.044072 Y=30.870830 R=-0.148485 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-12.598 Y=140.792 Z=17.384 Rotation: P=-10.040175 Y=31.081177 R=-0.154855 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-12.598 Y=140.792 Z=17.384 Rotation: P=-10.040175 Y=31.081177 R=-0.154855 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-8.372 Y=133.803 Z=17.377 Rotation: P=-10.052140 Y=31.259152 R=-0.149780 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-8.372 Y=133.803 Z=17.377 Rotation: P=-10.052140 Y=31.259152 R=-0.149780 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-3.861 Y=126.403 Z=17.362 Rotation: P=-10.069432 Y=31.479803 R=-0.156024 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-3.861 Y=126.403 Z=17.362 Rotation: P=-10.069432 Y=31.479803 R=-0.156024 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/55_HeadCam/55_Depth.jpg b/RobotData/55_HeadCam/55_Depth.jpg index 2dfa4ef1..5092713d 100644 --- a/RobotData/55_HeadCam/55_Depth.jpg +++ b/RobotData/55_HeadCam/55_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a11b06e99707154ece841126b46d9248168b524bf7ccf6e0d4e44278b5b91107 -size 60802 +oid sha256:ff6849e7ee76572e6dd7f67b3d0fa2f7fd764d9c12b92a87aff6393dbc9629c4 +size 1015838 diff --git a/RobotData/55_HeadCam/55_RGB.jpg b/RobotData/55_HeadCam/55_RGB.jpg index 08d88927..c728fdc3 100644 --- a/RobotData/55_HeadCam/55_RGB.jpg +++ b/RobotData/55_HeadCam/55_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad2adbce863da201709e199b777cd79b309154fdb39deaabfb4cca4cbec1354f -size 59765 +oid sha256:30d39bad92847704bf0c925da6823a2148e3d497dee307136e0340703668ae40 +size 1018419 diff --git a/RobotData/55_HeadCam/HeadCamPos.json b/RobotData/55_HeadCam/HeadCamPos.json index bedfb2d7..0162026c 100644 --- a/RobotData/55_HeadCam/HeadCamPos.json +++ b/RobotData/55_HeadCam/HeadCamPos.json @@ -2,227 +2,227 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-136.537 Y=265.025 Z=125.953 Rotation: P=-0.223964 Y=-62.699717 R=0.015684 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-132.009 Y=256.251 Z=125.955 Rotation: P=-0.219144 Y=-62.554767 R=0.004342 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-127.882 Y=248.214 Z=125.946 Rotation: P=-0.229178 Y=-62.410361 R=-0.025973 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-123.621 Y=240.190 Z=125.945 Rotation: P=-0.234790 Y=-62.260048 R=-0.009752 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-119.279 Y=232.066 Z=125.955 Rotation: P=-0.219068 Y=-62.088700 R=0.004887 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-115.268 Y=224.598 Z=125.947 Rotation: P=-0.236018 Y=-61.931841 R=0.015294 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.155 Y=216.882 Z=125.950 Rotation: P=-0.227434 Y=-61.760505 R=0.001893 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-106.761 Y=208.711 Z=125.949 Rotation: P=-0.226633 Y=-61.564121 R=-0.011307 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.598 Y=201.225 Z=125.953 Rotation: P=-0.223928 Y=-61.367781 R=0.017492 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-98.326 Y=193.345 Z=125.949 Rotation: P=-0.226925 Y=-61.186320 R=-0.008357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-93.981 Y=185.400 Z=125.946 Rotation: P=-0.229504 Y=-60.980834 R=-0.034683 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-89.682 Y=177.751 Z=125.945 Rotation: P=-0.232514 Y=-60.771959 R=-0.029651 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-85.448 Y=170.246 Z=125.943 Rotation: P=-0.233737 Y=-60.573729 R=-0.031329 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-81.005 Y=162.467 Z=125.946 Rotation: P=-0.229929 Y=-60.369328 R=-0.026129 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-76.606 Y=154.827 Z=125.950 Rotation: P=-0.223106 Y=-60.160575 R=-0.022023 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-71.727 Y=146.416 Z=125.949 Rotation: P=-0.225692 Y=-59.927991 R=-0.020106 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-67.343 Y=138.872 Z=125.947 Rotation: P=-0.227448 Y=-59.735675 R=-0.029500 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-62.908 Y=131.346 Z=125.947 Rotation: P=-0.227845 Y=-59.533314 R=-0.028958 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-58.346 Y=123.740 Z=125.952 Rotation: P=-0.221324 Y=-59.320833 R=-0.012040 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-53.800 Y=116.196 Z=125.951 Rotation: P=-0.225029 Y=-59.110951 R=-0.001553 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-49.536 Y=109.123 Z=125.947 Rotation: P=-0.231300 Y=-58.903058 R=-0.005447 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-49.536 Y=109.123 Z=125.947 Rotation: P=-0.231300 Y=-58.903058 R=-0.005447 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-45.195 Y=102.037 Z=125.951 Rotation: P=-0.226306 Y=-58.721239 R=0.006509 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-45.195 Y=102.037 Z=125.951 Rotation: P=-0.226306 Y=-58.721239 R=0.006509 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-40.528 Y=94.503 Z=125.949 Rotation: P=-0.232460 Y=-58.500208 R=0.023792 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-40.528 Y=94.503 Z=125.949 Rotation: P=-0.232460 Y=-58.500208 R=0.023792 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/5_ArmCam/5_Depth.jpg b/RobotData/5_ArmCam/5_Depth.jpg index 93f238d9..764e637e 100644 --- a/RobotData/5_ArmCam/5_Depth.jpg +++ b/RobotData/5_ArmCam/5_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1869452d05832991d79afed53929cbc0d035755224639cbd67d1641963c42ad9 -size 44054 +oid sha256:540f6c540f8322d9a4b8cd6dae5cf49f995ed43566d286f064ee4879488f7c15 +size 884058 diff --git a/RobotData/5_ArmCam/5_RGB.jpg b/RobotData/5_ArmCam/5_RGB.jpg index 2cc9443a..863e7236 100644 --- a/RobotData/5_ArmCam/5_RGB.jpg +++ b/RobotData/5_ArmCam/5_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c791a64f262ca519285df4bf9237fed1885ae8839ba89a0694cb2a60ede9693 -size 44065 +oid sha256:fe306aa4b2c2009d0cb09d4f2a7afdf4b64d7284b9d19764e91a0f4e33a78d47 +size 885034 diff --git a/RobotData/5_ArmCam/ArmCamPos.json b/RobotData/5_ArmCam/ArmCamPos.json index b44a91f4..592c8ccf 100644 --- a/RobotData/5_ArmCam/ArmCamPos.json +++ b/RobotData/5_ArmCam/ArmCamPos.json @@ -2,431 +2,27 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-33.407 Y=197.118 Z=17.367 Rotation: P=-10.065453 Y=24.838411 R=-0.152538 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-32.817 Y=195.812 Z=17.399 Rotation: P=-10.019595 Y=24.861629 R=-0.156040 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-32.099 Y=194.285 Z=17.379 Rotation: P=-10.053852 Y=24.897728 R=-0.142674 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-31.463 Y=192.908 Z=17.382 Rotation: P=-10.042117 Y=24.921978 R=-0.156537 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/5_HeadCam/5_Depth.jpg b/RobotData/5_HeadCam/5_Depth.jpg index 123fa5be..c32cffcf 100644 --- a/RobotData/5_HeadCam/5_Depth.jpg +++ b/RobotData/5_HeadCam/5_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ed7c4b3736af173fd987857a8b996ea617943fa2aac8dcb50316156b2ec6d8c -size 55354 +oid sha256:c58d0f13bdc4560b979cd717b8a988b4b4e15e538a332479720055d7d73900f5 +size 1246733 diff --git a/RobotData/5_HeadCam/5_RGB.jpg b/RobotData/5_HeadCam/5_RGB.jpg index a04fe611..970c5562 100644 --- a/RobotData/5_HeadCam/5_RGB.jpg +++ b/RobotData/5_HeadCam/5_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d213480b4f2d5184c334a54ad58a96c63dffeb8227cf16611878f84022dbfeee -size 54082 +oid sha256:024fe351a793ec3fee07499320eec88fa7b65994f5745fdc4dd8b02da8549467 +size 1258413 diff --git a/RobotData/5_HeadCam/HeadCamPos.json b/RobotData/5_HeadCam/HeadCamPos.json index 6e01f942..5f6eff9e 100644 --- a/RobotData/5_HeadCam/HeadCamPos.json +++ b/RobotData/5_HeadCam/HeadCamPos.json @@ -2,431 +2,27 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-73.514 Y=169.657 Z=125.951 Rotation: P=-0.229038 Y=-65.108815 R=0.019686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-72.991 Y=168.295 Z=125.945 Rotation: P=-0.232446 Y=-65.089575 R=-0.026162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-72.205 Y=166.791 Z=125.955 Rotation: P=-0.219315 Y=-65.050374 R=0.008104 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-71.569 Y=165.367 Z=125.947 Rotation: P=-0.232954 Y=-65.029686 R=-0.003639 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/6_ArmCam/6_Depth.jpg b/RobotData/6_ArmCam/6_Depth.jpg index 6183c71c..6710c0ec 100644 --- a/RobotData/6_ArmCam/6_Depth.jpg +++ b/RobotData/6_ArmCam/6_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:86475ba603122c9f076ad0ca6c578e4ee45981ee0dfe7e024b722b4d95da9a42 -size 44521 +oid sha256:8e0bd504bc3978b7281631187afcf1c9e69f4271cc027d078f047457c19bea59 +size 863830 diff --git a/RobotData/6_ArmCam/6_RGB.jpg b/RobotData/6_ArmCam/6_RGB.jpg index 6b1d9ced..8e029da1 100644 --- a/RobotData/6_ArmCam/6_RGB.jpg +++ b/RobotData/6_ArmCam/6_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92a23590d90d99e30f2319a8fd2ed2b9dca4941b4ec1e7c02392521754f038cf -size 44548 +oid sha256:1864fa8b10de69eab921c97d5a76e4cf80f41c30526d9d0b64bb8ed28772428a +size 862801 diff --git a/RobotData/6_ArmCam/ArmCamPos.json b/RobotData/6_ArmCam/ArmCamPos.json index 8b8abc82..2807f483 100644 --- a/RobotData/6_ArmCam/ArmCamPos.json +++ b/RobotData/6_ArmCam/ArmCamPos.json @@ -2,435 +2,31 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-33.407 Y=197.118 Z=17.367 Rotation: P=-10.065453 Y=24.838411 R=-0.152538 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-32.817 Y=195.812 Z=17.399 Rotation: P=-10.019595 Y=24.861629 R=-0.156040 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-32.099 Y=194.285 Z=17.379 Rotation: P=-10.053852 Y=24.897728 R=-0.142674 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-31.463 Y=192.908 Z=17.382 Rotation: P=-10.042117 Y=24.921978 R=-0.156537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-30.859 Y=191.610 Z=17.387 Rotation: P=-10.042464 Y=24.953226 R=-0.143456 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/6_HeadCam/6_Depth.jpg b/RobotData/6_HeadCam/6_Depth.jpg index 0a1cfa64..30eb07ab 100644 --- a/RobotData/6_HeadCam/6_Depth.jpg +++ b/RobotData/6_HeadCam/6_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dba4c9b45d83e13923ab66134681c8e16c4f9c770a8b874cc9da99536211f6b0 -size 55169 +oid sha256:d08a302b0add5b784e9a1052c4ef18cdc94cc0965730448fbb5a0b1c0b82415a +size 1216649 diff --git a/RobotData/6_HeadCam/6_RGB.jpg b/RobotData/6_HeadCam/6_RGB.jpg index 5caa7f17..482898e2 100644 --- a/RobotData/6_HeadCam/6_RGB.jpg +++ b/RobotData/6_HeadCam/6_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3a253485be51241a90e3efe0a943f9a708adf4365543d81a8796d2d5342f621b -size 53820 +oid sha256:9c3b95c8a200c324fac566366bd8172170a02b9e91f896237093d949953c47bc +size 1227148 diff --git a/RobotData/6_HeadCam/HeadCamPos.json b/RobotData/6_HeadCam/HeadCamPos.json index 5cabb8f2..7d35436d 100644 --- a/RobotData/6_HeadCam/HeadCamPos.json +++ b/RobotData/6_HeadCam/HeadCamPos.json @@ -2,435 +2,31 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-73.514 Y=169.657 Z=125.951 Rotation: P=-0.229038 Y=-65.108815 R=0.019686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-72.991 Y=168.295 Z=125.945 Rotation: P=-0.232446 Y=-65.089575 R=-0.026162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-72.205 Y=166.791 Z=125.955 Rotation: P=-0.219315 Y=-65.050374 R=0.008104 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-71.569 Y=165.367 Z=125.947 Rotation: P=-0.232954 Y=-65.029686 R=-0.003639 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-70.959 Y=164.068 Z=125.953 Rotation: P=-0.220074 Y=-64.996765 R=-0.003278 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/7_ArmCam/7_Depth.jpg b/RobotData/7_ArmCam/7_Depth.jpg index 37cc432f..1176b983 100644 --- a/RobotData/7_ArmCam/7_Depth.jpg +++ b/RobotData/7_ArmCam/7_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d30099dace79550f7d66b252419d2f9017bf2522e1217234c39230775ab4122d -size 44480 +oid sha256:61a1815c131a359c32062669b8f912c1008045d4a6c99227ee7f8d91ee8a15e7 +size 872285 diff --git a/RobotData/7_ArmCam/7_RGB.jpg b/RobotData/7_ArmCam/7_RGB.jpg index 6b5b2817..4534a480 100644 --- a/RobotData/7_ArmCam/7_RGB.jpg +++ b/RobotData/7_ArmCam/7_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2822bd397dda035d9bc0ff8106cf5d66fc601e6d340b629ef765f3080d80fc21 -size 44500 +oid sha256:b57feca8a48cf414619b11f0912f573400aafcb6100b863558a9b1da92f4457e +size 869561 diff --git a/RobotData/7_ArmCam/ArmCamPos.json b/RobotData/7_ArmCam/ArmCamPos.json index 56a3fb4e..5fea0521 100644 --- a/RobotData/7_ArmCam/ArmCamPos.json +++ b/RobotData/7_ArmCam/ArmCamPos.json @@ -2,439 +2,35 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-33.407 Y=197.118 Z=17.367 Rotation: P=-10.065453 Y=24.838411 R=-0.152538 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-32.817 Y=195.812 Z=17.399 Rotation: P=-10.019595 Y=24.861629 R=-0.156040 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-32.099 Y=194.285 Z=17.379 Rotation: P=-10.053852 Y=24.897728 R=-0.142674 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-31.463 Y=192.908 Z=17.382 Rotation: P=-10.042117 Y=24.921978 R=-0.156537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-30.859 Y=191.610 Z=17.387 Rotation: P=-10.042464 Y=24.953226 R=-0.143456 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-30.112 Y=190.017 Z=17.373 Rotation: P=-10.061177 Y=24.988284 R=-0.143981 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/7_HeadCam/7_Depth.jpg b/RobotData/7_HeadCam/7_Depth.jpg index 28f12ea3..77bd8bd4 100644 --- a/RobotData/7_HeadCam/7_Depth.jpg +++ b/RobotData/7_HeadCam/7_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69d6c498acbf74efa605d4c5077ad37cb0fbdff39c2f53b7e077d27c3f70a1e6 -size 54672 +oid sha256:9e9fff8362679374a31f9ecc0d6d97db9b52af86cf9b014c01791ff68c2cbed7 +size 1216892 diff --git a/RobotData/7_HeadCam/7_RGB.jpg b/RobotData/7_HeadCam/7_RGB.jpg index 61a0c83c..8018c894 100644 --- a/RobotData/7_HeadCam/7_RGB.jpg +++ b/RobotData/7_HeadCam/7_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6a6dd6715e3e840c7d7dc0517c3ba3a6c1274afe7cf2ff104f436853d2bff6d2 -size 53378 +oid sha256:41f02909fa0d759cc5bd0cac0c631dd25a7ea4cd1d199977c0a67348d81eb050 +size 1226960 diff --git a/RobotData/7_HeadCam/HeadCamPos.json b/RobotData/7_HeadCam/HeadCamPos.json index 6b902c70..17532453 100644 --- a/RobotData/7_HeadCam/HeadCamPos.json +++ b/RobotData/7_HeadCam/HeadCamPos.json @@ -2,439 +2,35 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-73.514 Y=169.657 Z=125.951 Rotation: P=-0.229038 Y=-65.108815 R=0.019686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-72.991 Y=168.295 Z=125.945 Rotation: P=-0.232446 Y=-65.089575 R=-0.026162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-72.205 Y=166.791 Z=125.955 Rotation: P=-0.219315 Y=-65.050374 R=0.008104 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-71.569 Y=165.367 Z=125.947 Rotation: P=-0.232954 Y=-65.029686 R=-0.003639 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-70.959 Y=164.068 Z=125.953 Rotation: P=-0.220074 Y=-64.996765 R=-0.003278 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-70.162 Y=162.464 Z=125.955 Rotation: P=-0.220608 Y=-64.960755 R=0.015431 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/8_ArmCam/8_Depth.jpg b/RobotData/8_ArmCam/8_Depth.jpg index 6583d33e..d2d8592f 100644 --- a/RobotData/8_ArmCam/8_Depth.jpg +++ b/RobotData/8_ArmCam/8_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:399f033337059f25dd6b8fbe313d419a93b3192f850d741d728522a0fed803de -size 44464 +oid sha256:0a138f2bb182742d1371d4abccc40229dadc36650407b985ac3da37035ab938f +size 870012 diff --git a/RobotData/8_ArmCam/8_RGB.jpg b/RobotData/8_ArmCam/8_RGB.jpg index cb07fd55..129263b1 100644 --- a/RobotData/8_ArmCam/8_RGB.jpg +++ b/RobotData/8_ArmCam/8_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e3ee1c2e23ef27b8ebe298e83e859f103b813bdd107f48f1b04c6a059c5373f6 -size 44455 +oid sha256:8c6b39e40fe6d6c3c48759d91dbc9cb8977e608eb385833e79d2c0bb43b320ec +size 869256 diff --git a/RobotData/8_ArmCam/ArmCamPos.json b/RobotData/8_ArmCam/ArmCamPos.json index a04dfa27..464f8228 100644 --- a/RobotData/8_ArmCam/ArmCamPos.json +++ b/RobotData/8_ArmCam/ArmCamPos.json @@ -2,443 +2,39 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-33.407 Y=197.118 Z=17.367 Rotation: P=-10.065453 Y=24.838411 R=-0.152538 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-32.817 Y=195.812 Z=17.399 Rotation: P=-10.019595 Y=24.861629 R=-0.156040 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-32.099 Y=194.285 Z=17.379 Rotation: P=-10.053852 Y=24.897728 R=-0.142674 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-31.463 Y=192.908 Z=17.382 Rotation: P=-10.042117 Y=24.921978 R=-0.156537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-30.859 Y=191.610 Z=17.387 Rotation: P=-10.042464 Y=24.953226 R=-0.143456 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-30.112 Y=190.017 Z=17.373 Rotation: P=-10.061177 Y=24.988284 R=-0.143981 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-29.501 Y=188.679 Z=17.398 Rotation: P=-10.019915 Y=25.010581 R=-0.158788 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/8_HeadCam/8_Depth.jpg b/RobotData/8_HeadCam/8_Depth.jpg index 43be7104..4971ab95 100644 --- a/RobotData/8_HeadCam/8_Depth.jpg +++ b/RobotData/8_HeadCam/8_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fe74a7e1921545f95ec1bc053a1171ed05b680888d56745109654341ffdc05ed -size 54576 +oid sha256:654864612aa798870970357387168797a3fd9dcdbb2115252de02d9d0c52d9dc +size 1224766 diff --git a/RobotData/8_HeadCam/8_RGB.jpg b/RobotData/8_HeadCam/8_RGB.jpg index 4b289229..5bead041 100644 --- a/RobotData/8_HeadCam/8_RGB.jpg +++ b/RobotData/8_HeadCam/8_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:17c2cc1ec99746214349a0b924f4d6f599ae4fb284e446987e8a46b2df2dc73e -size 53314 +oid sha256:99bd6cb41a5b78a5a1516c0341155ce1d5a8cc14c290fe77e46671dcec8d741c +size 1235100 diff --git a/RobotData/8_HeadCam/HeadCamPos.json b/RobotData/8_HeadCam/HeadCamPos.json index fb2d16b3..38b2434b 100644 --- a/RobotData/8_HeadCam/HeadCamPos.json +++ b/RobotData/8_HeadCam/HeadCamPos.json @@ -2,443 +2,39 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-73.514 Y=169.657 Z=125.951 Rotation: P=-0.229038 Y=-65.108815 R=0.019686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-72.991 Y=168.295 Z=125.945 Rotation: P=-0.232446 Y=-65.089575 R=-0.026162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-72.205 Y=166.791 Z=125.955 Rotation: P=-0.219315 Y=-65.050374 R=0.008104 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-71.569 Y=165.367 Z=125.947 Rotation: P=-0.232954 Y=-65.029686 R=-0.003639 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-70.959 Y=164.068 Z=125.953 Rotation: P=-0.220074 Y=-64.996765 R=-0.003278 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-70.162 Y=162.464 Z=125.955 Rotation: P=-0.220608 Y=-64.960755 R=0.015431 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-69.602 Y=161.055 Z=125.944 Rotation: P=-0.235153 Y=-64.943490 R=-0.025834 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/9_ArmCam/9_Depth.jpg b/RobotData/9_ArmCam/9_Depth.jpg index 9c5a773d..b5a5697a 100644 --- a/RobotData/9_ArmCam/9_Depth.jpg +++ b/RobotData/9_ArmCam/9_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8584054bbb04ac0d56de4966a825c382f19cbe59175d239088c3cb91131e33a -size 44294 +oid sha256:3964465de82ecad36123fc2f80a735f59c7a20a0447af0c77b573d88dba32d1b +size 883165 diff --git a/RobotData/9_ArmCam/9_RGB.jpg b/RobotData/9_ArmCam/9_RGB.jpg index b931b4de..82312d5e 100644 --- a/RobotData/9_ArmCam/9_RGB.jpg +++ b/RobotData/9_ArmCam/9_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:75fdc53ee3125baa73e191f87d754dfd4a888d4c2392cbcddf78324864534a97 -size 44319 +oid sha256:a5e8a117bfdd89ce50f5eb6275b1ffe172d6683480fd325ad6e7af77c239610b +size 882439 diff --git a/RobotData/9_ArmCam/ArmCamPos.json b/RobotData/9_ArmCam/ArmCamPos.json index 28340151..a61922ca 100644 --- a/RobotData/9_ArmCam/ArmCamPos.json +++ b/RobotData/9_ArmCam/ArmCamPos.json @@ -2,447 +2,43 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-120.432 Y=354.599 Z=17.375 Rotation: P=-10.056387 Y=71.908310 R=-0.149299 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-152.522 Y=351.505 Z=17.390 Rotation: P=-10.043867 Y=86.759090 R=-0.132771 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-118.948 Y=354.113 Z=17.461 Rotation: P=-9.991099 Y=69.912422 R=-0.098925 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-117.560 Y=332.597 Z=17.390 Rotation: P=-10.036959 Y=30.920800 R=-0.119323 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-111.884 Y=351.165 Z=17.397 Rotation: P=-10.037256 Y=59.462424 R=-0.124911 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-109.315 Y=349.684 Z=17.400 Rotation: P=-10.034667 Y=55.447117 R=-0.124993 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-111.632 Y=321.587 Z=17.382 Rotation: P=-10.051198 Y=26.677803 R=-0.139357 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-104.873 Y=346.511 Z=17.377 Rotation: P=-10.052016 Y=48.111240 R=-0.152740 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-102.174 Y=344.105 Z=17.387 Rotation: P=-10.039550 Y=43.242865 R=-0.161087 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-107.475 Y=313.386 Z=17.395 Rotation: P=-10.025641 Y=26.843099 R=-0.157131 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-99.543 Y=341.311 Z=17.401 Rotation: P=-10.033459 Y=38.074256 R=-0.125093 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-96.181 Y=336.865 Z=17.376 Rotation: P=-10.052411 Y=30.590011 R=-0.157162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-94.999 Y=334.944 Z=17.405 Rotation: P=-10.032859 Y=27.524952 R=-0.117584 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-93.270 Y=331.700 Z=17.384 Rotation: P=-10.057819 Y=23.530973 R=-0.133698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-92.550 Y=330.062 Z=17.372 Rotation: P=-10.056145 Y=23.241054 R=-0.158626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-91.984 Y=328.742 Z=17.393 Rotation: P=-10.034140 Y=23.254007 R=-0.142242 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-91.278 Y=327.127 Z=17.387 Rotation: P=-10.046154 Y=23.274607 R=-0.136819 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-90.642 Y=325.666 Z=17.374 Rotation: P=-10.050179 Y=23.297186 R=-0.164131 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-90.092 Y=324.398 Z=17.388 Rotation: P=-10.044441 Y=23.306786 R=-0.136445 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-89.416 Y=322.852 Z=17.374 Rotation: P=-10.056467 Y=23.327952 R=-0.152239 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-88.770 Y=321.344 Z=17.391 Rotation: P=-10.027040 Y=23.344029 R=-0.165827 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-88.216 Y=320.097 Z=17.375 Rotation: P=-10.058707 Y=23.355428 R=-0.144100 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-87.512 Y=318.474 Z=17.373 Rotation: P=-10.053240 Y=23.374547 R=-0.161252 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-86.867 Y=316.969 Z=17.397 Rotation: P=-10.019899 Y=23.386831 R=-0.161509 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-86.286 Y=315.662 Z=17.374 Rotation: P=-10.058250 Y=23.399560 R=-0.145912 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-85.536 Y=313.939 Z=17.375 Rotation: P=-10.055810 Y=23.416839 R=-0.151275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-84.968 Y=312.617 Z=17.395 Rotation: P=-10.028890 Y=23.426553 R=-0.148328 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-84.374 Y=311.272 Z=17.373 Rotation: P=-10.055805 Y=23.441113 R=-0.155932 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-83.672 Y=309.650 Z=17.382 Rotation: P=-10.039236 Y=23.455001 R=-0.164771 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-83.030 Y=308.172 Z=17.394 Rotation: P=-10.031162 Y=23.465677 R=-0.147073 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-82.303 Y=306.517 Z=17.388 Rotation: P=-10.043292 Y=23.479594 R=-0.138414 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-81.673 Y=305.079 Z=17.375 Rotation: P=-10.052643 Y=23.496669 R=-0.156130 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-81.046 Y=303.621 Z=17.396 Rotation: P=-10.022395 Y=23.507284 R=-0.159384 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-80.282 Y=301.876 Z=17.396 Rotation: P=-10.025605 Y=23.522293 R=-0.152820 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-79.624 Y=300.390 Z=17.381 Rotation: P=-10.054035 Y=23.532648 R=-0.135921 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-78.939 Y=298.828 Z=17.369 Rotation: P=-10.057694 Y=23.550141 R=-0.164698 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-78.310 Y=297.362 Z=17.397 Rotation: P=-10.020555 Y=23.562221 R=-0.159362 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-77.633 Y=295.832 Z=17.389 Rotation: P=-10.043828 Y=23.569631 R=-0.134619 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-76.954 Y=294.292 Z=17.372 Rotation: P=-10.059103 Y=23.587044 R=-0.152919 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-76.388 Y=292.975 Z=17.398 Rotation: P=-10.025112 Y=23.595713 R=-0.147742 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-75.776 Y=291.605 Z=17.371 Rotation: P=-10.060019 Y=23.607694 R=-0.150585 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-75.177 Y=290.209 Z=17.398 Rotation: P=-10.018775 Y=23.620866 R=-0.163050 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-74.425 Y=288.496 Z=17.400 Rotation: P=-10.022008 Y=23.631187 R=-0.149601 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-73.732 Y=286.936 Z=17.386 Rotation: P=-10.046332 Y=23.642147 R=-0.137961 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-73.193 Y=285.690 Z=17.394 Rotation: P=-10.022741 Y=23.659011 R=-0.164672 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-72.435 Y=283.960 Z=17.400 Rotation: P=-10.016745 Y=23.671552 R=-0.159920 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-71.824 Y=282.601 Z=17.377 Rotation: P=-10.056069 Y=23.682516 R=-0.142091 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-71.295 Y=281.371 Z=17.400 Rotation: P=-10.021332 Y=23.693279 R=-0.151042 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-70.533 Y=279.645 Z=17.397 Rotation: P=-10.027475 Y=23.705555 R=-0.144275 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-69.927 Y=278.293 Z=17.367 Rotation: P=-10.062267 Y=23.723928 R=-0.159781 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-69.322 Y=276.887 Z=17.400 Rotation: P=-10.018412 Y=23.732286 R=-0.155212 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-68.573 Y=275.194 Z=17.397 Rotation: P=-10.026783 Y=23.747015 R=-0.146413 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-67.904 Y=273.698 Z=17.376 Rotation: P=-10.056644 Y=23.762480 R=-0.144411 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-67.313 Y=272.333 Z=17.398 Rotation: P=-10.020126 Y=23.773884 R=-0.159929 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-66.559 Y=270.622 Z=17.400 Rotation: P=-10.017203 Y=23.789611 R=-0.159734 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-65.935 Y=269.241 Z=17.375 Rotation: P=-10.058185 Y=23.806077 R=-0.142960 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-65.316 Y=267.818 Z=17.392 Rotation: P=-10.028464 Y=23.818771 R=-0.159797 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-64.526 Y=266.035 Z=17.387 Rotation: P=-10.033273 Y=23.836546 R=-0.162253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-63.909 Y=264.648 Z=17.388 Rotation: P=-10.041925 Y=23.848745 R=-0.141387 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-63.350 Y=263.376 Z=17.392 Rotation: P=-10.027733 Y=23.861295 R=-0.160590 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-62.643 Y=261.773 Z=17.399 Rotation: P=-10.017677 Y=23.879169 R=-0.160341 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-62.006 Y=260.364 Z=17.379 Rotation: P=-10.054824 Y=23.894017 R=-0.140142 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-61.445 Y=259.073 Z=17.400 Rotation: P=-10.016495 Y=23.905129 R=-0.159735 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-60.740 Y=257.496 Z=17.392 Rotation: P=-10.034515 Y=23.923184 R=-0.144464 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-60.082 Y=256.036 Z=17.372 Rotation: P=-10.059965 Y=23.942650 R=-0.147576 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-59.523 Y=254.751 Z=17.397 Rotation: P=-10.023580 Y=23.953469 R=-0.153234 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-58.821 Y=253.193 Z=17.382 Rotation: P=-10.050760 Y=23.972804 R=-0.140493 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-58.173 Y=251.737 Z=17.376 Rotation: P=-10.050951 Y=23.991226 R=-0.157220 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-57.471 Y=250.144 Z=17.395 Rotation: P=-10.023164 Y=24.005915 R=-0.161999 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-56.825 Y=248.709 Z=17.387 Rotation: P=-10.043376 Y=24.024937 R=-0.140516 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-56.243 Y=247.398 Z=17.388 Rotation: P=-10.034092 Y=24.039731 R=-0.159138 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-55.527 Y=245.783 Z=17.399 Rotation: P=-10.017650 Y=24.058722 R=-0.161346 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-54.870 Y=244.337 Z=17.385 Rotation: P=-10.047347 Y=24.077920 R=-0.137395 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-54.260 Y=242.967 Z=17.383 Rotation: P=-10.038928 Y=24.095018 R=-0.160916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-53.691 Y=241.706 Z=17.381 Rotation: P=-10.051677 Y=24.110288 R=-0.141916 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-53.008 Y=240.187 Z=17.370 Rotation: P=-10.060203 Y=24.132932 R=-0.152800 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-52.375 Y=238.744 Z=17.401 Rotation: P=-10.015762 Y=24.150585 R=-0.160860 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-51.634 Y=237.100 Z=17.398 Rotation: P=-10.025223 Y=24.172770 R=-0.148552 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-51.009 Y=235.735 Z=17.370 Rotation: P=-10.060824 Y=24.192591 R=-0.152231 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-50.308 Y=234.162 Z=17.384 Rotation: P=-10.038161 Y=24.210086 R=-0.162060 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-49.703 Y=232.819 Z=17.388 Rotation: P=-10.042513 Y=24.230025 R=-0.138982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-49.117 Y=231.512 Z=17.388 Rotation: P=-10.033679 Y=24.247379 R=-0.159540 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-48.391 Y=229.890 Z=17.401 Rotation: P=-10.014793 Y=24.271001 R=-0.162206 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-47.768 Y=228.542 Z=17.376 Rotation: P=-10.058960 Y=24.294041 R=-0.140689 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-47.061 Y=226.978 Z=17.367 Rotation: P=-10.062222 Y=24.319727 R=-0.158671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-46.414 Y=225.516 Z=17.400 Rotation: P=-10.016059 Y=24.341337 R=-0.160890 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-45.840 Y=224.280 Z=17.370 Rotation: P=-10.061610 Y=24.361983 R=-0.151116 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-45.137 Y=222.711 Z=17.386 Rotation: P=-10.035093 Y=24.381799 R=-0.162171 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-44.514 Y=221.340 Z=17.389 Rotation: P=-10.039454 Y=24.402875 R=-0.142896 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-43.932 Y=220.057 Z=17.385 Rotation: P=-10.038166 Y=24.422400 R=-0.157174 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-43.217 Y=218.469 Z=17.401 Rotation: P=-10.015903 Y=24.448633 R=-0.160815 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-42.603 Y=217.153 Z=17.374 Rotation: P=-10.059789 Y=24.473196 R=-0.143113 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-41.866 Y=215.536 Z=17.366 Rotation: P=-10.063654 Y=24.500883 R=-0.159109 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-41.223 Y=214.090 Z=17.403 Rotation: P=-10.013273 Y=24.522074 R=-0.160727 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-40.638 Y=212.848 Z=17.367 Rotation: P=-10.066204 Y=24.547331 R=-0.150582 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-39.902 Y=211.229 Z=17.372 Rotation: P=-10.054460 Y=24.571479 R=-0.161146 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-39.315 Y=209.935 Z=17.390 Rotation: P=-10.039060 Y=24.595195 R=-0.142193 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-38.751 Y=208.696 Z=17.393 Rotation: P=-10.028165 Y=24.613920 R=-0.156801 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-37.961 Y=206.972 Z=17.393 Rotation: P=-10.026167 Y=24.645854 R=-0.160272 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-37.362 Y=205.688 Z=17.378 Rotation: P=-10.054962 Y=24.672894 R=-0.140945 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-36.754 Y=204.343 Z=17.396 Rotation: P=-10.022931 Y=24.692109 R=-0.158778 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-36.020 Y=202.740 Z=17.403 Rotation: P=-10.013373 Y=24.724997 R=-0.159379 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-35.452 Y=201.539 Z=17.372 Rotation: P=-10.056923 Y=24.748350 R=-0.155659 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-34.752 Y=199.998 Z=17.396 Rotation: P=-10.022933 Y=24.772509 R=-0.158068 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-34.138 Y=198.691 Z=17.378 Rotation: P=-10.056046 Y=24.805481 R=-0.141332 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-33.407 Y=197.118 Z=17.367 Rotation: P=-10.065453 Y=24.838411 R=-0.152538 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-32.817 Y=195.812 Z=17.399 Rotation: P=-10.019595 Y=24.861629 R=-0.156040 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-32.099 Y=194.285 Z=17.379 Rotation: P=-10.053852 Y=24.897728 R=-0.142674 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-31.463 Y=192.908 Z=17.382 Rotation: P=-10.042117 Y=24.921978 R=-0.156537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-30.859 Y=191.610 Z=17.387 Rotation: P=-10.042464 Y=24.953226 R=-0.143456 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-30.112 Y=190.017 Z=17.373 Rotation: P=-10.061177 Y=24.988284 R=-0.143981 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-29.501 Y=188.679 Z=17.398 Rotation: P=-10.019915 Y=25.010581 R=-0.158788 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-28.747 Y=187.060 Z=17.402 Rotation: P=-10.014552 Y=25.050998 R=-0.157645 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-102.470 Y=303.607 Z=17.372 Rotation: P=-10.060256 Y=27.026647 R=-0.147586 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file diff --git a/RobotData/9_HeadCam/9_Depth.jpg b/RobotData/9_HeadCam/9_Depth.jpg index 8fda39b0..38d82937 100644 --- a/RobotData/9_HeadCam/9_Depth.jpg +++ b/RobotData/9_HeadCam/9_Depth.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:de6fdb4499d4a7080deae87ef1d72e2e59df5827018d9edff000a1e94831f3f9 -size 54815 +oid sha256:ce1278adcb88247e9c866cab87e51776415793a5037a5ca1ecdbf9e119c57bf5 +size 1228096 diff --git a/RobotData/9_HeadCam/9_RGB.jpg b/RobotData/9_HeadCam/9_RGB.jpg index 4a11151d..9742fb6c 100644 --- a/RobotData/9_HeadCam/9_RGB.jpg +++ b/RobotData/9_HeadCam/9_RGB.jpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f4927fbf32f756618791a18880071dba1b868a56f0a4b70801f2b081292fe0c -size 53591 +oid sha256:80866fc830f4b93da61de4f890a331d30494600f2797f2217cd14999a7b6ec7c +size 1238328 diff --git a/RobotData/9_HeadCam/HeadCamPos.json b/RobotData/9_HeadCam/HeadCamPos.json index 679d95df..228b7ae1 100644 --- a/RobotData/9_HeadCam/HeadCamPos.json +++ b/RobotData/9_HeadCam/HeadCamPos.json @@ -2,447 +2,43 @@ "transforms": [ { "index": 0, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 1, - "transform": "Translation: X=-127.652 Y=306.515 Z=125.952 Rotation: P=-0.225841 Y=-18.034789 R=0.010608 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-147.206 Y=303.155 Z=125.959 Rotation: P=-0.209554 Y=-3.181931 R=-0.001891 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 2, - "transform": "Translation: X=-128.213 Y=306.262 Z=125.971 Rotation: P=-0.176530 Y=-20.408188 R=-0.053437 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 3, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-154.649 Y=301.111 Z=125.964 Rotation: P=-0.196320 Y=-59.117864 R=-0.008443 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 4, - "transform": "Translation: X=-129.579 Y=305.836 Z=125.962 Rotation: P=-0.201858 Y=-30.842811 R=-0.007207 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 5, - "transform": "Translation: X=-130.116 Y=305.690 Z=125.961 Rotation: P=-0.201944 Y=-34.812104 R=-0.009958 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-150.794 Y=292.765 Z=125.956 Rotation: P=-0.216063 Y=-63.080095 R=0.004738 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 6, - "transform": "Translation: X=-131.035 Y=305.508 Z=125.949 Rotation: P=-0.229193 Y=-42.102604 R=0.007315 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 7, - "transform": "Translation: X=-131.716 Y=305.434 Z=125.949 Rotation: P=-0.237457 Y=-46.947409 R=-0.005224 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-146.609 Y=284.435 Z=125.945 Rotation: P=-0.233480 Y=-62.981283 R=-0.020634 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 8, - "transform": "Translation: X=-132.483 Y=305.490 Z=125.961 Rotation: P=-0.202028 Y=-52.085057 R=-0.011518 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" }, { "index": 9, - "transform": "Translation: X=-133.430 Y=305.591 Z=125.947 Rotation: P=-0.233557 Y=-59.535488 R=0.007363 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 10, - "transform": "Translation: X=-133.923 Y=305.741 Z=125.964 Rotation: P=-0.194624 Y=-62.576436 R=-0.012330 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 11, - "transform": "Translation: X=-133.978 Y=305.127 Z=125.959 Rotation: P=-0.210503 Y=-66.304590 R=0.011671 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 12, - "transform": "Translation: X=-133.342 Y=303.603 Z=125.948 Rotation: P=-0.235060 Y=-66.503631 R=0.009537 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 13, - "transform": "Translation: X=-132.824 Y=302.292 Z=125.953 Rotation: P=-0.218831 Y=-66.500930 R=-0.012345 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 14, - "transform": "Translation: X=-132.096 Y=300.687 Z=125.957 Rotation: P=-0.213542 Y=-66.493358 R=-0.000256 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 15, - "transform": "Translation: X=-131.429 Y=299.176 Z=125.944 Rotation: P=-0.240451 Y=-66.487812 R=0.003712 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 16, - "transform": "Translation: X=-130.907 Y=297.946 Z=125.957 Rotation: P=-0.213168 Y=-66.483092 R=-0.001887 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 17, - "transform": "Translation: X=-130.194 Y=296.375 Z=125.950 Rotation: P=-0.228762 Y=-66.475458 R=0.010126 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 18, - "transform": "Translation: X=-129.587 Y=294.818 Z=125.940 Rotation: P=-0.242045 Y=-66.472859 R=-0.019299 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 19, - "transform": "Translation: X=-128.990 Y=293.624 Z=125.954 Rotation: P=-0.220751 Y=-66.464209 R=0.012461 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 20, - "transform": "Translation: X=-128.279 Y=291.961 Z=125.946 Rotation: P=-0.237621 Y=-66.457871 R=0.006983 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 21, - "transform": "Translation: X=-127.690 Y=290.427 Z=125.942 Rotation: P=-0.237781 Y=-66.454756 R=-0.026321 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 22, - "transform": "Translation: X=-127.048 Y=289.168 Z=125.954 Rotation: P=-0.222529 Y=-66.444409 R=0.012092 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 23, - "transform": "Translation: X=-126.294 Y=287.426 Z=125.951 Rotation: P=-0.227802 Y=-66.436037 R=0.009669 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 24, - "transform": "Translation: X=-125.773 Y=286.085 Z=125.949 Rotation: P=-0.224833 Y=-66.432611 R=-0.017216 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 25, - "transform": "Translation: X=-125.121 Y=284.740 Z=125.949 Rotation: P=-0.232385 Y=-66.423929 R=0.009699 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 26, - "transform": "Translation: X=-124.438 Y=283.085 Z=125.942 Rotation: P=-0.241051 Y=-66.418053 R=-0.006863 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 27, - "transform": "Translation: X=-123.819 Y=281.625 Z=125.950 Rotation: P=-0.223607 Y=-66.409841 R=-0.014876 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 28, - "transform": "Translation: X=-123.073 Y=279.986 Z=125.956 Rotation: P=-0.215107 Y=-66.399231 R=-0.002709 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 29, - "transform": "Translation: X=-122.408 Y=278.516 Z=125.948 Rotation: P=-0.232571 Y=-66.388989 R=0.006620 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 30, - "transform": "Translation: X=-121.829 Y=277.026 Z=125.943 Rotation: P=-0.235717 Y=-66.384455 R=-0.023612 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 31, - "transform": "Translation: X=-121.059 Y=275.285 Z=125.947 Rotation: P=-0.229261 Y=-66.372683 R=-0.020372 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 32, - "transform": "Translation: X=-120.358 Y=273.842 Z=125.958 Rotation: P=-0.212673 Y=-66.361552 R=0.008097 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 33, - "transform": "Translation: X=-119.641 Y=272.226 Z=125.945 Rotation: P=-0.241014 Y=-66.352942 R=0.011721 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 34, - "transform": "Translation: X=-119.076 Y=270.734 Z=125.943 Rotation: P=-0.235698 Y=-66.344066 R=-0.025392 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 35, - "transform": "Translation: X=-118.372 Y=269.257 Z=125.958 Rotation: P=-0.211372 Y=-66.334053 R=-0.002071 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 36, - "transform": "Translation: X=-117.647 Y=267.688 Z=125.951 Rotation: P=-0.229416 Y=-66.322313 R=0.013184 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 37, - "transform": "Translation: X=-117.141 Y=266.349 Z=125.949 Rotation: P=-0.224266 Y=-66.316019 R=-0.020786 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 38, - "transform": "Translation: X=-116.461 Y=264.993 Z=125.952 Rotation: P=-0.227119 Y=-66.305355 R=0.014120 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 39, - "transform": "Translation: X=-115.921 Y=263.538 Z=125.941 Rotation: P=-0.239333 Y=-66.297988 R=-0.027127 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 40, - "transform": "Translation: X=-115.168 Y=261.843 Z=125.948 Rotation: P=-0.226094 Y=-66.287337 R=-0.023868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 41, - "transform": "Translation: X=-114.436 Y=260.312 Z=125.956 Rotation: P=-0.214667 Y=-66.275238 R=0.000476 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 42, - "transform": "Translation: X=-113.913 Y=258.996 Z=125.941 Rotation: P=-0.240937 Y=-66.265623 R=-0.023141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 43, - "transform": "Translation: X=-113.163 Y=257.261 Z=125.942 Rotation: P=-0.236251 Y=-66.254078 R=-0.029123 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 44, - "transform": "Translation: X=-112.492 Y=255.952 Z=125.956 Rotation: P=-0.218747 Y=-66.239930 R=0.010224 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 45, - "transform": "Translation: X=-112.013 Y=254.676 Z=125.947 Rotation: P=-0.227516 Y=-66.233186 R=-0.024515 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 46, - "transform": "Translation: X=-111.239 Y=252.956 Z=125.951 Rotation: P=-0.220860 Y=-66.220869 R=-0.018359 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 47, - "transform": "Translation: X=-110.554 Y=251.594 Z=125.948 Rotation: P=-0.236172 Y=-66.205485 R=0.016415 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 48, - "transform": "Translation: X=-110.025 Y=250.157 Z=125.945 Rotation: P=-0.231620 Y=-66.198560 R=-0.027426 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 49, - "transform": "Translation: X=-109.261 Y=248.475 Z=125.950 Rotation: P=-0.222966 Y=-66.183089 R=-0.019041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 50, - "transform": "Translation: X=-108.534 Y=246.993 Z=125.954 Rotation: P=-0.221031 Y=-66.167302 R=0.010823 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 51, - "transform": "Translation: X=-107.992 Y=245.568 Z=125.943 Rotation: P=-0.236268 Y=-66.160503 R=-0.025705 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 52, - "transform": "Translation: X=-107.236 Y=243.845 Z=125.943 Rotation: P=-0.236073 Y=-66.145839 R=-0.028624 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 53, - "transform": "Translation: X=-106.544 Y=242.510 Z=125.955 Rotation: P=-0.219604 Y=-66.125888 R=0.012374 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 54, - "transform": "Translation: X=-105.960 Y=241.029 Z=125.944 Rotation: P=-0.236149 Y=-66.117426 R=-0.017360 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 55, - "transform": "Translation: X=-105.152 Y=239.234 Z=125.943 Rotation: P=-0.238572 Y=-66.100915 R=-0.012551 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 56, - "transform": "Translation: X=-104.529 Y=237.879 Z=125.954 Rotation: P=-0.218036 Y=-66.087074 R=-0.003868 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 57, - "transform": "Translation: X=-103.976 Y=236.557 Z=125.943 Rotation: P=-0.236930 Y=-66.078426 R=-0.018079 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 58, - "transform": "Translation: X=-103.279 Y=234.935 Z=125.942 Rotation: P=-0.236674 Y=-66.061642 R=-0.028129 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 59, - "transform": "Translation: X=-102.584 Y=233.575 Z=125.956 Rotation: P=-0.216825 Y=-66.042186 R=0.009035 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 60, - "transform": "Translation: X=-102.072 Y=232.216 Z=125.943 Rotation: P=-0.236076 Y=-66.036116 R=-0.029308 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 61, - "transform": "Translation: X=-101.337 Y=230.666 Z=125.952 Rotation: P=-0.221058 Y=-66.016971 R=-0.011266 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 62, - "transform": "Translation: X=-100.624 Y=229.206 Z=125.953 Rotation: P=-0.224149 Y=-65.996955 R=0.014176 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 63, - "transform": "Translation: X=-100.119 Y=227.877 Z=125.946 Rotation: P=-0.229683 Y=-65.988919 R=-0.022207 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 64, - "transform": "Translation: X=-99.369 Y=226.346 Z=125.956 Rotation: P=-0.217165 Y=-65.966638 R=0.004982 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 65, - "transform": "Translation: X=-98.701 Y=224.851 Z=125.947 Rotation: P=-0.233636 Y=-65.950647 R=0.005154 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 66, - "transform": "Translation: X=-98.038 Y=223.219 Z=125.942 Rotation: P=-0.238314 Y=-65.938455 R=-0.022630 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 67, - "transform": "Translation: X=-97.362 Y=221.820 Z=125.955 Rotation: P=-0.217179 Y=-65.915199 R=-0.002399 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 68, - "transform": "Translation: X=-96.776 Y=220.462 Z=125.945 Rotation: P=-0.235508 Y=-65.903693 R=-0.011701 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 69, - "transform": "Translation: X=-96.079 Y=218.818 Z=125.942 Rotation: P=-0.237666 Y=-65.886159 R=-0.028141 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 70, - "transform": "Translation: X=-95.378 Y=217.419 Z=125.957 Rotation: P=-0.214111 Y=-65.861791 R=0.001575 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 71, - "transform": "Translation: X=-94.758 Y=215.993 Z=125.944 Rotation: P=-0.237263 Y=-65.849017 R=-0.006866 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 72, - "transform": "Translation: X=-94.174 Y=214.762 Z=125.955 Rotation: P=-0.218566 Y=-65.831927 R=0.005907 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 73, - "transform": "Translation: X=-93.457 Y=213.215 Z=125.950 Rotation: P=-0.229292 Y=-65.810134 R=0.014418 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 74, - "transform": "Translation: X=-92.888 Y=211.715 Z=125.942 Rotation: P=-0.237187 Y=-65.796069 R=-0.030020 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 75, - "transform": "Translation: X=-92.129 Y=210.082 Z=125.949 Rotation: P=-0.225075 Y=-65.771466 R=-0.020549 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 76, - "transform": "Translation: X=-91.429 Y=208.723 Z=125.951 Rotation: P=-0.228733 Y=-65.750616 R=0.015041 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 77, - "transform": "Translation: X=-90.754 Y=207.105 Z=125.944 Rotation: P=-0.238388 Y=-65.735981 R=-0.007626 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 78, - "transform": "Translation: X=-90.147 Y=205.788 Z=125.955 Rotation: P=-0.215669 Y=-65.711828 R=-0.003253 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 79, - "transform": "Translation: X=-89.554 Y=204.430 Z=125.944 Rotation: P=-0.235903 Y=-65.698087 R=-0.012106 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 80, - "transform": "Translation: X=-88.849 Y=202.773 Z=125.941 Rotation: P=-0.238511 Y=-65.675855 R=-0.030991 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 81, - "transform": "Translation: X=-88.152 Y=201.475 Z=125.956 Rotation: P=-0.217367 Y=-65.647420 R=0.013190 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 82, - "transform": "Translation: X=-87.415 Y=199.868 Z=125.948 Rotation: P=-0.235075 Y=-65.624903 R=0.016434 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 83, - "transform": "Translation: X=-86.837 Y=198.352 Z=125.942 Rotation: P=-0.237216 Y=-65.605371 R=-0.029723 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 84, - "transform": "Translation: X=-86.180 Y=197.151 Z=125.951 Rotation: P=-0.227635 Y=-65.581001 R=0.015828 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 85, - "transform": "Translation: X=-85.506 Y=195.531 Z=125.943 Rotation: P=-0.238496 Y=-65.564475 R=-0.010694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 86, - "transform": "Translation: X=-84.879 Y=194.179 Z=125.953 Rotation: P=-0.219519 Y=-65.539934 R=-0.006315 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 87, - "transform": "Translation: X=-84.280 Y=192.858 Z=125.946 Rotation: P=-0.233577 Y=-65.522519 R=-0.007618 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 88, - "transform": "Translation: X=-83.589 Y=191.230 Z=125.942 Rotation: P=-0.237143 Y=-65.499508 R=-0.029873 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 89, - "transform": "Translation: X=-82.900 Y=189.958 Z=125.955 Rotation: P=-0.219753 Y=-65.470010 R=0.014021 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 90, - "transform": "Translation: X=-82.131 Y=188.299 Z=125.947 Rotation: P=-0.235507 Y=-65.445060 R=0.017871 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 91, - "transform": "Translation: X=-81.565 Y=186.798 Z=125.942 Rotation: P=-0.237054 Y=-65.425915 R=-0.032504 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 92, - "transform": "Translation: X=-80.883 Y=185.594 Z=125.952 Rotation: P=-0.227114 Y=-65.396606 R=0.020427 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 93, - "transform": "Translation: X=-80.150 Y=183.934 Z=125.945 Rotation: P=-0.237504 Y=-65.377311 R=0.008686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 94, - "transform": "Translation: X=-79.591 Y=182.641 Z=125.953 Rotation: P=-0.218827 Y=-65.351149 R=-0.006694 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 95, - "transform": "Translation: X=-79.027 Y=181.358 Z=125.945 Rotation: P=-0.233202 Y=-65.334723 R=-0.017603 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 96, - "transform": "Translation: X=-78.223 Y=179.604 Z=125.944 Rotation: P=-0.236619 Y=-65.304837 R=-0.019598 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 97, - "transform": "Translation: X=-77.575 Y=178.355 Z=125.956 Rotation: P=-0.217613 Y=-65.273371 R=0.009210 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 98, - "transform": "Translation: X=-77.001 Y=176.943 Z=125.944 Rotation: P=-0.235144 Y=-65.258059 R=-0.022834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 99, - "transform": "Translation: X=-76.267 Y=175.309 Z=125.943 Rotation: P=-0.235728 Y=-65.225741 R=-0.032390 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 100, - "transform": "Translation: X=-75.615 Y=174.130 Z=125.948 Rotation: P=-0.232103 Y=-65.199256 R=0.011152 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 0, - "transform": "Translation: X=-74.961 Y=172.542 Z=125.944 Rotation: P=-0.234445 Y=-65.177099 R=-0.022833 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 1, - "transform": "Translation: X=-74.285 Y=171.264 Z=125.956 Rotation: P=-0.217995 Y=-65.140578 R=0.010292 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 2, - "transform": "Translation: X=-73.514 Y=169.657 Z=125.951 Rotation: P=-0.229038 Y=-65.108815 R=0.019686 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 3, - "transform": "Translation: X=-72.991 Y=168.295 Z=125.945 Rotation: P=-0.232446 Y=-65.089575 R=-0.026162 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 4, - "transform": "Translation: X=-72.205 Y=166.791 Z=125.955 Rotation: P=-0.219315 Y=-65.050374 R=0.008104 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 5, - "transform": "Translation: X=-71.569 Y=165.367 Z=125.947 Rotation: P=-0.232954 Y=-65.029686 R=-0.003639 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 6, - "transform": "Translation: X=-70.959 Y=164.068 Z=125.953 Rotation: P=-0.220074 Y=-64.996765 R=-0.003278 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 7, - "transform": "Translation: X=-70.162 Y=162.464 Z=125.955 Rotation: P=-0.220608 Y=-64.960755 R=0.015431 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 8, - "transform": "Translation: X=-69.602 Y=161.055 Z=125.944 Rotation: P=-0.235153 Y=-64.943490 R=-0.025834 Scale: X=1.000 Y=1.000 Z=1.000" - }, - { - "index": 9, - "transform": "Translation: X=-68.838 Y=159.406 Z=125.943 Rotation: P=-0.234024 Y=-64.903797 R=-0.031192 Scale: X=1.000 Y=1.000 Z=1.000" + "transform": "Translation: X=-141.481 Y=274.601 Z=125.953 Rotation: P=-0.224176 Y=-62.846270 R=0.014206 Scale: X=1.000 Y=1.000 Z=1.000" } ] } \ No newline at end of file