1758 lines
149 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<FGenericCrashContext>
<RuntimeProperties>
<CrashVersion>3</CrashVersion>
<ExecutionGuid>FA17B20949263692BA3569A7FF77DCD4</ExecutionGuid>
<CrashGUID>UECC-Windows-0BA40FCC4186AA9685D21A90F87D7F35_0000</CrashGUID>
<IsEnsure>false</IsEnsure>
<IsStall>false</IsStall>
<IsAssert>false</IsAssert>
<CrashType>Crash</CrashType>
<ErrorMessage>Unhandled Exception: EXCEPTION_ACCESS_VIOLATION reading address 0x0000000000000028</ErrorMessage>
<CrashReporterMessage />
<CrashReporterMessage>Attended</CrashReporterMessage>
<ProcessId>37488</ProcessId>
<SecondsSinceStart>7</SecondsSinceStart>
<IsInternalBuild>false</IsInternalBuild>
<IsPerforceBuild>false</IsPerforceBuild>
<IsWithDebugInfo>true</IsWithDebugInfo>
<IsSourceDistribution>false</IsSourceDistribution>
<GameName>UE-Plugin</GameName>
<ExecutableName>UnrealEditor</ExecutableName>
<BuildConfiguration>Development</BuildConfiguration>
<GameSessionID />
<PlatformName>WindowsEditor</PlatformName>
<PlatformFullName>Win64 [Windows 11 (23H2) [10.0.22631.5262] 64b]</PlatformFullName>
<PlatformNameIni>Windows</PlatformNameIni>
<EngineMode>Editor</EngineMode>
<EngineModeEx>Dirty</EngineModeEx>
<DeploymentName />
<EngineVersion>5.4.4-35576357+++UE5+Release-5.4</EngineVersion>
<EngineCompatibleVersion>5.4.4-35576357+++UE5+Release-5.4</EngineCompatibleVersion>
<CommandLine>../../../../Github_Repo/UTB-Plugin/Plugin/Plugin.uproject (null)</CommandLine>
<LanguageLCID>0</LanguageLCID>
<AppDefaultLocale>fr-FR</AppDefaultLocale>
<BuildVersion>++UE5+Release-5.4-CL-35576357</BuildVersion>
<Symbols>**UE5*Release-5.4-CL-35576357-Win64-Development</Symbols>
<IsUERelease>true</IsUERelease>
<IsRequestingExit>false</IsRequestingExit>
<UserName />
<BaseDir>F:/UE_5.4/Engine/Binaries/Win64/</BaseDir>
<RootDir>F:/UE_5.4/</RootDir>
<MachineId>0325C4FA42AD9A97AB8A00A963CF8D51</MachineId>
<LoginId>0325c4fa42ad9a97ab8a00a963cf8d51</LoginId>
<EpicAccountId>fd346bb4ff9849658c06c850bbf3a22c</EpicAccountId>
<SourceContext> 1679 }
1680 }
1681
1682 // This starting size catches 99.97% of printf calls - there are about 700k printf calls per level
1683 #define STARTING_BUFFER_SIZE 512
1684
1685 UE_STRING_CLASS UE_STRING_CLASS::PrintfImpl(const ElementType* Fmt, ...)
1686 {
1687 int32 BufferSize = STARTING_BUFFER_SIZE;
1688 ElementType StartingBuffer[STARTING_BUFFER_SIZE];
1689 ElementType* Buffer = StartingBuffer;
1690 int32 Result = -1;
1691
1692 // First try to print to a stack allocated location
1693 ***** GET_TYPED_VARARGS_RESULT( ElementType, Buffer, BufferSize, BufferSize-1, Fmt, Fmt, Result );
1694
1695 // If that fails, start allocating regular memory
1696 if( Result == -1 )
1697 {
1698 Buffer = nullptr;
1699 while(Result == -1)
1700 {
1701 BufferSize *= 2;
1702 Buffer = (ElementType*) FMemory::Realloc( Buffer, BufferSize * sizeof(ElementType) );
1703 GET_TYPED_VARARGS_RESULT( ElementType, Buffer, BufferSize, BufferSize-1, Fmt, Fmt, Result );
1704 };
1705 }
1706
1707 Buffer[Result] = CHARTEXT(ElementType, &apos;\0&apos;);
1708 </SourceContext>
<UserDescription />
<UserActivityHint>Layout=&quot;LevelEditorViewport&quot; Label=&quot;Viewport 1&quot; Content=SAssetE</UserActivityHint>
<CrashDumpMode>0</CrashDumpMode>
<GameStateName />
<Misc.NumberOfCores>16</Misc.NumberOfCores>
<Misc.NumberOfCoresIncludingHyperthreads>32</Misc.NumberOfCoresIncludingHyperthreads>
<Misc.Is64bitOperatingSystem>1</Misc.Is64bitOperatingSystem>
<Misc.CPUVendor>AuthenticAMD</Misc.CPUVendor>
<Misc.CPUBrand>AMD Ryzen 9 7950X3D 16-Core Processor</Misc.CPUBrand>
<Misc.PrimaryGPUBrand>AMD Radeon RX 9070 XT</Misc.PrimaryGPUBrand>
<Misc.OSVersionMajor>Windows 11 (23H2) [10.0.22631.5262]</Misc.OSVersionMajor>
<Misc.OSVersionMinor />
<Misc.AnticheatProvider />
<MemoryStats.TotalPhysical>33442541568</MemoryStats.TotalPhysical>
<MemoryStats.TotalVirtual>50622410752</MemoryStats.TotalVirtual>
<MemoryStats.PageSize>4096</MemoryStats.PageSize>
<MemoryStats.TotalPhysicalGB>32</MemoryStats.TotalPhysicalGB>
<MemoryStats.AvailablePhysical>0</MemoryStats.AvailablePhysical>
<MemoryStats.AvailableVirtual>0</MemoryStats.AvailableVirtual>
<MemoryStats.UsedPhysical>0</MemoryStats.UsedPhysical>
<MemoryStats.PeakUsedPhysical>0</MemoryStats.PeakUsedPhysical>
<MemoryStats.UsedVirtual>0</MemoryStats.UsedVirtual>
<MemoryStats.PeakUsedVirtual>0</MemoryStats.PeakUsedVirtual>
<MemoryStats.bIsOOM>0</MemoryStats.bIsOOM>
<MemoryStats.OOMAllocationSize>0</MemoryStats.OOMAllocationSize>
<MemoryStats.OOMAllocationAlignment>0</MemoryStats.OOMAllocationAlignment>
<NumMinidumpFramesToIgnore>0</NumMinidumpFramesToIgnore>
<CallStack>ucrtbase
ucrtbase
ucrtbase
ucrtbase
UnrealEditor_Core!FString::PrintfImpl() [D:\build\++UE5\Sync\Engine\Source\Runtime\Core\Private\Containers\String.cpp.inl:1694]
UnrealEditor_ReloadEditor!FReloadEditorModule::PluginButtonClicked() [F:\Github_Repo\UTB-Plugin\Plugin\Plugins\ReloadEditor\Source\ReloadEditor\Private\ReloadEditor.cpp:50]
UnrealEditor_ReloadEditor!TBaseRawMethodDelegateInstance&lt;0,FReloadEditorModule,void __cdecl(void),FDefaultDelegateUserPolicy&gt;::ExecuteIfSafe() [F:\UE_5.4\Engine\Source\Runtime\Core\Public\Delegates\DelegateInstancesImpl.h:534]
UnrealEditor_Slate!FUIAction::Execute() [D:\build\++UE5\Sync\Engine\Source\Runtime\Slate\Public\Framework\Commands\UIAction.h:139]
UnrealEditor_Slate!FUICommandList::ExecuteAction() [D:\build\++UE5\Sync\Engine\Source\Runtime\Slate\Private\Framework\Commands\UICommandList.cpp:117]
UnrealEditor_Slate!SToolBarButtonBlock::OnClicked() [D:\build\++UE5\Sync\Engine\Source\Runtime\Slate\Private\Framework\MultiBox\SToolBarButtonBlock.cpp:446]
UnrealEditor_Slate!V::TBaseSPMethodDelegateInstance::Execute() [D:\build\++UE5\Sync\Engine\Source\Runtime\Core\Public\Delegates\DelegateInstancesImpl.h:281]
UnrealEditor_Slate!SButton::ExecuteOnClick() [D:\build\++UE5\Sync\Engine\Source\Runtime\Slate\Private\Widgets\Input\SButton.cpp:465]
UnrealEditor_Slate!SButton::OnMouseButtonUp() [D:\build\++UE5\Sync\Engine\Source\Runtime\Slate\Private\Widgets\Input\SButton.cpp:390]
UnrealEditor_Slate!TArray&lt;TSharedRef&lt;SWindow,1&gt;,TSizedDefaultAllocator&lt;32&gt; &gt;::RemoveAll&lt;`TArray&lt;TSharedRef&lt;SWindow,1&gt;,TSizedDefaultAllocator&lt;32&gt; &gt;::Remove&apos;::`2&apos;::&lt;lambda_1&gt; &gt;() [D:\build\++UE5\Sync\Engine\Source\Runtime\Slate\Private\Framework\Application\SlateApplication.cpp:442]
UnrealEditor_Slate!FSlateApplication::RoutePointerUpEvent() [D:\build\++UE5\Sync\Engine\Source\Runtime\Slate\Private\Framework\Application\SlateApplication.cpp:5279]
UnrealEditor_Slate!FSlateApplication::ProcessMouseButtonUpEvent() [D:\build\++UE5\Sync\Engine\Source\Runtime\Slate\Private\Framework\Application\SlateApplication.cpp:5857]
UnrealEditor_Slate!FSlateApplication::OnMouseUp() [D:\build\++UE5\Sync\Engine\Source\Runtime\Slate\Private\Framework\Application\SlateApplication.cpp:5813]
UnrealEditor_ApplicationCore!FWindowsApplication::ProcessDeferredMessage() [D:\build\++UE5\Sync\Engine\Source\Runtime\ApplicationCore\Private\Windows\WindowsApplication.cpp:2243]
UnrealEditor_ApplicationCore!FWindowsApplication::DeferMessage() [D:\build\++UE5\Sync\Engine\Source\Runtime\ApplicationCore\Private\Windows\WindowsApplication.cpp:2750]
UnrealEditor_ApplicationCore!FWindowsApplication::ProcessMessage() [D:\build\++UE5\Sync\Engine\Source\Runtime\ApplicationCore\Private\Windows\WindowsApplication.cpp:1919]
UnrealEditor_ApplicationCore!FWindowsApplication::AppWndProc() [D:\build\++UE5\Sync\Engine\Source\Runtime\ApplicationCore\Private\Windows\WindowsApplication.cpp:929]
user32
user32
UnrealEditor_ApplicationCore!FWindowsPlatformApplicationMisc::PumpMessages() [D:\build\++UE5\Sync\Engine\Source\Runtime\ApplicationCore\Private\Windows\WindowsPlatformApplicationMisc.cpp:145]
UnrealEditor!FEngineLoop::Tick() [D:\build\++UE5\Sync\Engine\Source\Runtime\Launch\Private\LaunchEngineLoop.cpp:5850]
UnrealEditor!GuardedMain() [D:\build\++UE5\Sync\Engine\Source\Runtime\Launch\Private\Launch.cpp:180]
UnrealEditor!GuardedMainWrapper() [D:\build\++UE5\Sync\Engine\Source\Runtime\Launch\Private\Windows\LaunchWindows.cpp:118]
UnrealEditor!LaunchWindowsStartup() [D:\build\++UE5\Sync\Engine\Source\Runtime\Launch\Private\Windows\LaunchWindows.cpp:258]
UnrealEditor!WinMain() [D:\build\++UE5\Sync\Engine\Source\Runtime\Launch\Private\Windows\LaunchWindows.cpp:298]
UnrealEditor!__scrt_common_main_seh() [D:\a\_work\1\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl:288]
kernel32
ntdll</CallStack>
<PCallStack>ucrtbase 0x00007ff9f4970000 + 2da90 ucrtbase 0x00007ff9f4970000 + 139db ucrtbase 0x00007ff9f4970000 + 137d0 ucrtbase 0x00007ff9f4970000 + 1350f UnrealEditor-Core 0x00007ff8f50d0000 + 188b3a UnrealEditor-ReloadEditor 0x0000024c2fe10000 + 4208 UnrealEditor-ReloadEditor 0x0000024c2fe10000 + 3b47 UnrealEditor-Slate 0x00007ff8eeb30000 + ed0f5 UnrealEditor-Slate 0x00007ff8eeb30000 + ed271 UnrealEditor-Slate 0x00007ff8eeb30000 + 218ef5 UnrealEditor-Slate 0x00007ff8eeb30000 + 1ec6aa UnrealEditor-Slate 0x00007ff8eeb30000 + 28a05c UnrealEditor-Slate 0x00007ff8eeb30000 + 2a8368 UnrealEditor-Slate 0x00007ff8eeb30000 + 13975 UnrealEditor-Slate 0x00007ff8eeb30000 + 71187 UnrealEditor-Slate 0x00007ff8eeb30000 + 5e8f1 UnrealEditor-Slate 0x00007ff8eeb30000 + 51aa6 UnrealEditor-ApplicationCore 0x00007ff94daf0000 + 3d54f UnrealEditor-ApplicationCore 0x00007ff94daf0000 + 26f16 UnrealEditor-ApplicationCore 0x00007ff94daf0000 + 3ff93 UnrealEditor-ApplicationCore 0x00007ff94daf0000 + 20e51 USER32 0x00007ff9f4cd0000 + 18eb8 USER32 0x00007ff9f4cd0000 + 18771 UnrealEditor-ApplicationCore 0x00007ff94daf0000 + 40a96 UnrealEditor 0x00007ff673da0000 + 780a UnrealEditor 0x00007ff673da0000 + 2e33c UnrealEditor 0x00007ff673da0000 + 2e42a UnrealEditor 0x00007ff673da0000 + 318a4 UnrealEditor 0x00007ff673da0000 + 470c4 UnrealEditor 0x00007ff673da0000 + 4a37a KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</PCallStack>
<PCallStackHash>70B096FD59664EE00AD7E347F942640E612644A9</PCallStackHash>
<Threads>
<Thread>
<CallStack>ucrtbase 0x00007ff9f4970000 + 2da90 ucrtbase 0x00007ff9f4970000 + 139db ucrtbase 0x00007ff9f4970000 + 137d0 ucrtbase 0x00007ff9f4970000 + 1350f UnrealEditor-Core 0x00007ff8f50d0000 + 188b3a UnrealEditor-ReloadEditor 0x0000024c2fe10000 + 4208 UnrealEditor-ReloadEditor 0x0000024c2fe10000 + 3b47 UnrealEditor-Slate 0x00007ff8eeb30000 + ed0f5 UnrealEditor-Slate 0x00007ff8eeb30000 + ed271 UnrealEditor-Slate 0x00007ff8eeb30000 + 218ef5 UnrealEditor-Slate 0x00007ff8eeb30000 + 1ec6aa UnrealEditor-Slate 0x00007ff8eeb30000 + 28a05c UnrealEditor-Slate 0x00007ff8eeb30000 + 2a8368 UnrealEditor-Slate 0x00007ff8eeb30000 + 13975 UnrealEditor-Slate 0x00007ff8eeb30000 + 71187 UnrealEditor-Slate 0x00007ff8eeb30000 + 5e8f1 UnrealEditor-Slate 0x00007ff8eeb30000 + 51aa6 UnrealEditor-ApplicationCore 0x00007ff94daf0000 + 3d54f UnrealEditor-ApplicationCore 0x00007ff94daf0000 + 26f16 UnrealEditor-ApplicationCore 0x00007ff94daf0000 + 3ff93 UnrealEditor-ApplicationCore 0x00007ff94daf0000 + 20e51 USER32 0x00007ff9f4cd0000 + 18eb8 USER32 0x00007ff9f4cd0000 + 18771 UnrealEditor-ApplicationCore 0x00007ff94daf0000 + 40a96 UnrealEditor 0x00007ff673da0000 + 780a UnrealEditor 0x00007ff673da0000 + 2e33c UnrealEditor 0x00007ff673da0000 + 2e42a UnrealEditor 0x00007ff673da0000 + 318a4 UnrealEditor 0x00007ff673da0000 + 470c4 UnrealEditor 0x00007ff673da0000 + 4a37a KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>true</IsCrashed>
<Registers />
<ThreadID>17760</ThreadID>
<ThreadName>GameThread</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a49d4 ntdll 0x00007ff9f6df0000 + 3588e KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>10844</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a49d4 ntdll 0x00007ff9f6df0000 + 3588e KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>35584</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a49d4 ntdll 0x00007ff9f6df0000 + 3588e KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>17152</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0f64 KERNELBASE 0x00007ff9f4160000 + 76df9 UnrealEditor-Core 0x00007ff8f50d0000 + 737c18 UnrealEditor-Core 0x00007ff8f50d0000 + 6bacf5 UnrealEditor-Core 0x00007ff8f50d0000 + 6a9899 UnrealEditor-Core 0x00007ff8f50d0000 + 6bdca9 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37352</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d UnrealEditor-TraceLog 0x00007ff9c19a0000 + 12085 UnrealEditor-TraceLog 0x00007ff9c19a0000 + 1086 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>24096</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34032</ThreadID>
<ThreadName>Foreground Worker #0</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34332</ThreadID>
<ThreadName>Foreground Worker #1</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>14296</ThreadID>
<ThreadName>Background Worker #2</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34148</ThreadID>
<ThreadName>Background Worker #3</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>18720</ThreadID>
<ThreadName>Background Worker #4</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>20232</ThreadID>
<ThreadName>Background Worker #5</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>18184</ThreadID>
<ThreadName>Background Worker #6</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34776</ThreadID>
<ThreadName>Background Worker #7</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>36996</ThreadID>
<ThreadName>Background Worker #8</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37568</ThreadID>
<ThreadName>Background Worker #9</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>18276</ThreadID>
<ThreadName>Background Worker #10</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>27048</ThreadID>
<ThreadName>Background Worker #11</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>18940</ThreadID>
<ThreadName>Background Worker #12</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>4540</ThreadID>
<ThreadName>Background Worker #13</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>35988</ThreadID>
<ThreadName>Background Worker #14</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>15004</ThreadID>
<ThreadName>Background Worker #15</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34104</ThreadID>
<ThreadName>Background Worker #16</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34232</ThreadID>
<ThreadName>Background Worker #17</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>24180</ThreadID>
<ThreadName>Background Worker #18</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>35516</ThreadID>
<ThreadName>Background Worker #19</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>8476</ThreadID>
<ThreadName>Background Worker #20</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37840</ThreadID>
<ThreadName>Background Worker #21</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>36884</ThreadID>
<ThreadName>Background Worker #22</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>32880</ThreadID>
<ThreadName>Background Worker #23</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>31552</ThreadID>
<ThreadName>Background Worker #24</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>13508</ThreadID>
<ThreadName>Background Worker #25</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>36096</ThreadID>
<ThreadName>Background Worker #26</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37176</ThreadID>
<ThreadName>Background Worker #27</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>3288</ThreadID>
<ThreadName>Background Worker #28</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + f8e64 UnrealEditor-Core 0x00007ff8f50d0000 + d67db UnrealEditor-Core 0x00007ff8f50d0000 + 10a2c6 UnrealEditor-Core 0x00007ff8f50d0000 + d23d0 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37160</ThreadID>
<ThreadName>Background Worker #29</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7a34 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37244</ThreadID>
<ThreadName>BackgroundThreadPool #0</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7a34 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37412</ThreadID>
<ThreadName>BackgroundThreadPool #1</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d UnrealEditor-Core 0x00007ff8f50d0000 + 4f3fb5 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>15596</ThreadID>
<ThreadName>FAsyncWriter_Plugin_2</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a49d4 ntdll 0x00007ff9f6df0000 + 3588e KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37372</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d EOSSDK-Win64-Shipping 0x00007ff8d4be0000 + a94e9b EOSSDK-Win64-Shipping 0x00007ff8d4be0000 + a76b97 EOSSDK-Win64-Shipping 0x00007ff8d4be0000 + a76a5c KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37068</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d UnrealEditor-HTTP 0x00007ff8e81a0000 + b7027 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37768</ThreadID>
<ThreadName>HttpManagerThread</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d UnrealEditor-WebSockets 0x00007ff8d4200000 + 7f6a1 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37020</ThreadID>
<ThreadName>LibwebsocketsThread</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-OnlineSubsystem 0x00007ff8d4510000 + e8cc6 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>28852</ThreadID>
<ThreadName>OnlineAsyncTaskThreadNull DefaultInstance(1)</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Media 0x00007ff967190000 + 583c UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>6832</ThreadID>
<ThreadName>FMediaTicker</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a4974 ntdll 0x00007ff9f6df0000 + 33ee5 ntdll 0x00007ff9f6df0000 + 4fedc ntdll 0x00007ff9f6df0000 + 4bfa3 KERNELBASE 0x00007ff9f4160000 + 6f923 UnrealEditor-Core 0x00007ff8f50d0000 + 4398bc UnrealEditor-Core 0x00007ff8f50d0000 + 108359 UnrealEditor-Core 0x00007ff8f50d0000 + 10797c UnrealEditor-Core 0x00007ff8f50d0000 + 4fac30 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>35272</ThreadID>
<ThreadName>OutputDeviceRedirector</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7a34 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37400</ThreadID>
<ThreadName>IOThreadPool #0</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7a34 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>33988</ThreadID>
<ThreadName>IOThreadPool #1</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7a34 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>14692</ThreadID>
<ThreadName>IOThreadPool #2</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7a34 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>3424</ThreadID>
<ThreadName>IOThreadPool #3</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a18d4 KERNELBASE 0x00007ff9f4160000 + 564e9 combase 0x00007ff9f5a90000 + d958d combase 0x00007ff9f5a90000 + d93fa combase 0x00007ff9f5a90000 + d91ef combase 0x00007ff9f5a90000 + d90e9 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>6332</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d MSVCP140 0x00007ff9c0840000 + 125e7 UnrealEditor-RD 0x00007ff8bca90000 + 4cfca UnrealEditor-RD 0x00007ff8bca90000 + 4061f UnrealEditor-RD 0x00007ff8bca90000 + 41403 UnrealEditor-RD 0x00007ff8bca90000 + 4e180 UnrealEditor-RD 0x00007ff8bca90000 + 4e3ec UnrealEditor-RD 0x00007ff8bca90000 + 41e54 UnrealEditor-RD 0x00007ff8bca90000 + 40668 MSVCP140 0x00007ff9c0840000 + 12b09 ntdll 0x00007ff9f6df0000 + 628ca ntdll 0x00007ff9f6df0000 + 35e96 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34824</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a4974 ntdll 0x00007ff9f6df0000 + 697fb KERNELBASE 0x00007ff9f4160000 + 6f979 MSVCP140 0x00007ff9c0840000 + 122d5 UnrealEditor-RD 0x00007ff8bca90000 + 40397 UnrealEditor-RD 0x00007ff8bca90000 + 4061f UnrealEditor-RD 0x00007ff8bca90000 + 41403 UnrealEditor-RD 0x00007ff8bca90000 + 41ae0 UnrealEditor-RD 0x00007ff8bca90000 + 42b0c UnrealEditor-RD 0x00007ff8bca90000 + 41e54 UnrealEditor-RD 0x00007ff8bca90000 + 40668 MSVCP140 0x00007ff9c0840000 + 12b09 ntdll 0x00007ff9f6df0000 + 628ca ntdll 0x00007ff9f6df0000 + 35e96 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>36748</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a4974 ntdll 0x00007ff9f6df0000 + 697fb KERNELBASE 0x00007ff9f4160000 + 6f979 D3D12Core 0x00007ff8d2ef0000 + 255a7d D3D12Core 0x00007ff8d2ef0000 + 249484 D3D12Core 0x00007ff8d2ef0000 + 247ae4 D3D12Core 0x00007ff8d2ef0000 + 2ba7de KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>5100</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a4974 ntdll 0x00007ff9f6df0000 + 697fb KERNELBASE 0x00007ff9f4160000 + 6f979 D3D12Core 0x00007ff8d2ef0000 + 255a7d D3D12Core 0x00007ff8d2ef0000 + 249484 D3D12Core 0x00007ff8d2ef0000 + 247ae4 D3D12Core 0x00007ff8d2ef0000 + 2ba7de KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>32892</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a4974 ntdll 0x00007ff9f6df0000 + 697fb KERNELBASE 0x00007ff9f4160000 + 6f979 D3D12Core 0x00007ff8d2ef0000 + 255a7d D3D12Core 0x00007ff8d2ef0000 + 249484 D3D12Core 0x00007ff8d2ef0000 + 247ae4 D3D12Core 0x00007ff8d2ef0000 + 2ba7de KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>22176</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a4974 ntdll 0x00007ff9f6df0000 + 697fb KERNELBASE 0x00007ff9f4160000 + 6f979 D3D12Core 0x00007ff8d2ef0000 + 255a7d D3D12Core 0x00007ff8d2ef0000 + 249484 D3D12Core 0x00007ff8d2ef0000 + 247ae4 D3D12Core 0x00007ff8d2ef0000 + 2ba7de KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>16004</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-D3D12RHI 0x00007ff8d3690000 + 12ae65 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>18904</ThreadID>
<ThreadName>RHIInterruptThread</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-D3D12RHI 0x00007ff8d3690000 + 12ae65 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>35760</ThreadID>
<ThreadName>RHISubmissionThread</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7a34 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37592</ThreadID>
<ThreadName>DDC IO ThreadPool #0</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7a34 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>16736</ThreadID>
<ThreadName>DDC IO ThreadPool #1</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7a34 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>8832</ThreadID>
<ThreadName>DDC IO ThreadPool #2</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7a34 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>27068</ThreadID>
<ThreadName>DDC IO ThreadPool #3</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0ea4 MSWSOCK 0x00007ff9f3360000 + e38b KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37480</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-DerivedDataCache 0x00007ff8edf90000 + 15f8d7 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34204</ThreadID>
<ThreadName>FileSystemCacheStoreMaintainer</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d UnrealEditor-Core 0x00007ff8f50d0000 + 73f0b2 UnrealEditor-Engine 0x00007ff8ef190000 + 2221420 UnrealEditor-Engine 0x00007ff8ef190000 + 226db43 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37184</ThreadID>
<ThreadName>ShaderCompilingThread</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a18d4 KERNELBASE 0x00007ff9f4160000 + 564e9 KERNELBASE 0x00007ff9f4160000 + 563ee UIAutomationCore 0x00007ff9d4090000 + 6517d UIAutomationCore 0x00007ff9d4090000 + 64cf9 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>28956</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a18d4 KERNELBASE 0x00007ff9f4160000 + 564e9 UnrealEditor-DerivedDataCache 0x00007ff8edf90000 + 327847 UnrealEditor-DerivedDataCache 0x00007ff8edf90000 + 32528d UnrealEditor-DerivedDataCache 0x00007ff8edf90000 + 17b038 UnrealEditor-Core 0x00007ff8f50d0000 + 2d7c93 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>36436</ThreadID>
<ThreadName>HttpConnectionPool</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d UnrealEditor-Core 0x00007ff8f50d0000 + 73f0b2 UnrealEditor-AssetRegistry 0x00007ff8f7be0000 + 8eadb UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>28264</ThreadID>
<ThreadName>FAssetDataGatherer</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d UnrealEditor-Core 0x00007ff8f50d0000 + 73f0b2 UnrealEditor-AssetRegistry 0x00007ff8f7be0000 + 8e903 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>21764</ThreadID>
<ThreadName>FAssetDataDiscovery</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + 3e23d6 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>36964</ThreadID>
<ThreadName>IoDispatcher</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Messaging 0x00007ff8c7540000 + 24d2c UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>36420</ThreadID>
<ThreadName>FMessageBus.DefaultBus.Router</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + fb45f UnrealEditor-Core 0x00007ff8f50d0000 + fbf2e UnrealEditor-RenderCore 0x00007ff8f74e0000 + 22641d UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>28460</ThreadID>
<ThreadName>RHIThread</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-Core 0x00007ff8f50d0000 + fb45f UnrealEditor-Core 0x00007ff8f50d0000 + fbf2e UnrealEditor-RenderCore 0x00007ff8f74e0000 + 22180f UnrealEditor-RenderCore 0x00007ff8f74e0000 + 2264b4 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>5356</ThreadID>
<ThreadName>RenderThread</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d UnrealEditor-Core 0x00007ff8f50d0000 + 73f0b2 UnrealEditor-RenderCore 0x00007ff8f74e0000 + 2265e8 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37200</ThreadID>
<ThreadName>RTHeartBeat 0</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-UdpMessaging 0x0000024c0bb70000 + 68eee UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34680</ThreadID>
<ThreadName>FUdpMessageBeacon</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-UdpMessaging 0x0000024c0bb70000 + 692e6 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>5156</ThreadID>
<ThreadName>FUdpMessageProcessor.Sender</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 MSWSOCK 0x00007ff9f3360000 + 898f MSWSOCK 0x00007ff9f3360000 + 1f74 WS2_32 0x00007ff9f5580000 + 12ad2 UnrealEditor-Sockets 0x00007ff966660000 + 10c8f UnrealEditor-Sockets 0x00007ff966660000 + 1afba UnrealEditor-UdpMessaging 0x0000024c0bb70000 + 772f1 UnrealEditor-UdpMessaging 0x0000024c0bb70000 + 69210 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>16376</ThreadID>
<ThreadName>UdpMessageMulticastReceiver</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 MSWSOCK 0x00007ff9f3360000 + 898f MSWSOCK 0x00007ff9f3360000 + 1f74 WS2_32 0x00007ff9f5580000 + 12ad2 UnrealEditor-Sockets 0x00007ff966660000 + 10c8f UnrealEditor-Sockets 0x00007ff966660000 + 1afba UnrealEditor-UdpMessaging 0x0000024c0bb70000 + 772f1 UnrealEditor-UdpMessaging 0x0000024c0bb70000 + 69210 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34280</ThreadID>
<ThreadName>UdpMessageUnicastReceiver</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d UnrealEditor-Core 0x00007ff8f50d0000 + 73f0b2 UnrealEditor-TcpMessaging 0x0000024c0d170000 + 11ef4 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37304</ThreadID>
<ThreadName>FTcpMessageTransport</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a4974 ntdll 0x00007ff9f6df0000 + 697fb KERNELBASE 0x00007ff9f4160000 + 6f979 MSVCP140 0x00007ff9c0840000 + 122d5 UnrealEditor-RD 0x00007ff8bca90000 + 3722b UnrealEditor-RD 0x00007ff8bca90000 + 35697 ucrtbase 0x00007ff9f4970000 + 29333 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>14144</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 MSWSOCK 0x00007ff9f3360000 + 898f MSWSOCK 0x00007ff9f3360000 + 5c0c WS2_32 0x00007ff9f5580000 + 12417 UnrealEditor-RD 0x00007ff8bca90000 + 52098 UnrealEditor-RD 0x00007ff8bca90000 + 4eec6 UnrealEditor-RD 0x00007ff8bca90000 + 4f2a9 UnrealEditor-RD 0x00007ff8bca90000 + 4f320 UnrealEditor-RD 0x00007ff8bca90000 + 4491e UnrealEditor-RD 0x00007ff8bca90000 + 4e8ef UnrealEditor-RD 0x00007ff8bca90000 + 4f63d UnrealEditor-RD 0x00007ff8bca90000 + 4ccfa UnrealEditor-RD 0x00007ff8bca90000 + 50108 UnrealEditor-RD 0x00007ff8bca90000 + 4c8ad UnrealEditor-RD 0x00007ff8bca90000 + 46167 ucrtbase 0x00007ff9f4970000 + 29333 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34784</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a4974 ntdll 0x00007ff9f6df0000 + 697fb KERNELBASE 0x00007ff9f4160000 + 6f979 MSVCP140 0x00007ff9c0840000 + 122d5 UnrealEditor-RD 0x00007ff8bca90000 + 3722b UnrealEditor-RD 0x00007ff8bca90000 + 35697 ucrtbase 0x00007ff9f4970000 + 29333 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>33260</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d UnrealEditor-Core 0x00007ff8f50d0000 + 73f0b2 UnrealEditor-ContentBrowserFileDataSource 0x00007ff8bcda0000 + 45b12 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>11788</ThreadID>
<ThreadName>FContentBrowserFileDataDiscovery</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d EOSSDK-Win64-Shipping 0x00007ff8d4be0000 + aa78fe EOSSDK-Win64-Shipping 0x00007ff8d4be0000 + a76b97 EOSSDK-Win64-Shipping 0x00007ff8d4be0000 + a76a5c KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>33860</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-UdpMessaging 0x0000024c0bb70000 + 69014 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34588</ThreadID>
<ThreadName>FUdpMessageProcessor</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-ProfilerService 0x0000024c32490000 + 13ba2 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>14660</ThreadID>
<ThreadName>FFileTransferRunnable</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-AudioMixerCore 0x00007ff9bcae0000 + 682b UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>30488</ThreadID>
<ThreadName>AudioMixerNullCallbackThread</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a49d4 ntdll 0x00007ff9f6df0000 + 3588e KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>16972</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a18d4 KERNELBASE 0x00007ff9f4160000 + 564e9 xaudio2_9 0x0000024c3c970000 + 6d25 xaudio2_9 0x0000024c3c970000 + 20a72 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>34880</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a49d4 ntdll 0x00007ff9f6df0000 + 3588e KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>36524</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-AudioMixerCore 0x00007ff9bcae0000 + 6c71 UnrealEditor-AudioMixerCore 0x00007ff9bcae0000 + 6b1f UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>28200</ThreadID>
<ThreadName>AudioMixerRenderThread(1)</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d UnrealEditor-Core 0x00007ff8f50d0000 + 73f0b2 UnrealEditor-AndroidDeviceDetection 0x00007ff8b1d50000 + 129ef UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>2300</ThreadID>
<ThreadName>FAndroidDeviceDetectionRunnable</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a0e04 KERNELBASE 0x00007ff9f4160000 + 3998e UnrealEditor-Core 0x00007ff8f50d0000 + 798531 UnrealEditor-CoreUObject 0x00007ff8f3cd0000 + 36dd62 UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>8796</ThreadID>
<ThreadName>FAsyncPurge</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a18d4 KERNELBASE 0x00007ff9f4160000 + 564e9 KERNELBASE 0x00007ff9f4160000 + 563ee amdihk64 0x00007ff9e5310000 + 6ddc KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>25060</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a1404 ntdll 0x00007ff9f6df0000 + 556b3 KERNELBASE 0x00007ff9f4160000 + 4a06d UnrealEditor-Core 0x00007ff8f50d0000 + 5bd1bc UnrealEditor-Core 0x00007ff8f50d0000 + 73c93d UnrealEditor-Core 0x00007ff8f50d0000 + 7302b7 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37224</ThreadID>
<ThreadName>StallDetectorThread</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a18d4 KERNELBASE 0x00007ff9f4160000 + 564e9 CoreMessaging 0x00007ff9f0050000 + 54b77 CoreMessaging 0x00007ff9f0050000 + 548eb CoreMessaging 0x00007ff9f0050000 + 546c2 CoreMessaging 0x00007ff9f0050000 + 3a196 CoreMessaging 0x00007ff9f0050000 + 3bd75 CoreMessaging 0x00007ff9f0050000 + 3955f CoreMessaging 0x00007ff9f0050000 + 3839b CoreMessaging 0x00007ff9f0050000 + 3081 CoreMessaging 0x00007ff9f0050000 + 2fbf CoreMessaging 0x00007ff9f0050000 + 12166 inputhost 0x00007ff9df860000 + 233c8 inputhost 0x00007ff9df860000 + 36529 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>37296</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
<Thread>
<CallStack>ntdll 0x00007ff9f6df0000 + a18d4 KERNELBASE 0x00007ff9f4160000 + 564e9 KERNELBASE 0x00007ff9f4160000 + 563ee amdxc64 0x00007ff8c9400000 + 4bdf84 amdxc64 0x00007ff8c9400000 + 2e69d6 amdxc64 0x00007ff8c9400000 + 14b4c8 KERNEL32 0x00007ff9f60b0000 + 1259d ntdll 0x00007ff9f6df0000 + 5af58</CallStack>
<IsCrashed>false</IsCrashed>
<Registers />
<ThreadID>10940</ThreadID>
<ThreadName>Unknown</ThreadName>
</Thread>
</Threads>
<TimeOfCrash>638828424690250000</TimeOfCrash>
<bAllowToBeContacted>1</bAllowToBeContacted>
<CPUBrand>AMD Ryzen 9 7950X3D 16-Core Processor</CPUBrand>
<CrashReportClientVersion>1.0</CrashReportClientVersion>
<Modules>F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AIGraph.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-BehaviorTreeEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-GameplayTasksEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-StringTableEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Overlay.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-OverlayEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ClothingSystemRuntimeNv.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ClothingSystemEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AnimationDataController.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-WorldPartitionEditor.dll
F:\UE_5.4\Engine\Plugins\Runtime\AndroidFileServer\Binaries\Win64\UnrealEditor-AndroidFileServer.dll
F:\UE_5.4\Engine\Plugins\Runtime\WindowsMoviePlayer\Binaries\Win64\UnrealEditor-WindowsMoviePlayer.dll
F:\UE_5.4\Engine\Plugins\Media\WebMMedia\Binaries\Win64\UnrealEditor-WebMMedia.dll
F:\UE_5.4\Engine\Plugins\Runtime\WebMMoviePlayer\Binaries\Win64\UnrealEditor-WebMMoviePlayer.dll
F:\UE_5.4\Engine\Plugins\EnhancedInput\Binaries\Win64\UnrealEditor-EnhancedInput.dll
F:\UE_5.4\Engine\Plugins\EnhancedInput\Binaries\Win64\UnrealEditor-InputEditor.dll
F:\UE_5.4\Engine\Plugins\EnhancedInput\Binaries\Win64\UnrealEditor-InputBlueprintNodes.dll
F:\UE_5.4\Engine\Plugins\AI\EnvironmentQueryEditor\Binaries\Win64\UnrealEditor-EnvironmentQueryEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Serialization.dll
F:\UE_5.4\Engine\Plugins\Messaging\UdpMessaging\Binaries\Win64\UnrealEditor-UdpMessaging.dll
F:\UE_5.4\Engine\Plugins\Experimental\StructUtils\Binaries\Win64\UnrealEditor-StructUtils.dll
F:\UE_5.4\Engine\Plugins\Experimental\StructUtils\Binaries\Win64\UnrealEditor-StructUtilsEngine.dll
F:\UE_5.4\Engine\Plugins\Experimental\StructUtils\Binaries\Win64\UnrealEditor-StructUtilsEditor.dll
F:\UE_5.4\Engine\Plugins\Runtime\RigVM\Binaries\Win64\UnrealEditor-RigVM.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-VisualGraphUtils.dll
F:\UE_5.4\Engine\Plugins\Runtime\RigVM\Binaries\Win64\UnrealEditor-RigVMDeveloper.dll
F:\UE_5.4\Engine\Plugins\Animation\ControlRig\Binaries\Win64\UnrealEditor-ControlRig.dll
F:\UE_5.4\Engine\Plugins\Animation\AnimationData\Binaries\Win64\UnrealEditor-AnimationData.dll
F:\UE_5.4\Engine\Plugins\Messaging\TcpMessaging\Binaries\Win64\UnrealEditor-TcpMessaging.dll
F:\UE_5.4\Engine\Plugins\Runtime\RigVM\Binaries\Win64\UnrealEditor-RigVMEditor.dll
F:\UE_5.4\Engine\Plugins\Animation\ControlRig\Binaries\Win64\UnrealEditor-ControlRigDeveloper.dll
F:\UE_5.4\Engine\Plugins\Experimental\FullBodyIK\Binaries\Win64\UnrealEditor-PBIK.dll
F:\UE_5.4\Engine\Plugins\Animation\IKRig\Binaries\Win64\UnrealEditor-IKRig.dll
F:\UE_5.4\Engine\Plugins\Animation\IKRig\Binaries\Win64\UnrealEditor-IKRigDeveloper.dll
F:\UE_5.4\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-TakesCore.dll
F:\UE_5.4\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-TakeMovieScene.dll
F:\UE_5.4\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-TakeTrackRecorders.dll
F:\UE_5.4\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-TakeRecorder.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LocalizationCommandletExecution.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TranslationEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-UndoHistory.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-UndoHistoryEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MainFrame.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-HotReload.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PixelInspectorModule.dll
F:\UE_5.4\Engine\Plugins\Runtime\SignificanceManager\Binaries\Win64\UnrealEditor-SignificanceManager.dll
F:\UE_5.4\Engine\Plugins\Developer\AnimationSharing\Binaries\Win64\UnrealEditor-AnimationSharing.dll
F:\UE_5.4\Engine\Plugins\Developer\PropertyAccessNode\Binaries\Win64\UnrealEditor-PropertyAccessNode.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TraceInsights.dll
F:\UE_5.4\Engine\Plugins\Developer\TraceDataFiltering\Binaries\Win64\UnrealEditor-TraceDataFiltering.dll
F:\UE_5.4\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-Niagara.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SparseVolumeTexture.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SessionFrontend.dll
F:\UE_5.4\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraEditor.dll
F:\UE_5.4\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraAnimNotifies.dll
F:\UE_5.4\Engine\Plugins\FX\NiagaraSimCaching\Binaries\Win64\UnrealEditor-NiagaraSimCaching.dll
F:\UE_5.4\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-CacheTrackRecorder.dll
F:\UE_5.4\Engine\Plugins\FX\NiagaraSimCaching\Binaries\Win64\UnrealEditor-NiagaraSimCachingEditor.dll
F:\UE_5.4\Engine\Plugins\MovieScene\TemplateSequence\Binaries\Win64\UnrealEditor-TemplateSequence.dll
F:\UE_5.4\Engine\Plugins\Cameras\GameplayCameras\Binaries\Win64\UnrealEditor-GameplayCameras.dll
F:\UE_5.4\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeNodes.dll
F:\UE_5.4\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeFactoryNodes.dll
F:\UE_5.4\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-GLTFCore.dll
F:\UE_5.4\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeCommonParser.dll
F:\UE_5.4\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeMessages.dll
F:\UE_5.4\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeFbxParser.dll
F:\UE_5.4\Engine\Plugins\Enterprise\VariantManager\Binaries\Win64\UnrealEditor-VariantManager.dll
F:\UE_5.4\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeDispatcher.dll
F:\UE_5.4\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeImport.dll
F:\UE_5.4\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeCommon.dll
F:\UE_5.4\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangePipelines.dll
F:\UE_5.4\Engine\Plugins\Runtime\CableComponent\Binaries\Win64\UnrealEditor-CableComponent.dll
F:\UE_5.4\Engine\Plugins\Runtime\AudioSynesthesia\Binaries\Win64\UnrealEditor-AudioSynesthesiaCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioAnalyzer.dll
F:\UE_5.4\Engine\Plugins\Runtime\AudioSynesthesia\Binaries\Win64\UnrealEditor-AudioSynesthesia.dll
F:\UE_5.4\Engine\Plugins\Runtime\CustomMeshComponent\Binaries\Win64\UnrealEditor-CustomMeshComponent.dll
F:\UE_5.4\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundGraphCore.dll
F:\UE_5.4\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundFrontend.dll
F:\UE_5.4\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundGenerator.dll
F:\UE_5.4\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundStandardNodes.dll
F:\UE_5.4\Engine\Plugins\Runtime\WaveTable\Binaries\Win64\UnrealEditor-WaveTable.dll
F:\UE_5.4\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundEngineTest.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AdvancedWidgets.dll
F:\UE_5.4\Engine\Plugins\Runtime\MsQuic\Binaries\Win64\UnrealEditor-MsQuicRuntime.dll
F:\UE_5.4\Engine\Plugins\Runtime\ProceduralMeshComponent\Binaries\Win64\UnrealEditor-ProceduralMeshComponent.dll
F:\UE_5.4\Engine\Plugins\Runtime\PropertyAccess\Binaries\Win64\UnrealEditor-PropertyAccessEditor.dll
F:\UE_5.4\Engine\Plugins\Runtime\LocationServicesBPLibrary\Binaries\Win64\UnrealEditor-LocationServicesBPLibrary.dll
F:\UE_5.4\Engine\Plugins\Runtime\SoundFields\Binaries\Win64\UnrealEditor-SoundFields.dll
F:\UE_5.4\Engine\Plugins\Editor\FacialAnimation\Binaries\Win64\UnrealEditor-FacialAnimation.dll
F:\UE_5.4\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor-ImgMediaEngine.dll
F:\Github_Repo\UTB-Plugin\Plugin\Binaries\Win64\UnrealEditor-Plugin.dll
F:\UE_5.4\Engine\Plugins\Experimental\ChaosUserDataPT\Binaries\Win64\UnrealEditor-ChaosUserDataPT.dll
F:\UE_5.4\Engine\Plugins\Experimental\Dataflow\Binaries\Win64\UnrealEditor-DataflowAssetTools.dll
F:\UE_5.4\Engine\Plugins\Experimental\Dataflow\Binaries\Win64\UnrealEditor-DataflowEnginePlugin.dll
F:\UE_5.4\Engine\Plugins\Experimental\Dataflow\Binaries\Win64\UnrealEditor-DataflowNodes.dll
F:\UE_5.4\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor-ModelingComponentsEditorOnly.dll
F:\UE_5.4\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor-ModelingOperators.dll
F:\UE_5.4\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor-MeshModelingTools.dll
F:\UE_5.4\Engine\Plugins\Experimental\MeshModelingToolsetExp\Binaries\Win64\UnrealEditor-MeshModelingToolsExp.dll
F:\UE_5.4\Engine\Plugins\Experimental\Dataflow\Binaries\Win64\UnrealEditor-DataflowEditor.dll
F:\UE_5.4\Engine\Plugins\Experimental\GeometryCollectionPlugin\Binaries\Win64\UnrealEditor-GeometryCollectionEditor.dll
F:\UE_5.4\Engine\Plugins\Experimental\GeometryCollectionPlugin\Binaries\Win64\UnrealEditor-GeometryCollectionTracks.dll
F:\UE_5.4\Engine\Plugins\Experimental\GeometryCollectionPlugin\Binaries\Win64\UnrealEditor-GeometryCollectionSequencer.dll
F:\UE_5.4\Engine\Plugins\Experimental\GeometryCollectionPlugin\Binaries\Win64\UnrealEditor-GeometryCollectionNodes.dll
F:\UE_5.4\Engine\Plugins\Experimental\GeometryFlow\Binaries\Win64\UnrealEditor-GeometryFlowCore.dll
F:\UE_5.4\Engine\Plugins\Experimental\GeometryFlow\Binaries\Win64\UnrealEditor-GeometryFlowMeshProcessing.dll
F:\UE_5.4\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor-ModelingOperatorsEditorOnly.dll
F:\UE_5.4\Engine\Plugins\Experimental\GeometryFlow\Binaries\Win64\UnrealEditor-GeometryFlowMeshProcessingEditor.dll
F:\UE_5.4\Engine\Plugins\Experimental\MeshModelingToolsetExp\Binaries\Win64\UnrealEditor-SkeletalMeshModifiers.dll
F:\UE_5.4\Engine\Plugins\Experimental\MeshModelingToolsetExp\Binaries\Win64\UnrealEditor-MeshModelingToolsEditorOnlyExp.dll
F:\UE_5.4\Engine\Plugins\Experimental\MeshModelingToolsetExp\Binaries\Win64\UnrealEditor-GeometryProcessingAdapters.dll
F:\UE_5.4\Engine\Plugins\Experimental\MeshModelingToolsetExp\Binaries\Win64\UnrealEditor-ModelingEditorUI.dll
F:\UE_5.4\Engine\Plugins\Experimental\ChaosSolverPlugin\Binaries\Win64\UnrealEditor-ChaosSolverEditor.dll
F:\UE_5.4\Engine\Plugins\Experimental\OpenImageDenoise\Binaries\Win64\UnrealEditor-OpenImageDenoise.dll
F:\UE_5.4\Engine\Plugins\Experimental\LocalizableMessage\Binaries\Win64\UnrealEditor-LocalizableMessage.dll
F:\UE_5.4\Engine\Plugins\Experimental\LocalizableMessage\Binaries\Win64\UnrealEditor-LocalizableMessageBlueprint.dll
F:\UE_5.4\Engine\Plugins\Experimental\StructUtils\Binaries\Win64\UnrealEditor-StructUtilsNodes.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AITestSuite.dll
F:\UE_5.4\Engine\Plugins\Experimental\StructUtils\Binaries\Win64\UnrealEditor-StructUtilsTestSuite.dll
F:\UE_5.4\Engine\Plugins\Experimental\ToolPresets\Binaries\Win64\UnrealEditor-ToolPresetAsset.dll
F:\UE_5.4\Engine\Plugins\Experimental\ToolPresets\Binaries\Win64\UnrealEditor-ToolPresetEditor.dll
F:\UE_5.4\Engine\Plugins\Developer\AnimationSharing\Binaries\Win64\UnrealEditor-AnimationSharingEd.dll
F:\UE_5.4\Engine\Plugins\Developer\GitSourceControl\Binaries\Win64\UnrealEditor-GitSourceControl.dll
F:\UE_5.4\Engine\Plugins\Developer\CLionSourceCodeAccess\Binaries\Win64\UnrealEditor-CLionSourceCodeAccess.dll
F:\UE_5.4\Engine\Plugins\Developer\PluginUtils\Binaries\Win64\UnrealEditor-PluginUtils.dll
F:\UE_5.4\Engine\Plugins\Developer\N10XSourceCodeAccess\Binaries\Win64\UnrealEditor-N10XSourceCodeAccess.dll
F:\UE_5.4\Engine\Plugins\Developer\RiderSourceCodeAccess\Binaries\Win64\UnrealEditor-RiderSourceCodeAccess.dll
F:\UE_5.4\Engine\Plugins\Developer\SubversionSourceControl\Binaries\Win64\UnrealEditor-SubversionSourceControl.dll
F:\UE_5.4\Engine\Plugins\Developer\UObjectPlugin\Binaries\Win64\UnrealEditor-UObjectPlugin.dll
F:\UE_5.4\Engine\Plugins\Developer\VisualStudioCodeSourceCodeAccess\Binaries\Win64\UnrealEditor-VisualStudioCodeSourceCodeAccess.dll
F:\UE_5.4\Engine\Plugins\Developer\VisualStudioSourceCodeAccess\Binaries\Win64\UnrealEditor-VisualStudioSourceCodeAccess.dll
F:\UE_5.4\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraBlueprintNodes.dll
F:\UE_5.4\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraEditorWidgets.dll
F:\UE_5.4\Engine\Plugins\Developer\DumpGPUServices\Binaries\Win64\UnrealEditor-DumpGPUServices.dll
F:\UE_5.4\Engine\Plugins\Marketplace\RestartEditor\Binaries\Win64\UnrealEditor-RestartEditor.dll
F:\UE_5.4\Engine\Plugins\Interchange\Editor\Binaries\Win64\UnrealEditor-InterchangeEditor.dll
F:\UE_5.4\Engine\Plugins\Interchange\Editor\Binaries\Win64\UnrealEditor-InterchangeEditorPipelines.dll
F:\UE_5.4\Engine\Plugins\Interchange\Editor\Binaries\Win64\UnrealEditor-InterchangeEditorUtilities.dll
F:\UE_5.4\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-TakeSequencer.dll
F:\UE_5.4\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeExport.dll
F:\UE_5.4\Engine\Plugins\Runtime\ActorLayerUtilities\Binaries\Win64\UnrealEditor-ActorLayerUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Layers.dll
F:\UE_5.4\Engine\Plugins\Runtime\ActorLayerUtilities\Binaries\Win64\UnrealEditor-ActorLayerUtilitiesEditor.dll
F:\UE_5.4\Engine\Plugins\Runtime\AndroidPermission\Binaries\Win64\UnrealEditor-AndroidPermission.dll
F:\UE_5.4\Engine\Plugins\Runtime\AppleImageUtils\Binaries\Win64\UnrealEditor-AppleImageUtils.dll
F:\UE_5.4\Engine\Plugins\Runtime\AppleImageUtils\Binaries\Win64\UnrealEditor-AppleImageUtilsBlueprintSupport.dll
F:\UE_5.4\Engine\Plugins\Runtime\ArchVisCharacter\Binaries\Win64\UnrealEditor-ArchVisCharacter.dll
F:\UE_5.4\Engine\Plugins\Runtime\AssetTags\Binaries\Win64\UnrealEditor-AssetTags.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioCaptureCore.dll
F:\UE_5.4\Engine\Plugins\Runtime\AudioCapture\Binaries\Win64\UnrealEditor-AudioCapture.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioCaptureWasapi.dll
F:\UE_5.4\Engine\Plugins\Runtime\InputDebugging\Binaries\Win64\UnrealEditor-InputDebugging.dll
F:\UE_5.4\Engine\Plugins\Runtime\InputDebugging\Binaries\Win64\UnrealEditor-InputDebuggingEditor.dll
F:\UE_5.4\Engine\Plugins\Runtime\GooglePAD\Binaries\Win64\UnrealEditor-GooglePAD.dll
F:\UE_5.4\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor-MeshModelingToolsEditorOnly.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-VirtualFileCache.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-BuildPatchServices.dll
F:\UE_5.4\Engine\Plugins\Runtime\MobilePatchingUtils\Binaries\Win64\UnrealEditor-MobilePatchingUtils.dll
F:\UE_5.4\Engine\Plugins\Runtime\ProceduralMeshComponent\Binaries\Win64\UnrealEditor-ProceduralMeshComponentEditor.dll
F:\UE_5.4\Engine\Plugins\Runtime\GeometryCache\Binaries\Win64\UnrealEditor-GeometryCache.dll
F:\UE_5.4\Engine\Plugins\Runtime\GeometryCache\Binaries\Win64\UnrealEditor-GeometryCacheEd.dll
F:\UE_5.4\Engine\Plugins\Runtime\GeometryCache\Binaries\Win64\UnrealEditor-GeometryCacheTracks.dll
F:\UE_5.4\Engine\Plugins\Runtime\GeometryCache\Binaries\Win64\UnrealEditor-GeometryCacheSequencer.dll
F:\UE_5.4\Engine\Plugins\Runtime\GeometryCache\Binaries\Win64\UnrealEditor-GeometryCacheStreamer.dll
F:\UE_5.4\Engine\Plugins\Runtime\Synthesis\Binaries\Win64\UnrealEditor-SynthesisEditor.dll
F:\UE_5.4\Engine\Plugins\Compression\OodleNetwork\Binaries\Win64\UnrealEditor-OodleNetworkHandlerComponent.dll
F:\UE_5.4\Engine\Plugins\Editor\ChangelistReview\Binaries\Win64\UnrealEditor-ChangelistReview.dll
F:\UE_5.4\Engine\Plugins\Editor\BlueprintHeaderView\Binaries\Win64\UnrealEditor-BlueprintHeaderView.dll
F:\UE_5.4\Engine\Plugins\Editor\EditorDebugTools\Binaries\Win64\UnrealEditor-EditorDebugTools.dll
F:\UE_5.4\Engine\Plugins\Editor\CryptoKeys\Binaries\Win64\UnrealEditor-CryptoKeysOpenSSL.dll
F:\UE_5.4\Engine\Plugins\Editor\CryptoKeys\Binaries\Win64\UnrealEditor-CryptoKeys.dll
F:\UE_5.4\Engine\Plugins\Editor\CurveEditorTools\Binaries\Win64\UnrealEditor-CurveEditorTools.dll
F:\UE_5.4\Engine\Plugins\Editor\MaterialAnalyzer\Binaries\Win64\UnrealEditor-MaterialAnalyzer.dll
F:\UE_5.4\Engine\Plugins\Editor\MeshLODToolset\Binaries\Win64\UnrealEditor-MeshLODToolset.dll
F:\UE_5.4\Engine\Plugins\Editor\MobileLauncherProfileWizard\Binaries\Win64\UnrealEditor-MobileLauncherProfileWizard.dll
F:\UE_5.4\Engine\Plugins\Editor\PluginBrowser\Binaries\Win64\UnrealEditor-PluginBrowser.dll
F:\UE_5.4\Engine\Plugins\Editor\ModelingToolsEditorMode\Binaries\Win64\UnrealEditor-ModelingToolsEditorMode.dll
F:\UE_5.4\Engine\Plugins\Editor\SpeedTreeImporter\Binaries\Win64\UnrealEditor-SpeedTreeImporter.dll
F:\UE_5.4\Engine\Plugins\Editor\UVEditor\Binaries\Win64\UnrealEditor-UVEditorTools.dll
F:\UE_5.4\Engine\Plugins\Editor\UVEditor\Binaries\Win64\UnrealEditor-UVEditorToolsEditorOnly.dll
F:\UE_5.4\Engine\Plugins\Editor\UVEditor\Binaries\Win64\UnrealEditor-UVEditor.dll
F:\UE_5.4\Engine\Plugins\MovieScene\SequencerScripting\Binaries\Win64\UnrealEditor-SequencerScripting.dll
F:\UE_5.4\Engine\Plugins\MovieScene\SequencerScripting\Binaries\Win64\UnrealEditor-SequencerScriptingEditor.dll
F:\UE_5.4\Engine\Plugins\MovieScene\LevelSequenceEditor\Binaries\Win64\UnrealEditor-LevelSequenceEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AnimationEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AnimationEditorWidgets.dll
F:\UE_5.4\Engine\Plugins\Animation\ControlRig\Binaries\Win64\UnrealEditor-ControlRigEditor.dll
F:\UE_5.4\Engine\Plugins\Editor\SequencerAnimTools\Binaries\Win64\UnrealEditor-SequencerAnimTools.dll
F:\UE_5.4\Engine\Plugins\Editor\WorldPartitionHLODUtilities\Binaries\Win64\UnrealEditor-WorldPartitionHLODUtilities.dll
F:\UE_5.4\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor-ImgMediaFactory.dll
F:\UE_5.4\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor-OpenExrWrapper.dll
F:\UE_5.4\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor-ImgMedia.dll
F:\UE_5.4\Engine\Plugins\Media\MediaCompositing\Binaries\Win64\UnrealEditor-MediaCompositing.dll
F:\UE_5.4\Engine\Plugins\Media\MediaPlate\Binaries\Win64\UnrealEditor-MediaPlate.dll
F:\UE_5.4\Engine\Plugins\Media\MediaCompositing\Binaries\Win64\UnrealEditor-MediaCompositingEditor.dll
F:\UE_5.4\Engine\Plugins\Media\MediaPlayerEditor\Binaries\Win64\UnrealEditor-MediaPlayerEditor.dll
F:\UE_5.4\Engine\Plugins\Media\MediaPlate\Binaries\Win64\UnrealEditor-MediaPlateEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MeshPaint.dll
F:\UE_5.4\Engine\Plugins\2D\Paper2D\Binaries\Win64\UnrealEditor-Paper2DEditor.dll
F:\UE_5.4\Engine\Plugins\2D\Paper2D\Binaries\Win64\UnrealEditor-PaperSpriteSheetImporter.dll
F:\UE_5.4\Engine\Plugins\2D\Paper2D\Binaries\Win64\UnrealEditor-PaperTiledImporter.dll
F:\UE_5.4\Engine\Plugins\Tests\InterchangeTests\Binaries\Win64\UnrealEditor-InterchangeTests.dll
F:\UE_5.4\Engine\Plugins\Tests\InterchangeTests\Binaries\Win64\UnrealEditor-InterchangeTestEditor.dll
F:\UE_5.4\Engine\Plugins\Enterprise\DatasmithContent\Binaries\Win64\UnrealEditor-DatasmithContentEditor.dll
F:\UE_5.4\Engine\Plugins\Enterprise\VariantManagerContent\Binaries\Win64\UnrealEditor-VariantManagerContentEditor.dll
F:\UE_5.4\Engine\Plugins\Importers\AlembicImporter\Binaries\Win64\UnrealEditor-AlembicLibrary.dll
F:\UE_5.4\Engine\Plugins\Importers\AlembicImporter\Binaries\Win64\UnrealEditor-AlembicImporter.dll
F:\UE_5.4\Engine\Plugins\Runtime\Windows\XInputDevice\Binaries\Win64\UnrealEditor-XInputDevice.dll
F:\UE_5.4\Engine\Plugins\Marketplace\Developer\RiderLink\Binaries\Win64\UnrealEditor-RiderGameControl.dll
F:\UE_5.4\Engine\Plugins\Editor\Localization\PortableObjectFileDataSource\Binaries\Win64\UnrealEditor-PortableObjectFileDataSource.dll
F:\UE_5.4\Engine\Plugins\Editor\ContentBrowser\ContentBrowserAssetDataSource\Binaries\Win64\UnrealEditor-ContentBrowserAssetDataSource.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-CollectionManager.dll
F:\UE_5.4\Engine\Plugins\Editor\ContentBrowser\ContentBrowserClassDataSource\Binaries\Win64\UnrealEditor-ContentBrowserClassDataSource.dll
F:\UE_5.4\Engine\Plugins\Experimental\MetaHuman\MetaHumanProjectUtilities\Binaries\Win64\UnrealEditor-MetaHumanProjectUtilities.dll
F:\UE_5.4\Engine\Plugins\Editor\ObjectMixer\ObjectMixer\Binaries\Win64\UnrealEditor-ObjectMixerEditor.dll
F:\UE_5.4\Engine\Plugins\Editor\ObjectMixer\LightMixer\Binaries\Win64\UnrealEditor-LightMixer.dll
F:\Github_Repo\UTB-Plugin\Plugin\Plugins\ReloadEditor\Binaries\Win64\UnrealEditor-ReloadEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-CEF3Utils.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-WebBrowser.dll
F:\UE_5.4\Engine\Plugins\Bridge\Binaries\Win64\UnrealEditor-MegascansPlugin.dll
F:\UE_5.4\Engine\Plugins\Bridge\Binaries\Win64\UnrealEditor-Bridge.dll
F:\UE_5.4\Engine\Plugins\CmdLinkServer\Binaries\Win64\UnrealEditor-CmdLinkServer.dll
F:\UE_5.4\Engine\Plugins\Fab\Binaries\Win64\UnrealEditor-Fab.dll
F:\UE_5.4\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-TakeRecorderSources.dll
F:\UE_5.4\Engine\Plugins\Runtime\AudioSynesthesia\Binaries\Win64\UnrealEditor-AudioSynesthesiaEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ProfileVisualizer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ProfilerMessages.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ProfilerService.dll
F:\UE_5.4\Engine\Binaries\Win64\oo2tex_win64_2.9.11.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LevelInstanceEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MessagingRpc.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PortalRpc.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PortalServices.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LauncherPlatform.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioMixerXAudio2.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AdpcmAudioDecoder.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-BinkAudioDecoder.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-RadAudioDecoder.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\Windows\XAudio2_9\x64\xaudio2_9redist.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-StreamingPauseRendering.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Documentation.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SourceControlWindowExtender.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-StructViewer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AnimationBlueprintEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PackagesDialog.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AutomationWindow.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DeviceManager.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ProfilerClient.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ProjectLauncher.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-WindowsPlatformEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ViewportSnapping.dll
F:\UE_5.4\Engine\Plugins\Experimental\CharacterAI\Binaries\Win64\UnrealEditor-CharacterAI.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\Python3\Win64\python3.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor.exe
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LandscapeEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-HierarchicalLODOutliner.dll
F:\UE_5.4\Engine\Plugins\Runtime\AndroidDeviceProfileSelector\Binaries\Win64\UnrealEditor-AndroidDeviceProfileSelector.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SequenceRecorderSections.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AutomationWorker.dll
F:\UE_5.4\Engine\Plugins\Marketplace\Developer\RiderLink\Binaries\Win64\UnrealEditor-RiderLC.dll
F:\UE_5.4\Engine\Plugins\Marketplace\Developer\RiderLink\Binaries\Win64\UnrealEditor-RiderShaderInfo.dll
F:\UE_5.4\Engine\Plugins\MovieScene\TemplateSequence\Binaries\Win64\UnrealEditor-TemplateSequenceEditor.dll
F:\UE_5.4\Engine\Plugins\Media\WmfMedia\Binaries\Win64\UnrealEditor-WmfMediaEditor.dll
F:\UE_5.4\Engine\Plugins\2D\Paper2D\Binaries\Win64\UnrealEditor-SmartSnapping.dll
F:\UE_5.4\Engine\Plugins\Media\WebMMedia\Binaries\Win64\UnrealEditor-WebMMediaFactory.dll
F:\UE_5.4\Engine\Plugins\Media\WebMMedia\Binaries\Win64\UnrealEditor-WebMMediaEditor.dll
F:\UE_5.4\Engine\Plugins\MovieScene\ActorSequence\Binaries\Win64\UnrealEditor-ActorSequenceEditor.dll
F:\UE_5.4\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor-ImgMediaEditor.dll
F:\UE_5.4\Engine\Plugins\Media\AvfMedia\Binaries\Win64\UnrealEditor-AvfMediaFactory.dll
F:\UE_5.4\Engine\Plugins\Media\AvfMedia\Binaries\Win64\UnrealEditor-AvfMediaEditor.dll
F:\UE_5.4\Engine\Plugins\Media\AndroidMedia\Binaries\Win64\UnrealEditor-AndroidMediaFactory.dll
F:\UE_5.4\Engine\Plugins\Media\AndroidMedia\Binaries\Win64\UnrealEditor-AndroidMediaEditor.dll
F:\UE_5.4\Engine\Plugins\Editor\GeometryMode\Binaries\Win64\UnrealEditor-TextureAlignMode.dll
F:\UE_5.4\Engine\Plugins\Editor\GeometryMode\Binaries\Win64\UnrealEditor-BspMode.dll
F:\UE_5.4\Engine\Plugins\Editor\GeometryMode\Binaries\Win64\UnrealEditor-GeometryMode.dll
F:\UE_5.4\Engine\Plugins\Editor\EngineAssetDefinitions\Binaries\Win64\UnrealEditor-EngineAssetDefinitions.dll
F:\UE_5.4\Engine\Plugins\Runtime\WaveTable\Binaries\Win64\UnrealEditor-WaveTableEditor.dll
F:\UE_5.4\Engine\Plugins\Runtime\ResonanceAudio\Binaries\Win64\UnrealEditor-ResonanceAudioEditor.dll
F:\UE_5.4\Engine\Plugins\Runtime\GooglePAD\Binaries\Win64\UnrealEditor-GooglePADEditor.dll
F:\UE_5.4\Engine\Plugins\Runtime\AudioCapture\Binaries\Win64\UnrealEditor-AudioCaptureEditor.dll
F:\UE_5.4\Engine\Plugins\Runtime\AndroidFileServer\Binaries\Win64\UnrealEditor-AndroidFileServerEditor.dll
F:\UE_5.4\Engine\Plugins\Cameras\CameraShakePreviewer\Binaries\Win64\UnrealEditor-CameraShakePreviewer.dll
F:\UE_5.4\Engine\Plugins\Cameras\GameplayCameras\Binaries\Win64\UnrealEditor-GameplayCamerasEditor.dll
F:\UE_5.4\Engine\Plugins\Animation\IKRig\Binaries\Win64\UnrealEditor-IKRigEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SessionServices.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SessionMessages.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PlacementMode.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ClothPainter.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LogVisualizer.dll
F:\UE_5.4\Engine\Binaries\Win64\IOS\UnrealEditor-IOSPlatformEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\Android\UnrealEditor-AndroidDeviceDetection.dll
F:\UE_5.4\Engine\Binaries\Win64\Android\UnrealEditor-AndroidPlatformEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MacPlatformEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\IOS\UnrealEditor-IOSRuntimeSettings.dll
F:\UE_5.4\Engine\Binaries\Win64\Android\UnrealEditor-AndroidRuntimeSettings.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-UniversalObjectLocatorEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-RenderResourceViewer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-GameplayDebuggerEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AnimationSettings.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-VirtualizationEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-CSVtoSVG.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-InputBindingEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MergeActors.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LocalizationService.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LocalizationDashboard.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DeviceProfileEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ProjectTargetPlatformEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ProjectSettingsViewer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-EditorSettingsViewer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SettingsEditor.dll
F:\UE_5.4\Engine\Plugins\Experimental\ChaosEditor\Binaries\Win64\UnrealEditor-FractureEditor.dll
F:\UE_5.4\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor-ModelingComponents.dll
F:\UE_5.4\Engine\Plugins\Experimental\CharacterFXEditor\BaseCharacterFXEditor\Binaries\Win64\UnrealEditor-BaseCharacterFXEditor.dll
F:\UE_5.4\Engine\Plugins\Experimental\Fracture\Binaries\Win64\UnrealEditor-FractureEngine.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MeshConversionEngineTypes.dll
F:\UE_5.4\Engine\Plugins\Experimental\PlanarCutPlugin\Binaries\Win64\UnrealEditor-PlanarCut.dll
F:\UE_5.4\Engine\Plugins\Editor\EditorScriptingUtilities\Binaries\Win64\UnrealEditor-EditorScriptingUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-StaticMeshEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SkeletalMeshEditor.dll
F:\UE_5.4\Engine\Plugins\Experimental\ChaosNiagara\Binaries\Win64\UnrealEditor-ChaosNiagara.dll
F:\UE_5.4\Engine\Plugins\Experimental\AutomationUtils\Binaries\Win64\UnrealEditor-AutomationUtilsEditor.dll
F:\UE_5.4\Engine\Plugins\Experimental\AutomationUtils\Binaries\Win64\UnrealEditor-AutomationUtils.dll
F:\UE_5.4\Engine\Plugins\Experimental\BackChannel\Binaries\Win64\UnrealEditor-BackChannel.dll
F:\UE_5.4\Engine\Plugins\Animation\ControlRigSpline\Binaries\Win64\UnrealEditor-ControlRigSpline.dll
F:\UE_5.4\Engine\Plugins\Animation\AnimationModifierLibrary\Binaries\Win64\UnrealEditor-AnimationModifierLibrary.dll
F:\UE_5.4\Engine\Plugins\Animation\BlendSpaceMotionAnalysis\Binaries\Win64\UnrealEditor-BlendSpaceMotionAnalysis.dll
F:\UE_5.4\Engine\Plugins\Animation\ACLPlugin\Binaries\Win64\UnrealEditor-ACLPluginEditor.dll
F:\UE_5.4\Engine\Plugins\TraceUtilities\Binaries\Win64\UnrealEditor-EditorTraceUtilities.dll
F:\UE_5.4\Engine\Plugins\TraceUtilities\Binaries\Win64\UnrealEditor-TraceUtilities.dll
F:\UE_5.4\Engine\Plugins\WorldMetrics\Binaries\Win64\UnrealEditor-CsvMetrics.dll
F:\UE_5.4\Engine\Plugins\WorldMetrics\Binaries\Win64\UnrealEditor-WorldMetricsTest.dll
F:\UE_5.4\Engine\Plugins\WorldMetrics\Binaries\Win64\UnrealEditor-WorldMetricsCore.dll
F:\UE_5.4\Engine\Plugins\RenderGraphInsights\Binaries\Win64\UnrealEditor-RenderGraphInsights.dll
F:\UE_5.4\Engine\Plugins\MeshPainting\Binaries\Win64\UnrealEditor-MeshPaintEditorMode.dll
F:\UE_5.4\Engine\Plugins\MeshPainting\Binaries\Win64\UnrealEditor-MeshPaintingToolset.dll
F:\UE_5.4\Engine\Plugins\ChaosVD\Binaries\Win64\UnrealEditor-ChaosVD.dll
F:\UE_5.4\Engine\Plugins\Runtime\GeometryProcessing\Binaries\Win64\UnrealEditor-DynamicMesh.dll
F:\UE_5.4\Engine\Plugins\Runtime\GeometryProcessing\Binaries\Win64\UnrealEditor-GeometryAlgorithms.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-GeometryFramework.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-OutputLog.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ChaosVDData.dll
F:\UE_5.4\Engine\Plugins\ChaosCloth\Binaries\Win64\UnrealEditor-ChaosClothEditor.dll
F:\UE_5.4\Engine\Plugins\Marketplace\Developer\RiderLink\Binaries\Win64\UnrealEditor-RiderDebuggerSupport.dll
F:\UE_5.4\Engine\Plugins\Marketplace\Developer\RiderLink\Binaries\Win64\UnrealEditor-RiderLogging.dll
F:\UE_5.4\Engine\Plugins\Marketplace\Developer\RiderLink\Binaries\Win64\UnrealEditor-RiderBlueprint.dll
F:\UE_5.4\Engine\Plugins\Marketplace\Developer\RiderLink\Binaries\Win64\UnrealEditor-RiderLink.dll
F:\UE_5.4\Engine\Plugins\Marketplace\Developer\RiderLink\Binaries\Win64\UnrealEditor-RD.dll
F:\UE_5.4\Engine\Plugins\Experimental\PythonScriptPlugin\Binaries\Win64\UnrealEditor-PythonScriptPlugin.dll
F:\UE_5.4\Engine\Plugins\Editor\ContentBrowser\ContentBrowserFileDataSource\Binaries\Win64\UnrealEditor-ContentBrowserFileDataSource.dll
F:\UE_5.4\Engine\Plugins\Experimental\FullBodyIK\Binaries\Win64\UnrealEditor-FullBodyIK.dll
F:\UE_5.4\Engine\Plugins\Experimental\ChaosCaching\Binaries\Win64\UnrealEditor-ChaosCachingEditor.dll
F:\UE_5.4\Engine\Plugins\2D\Paper2D\Binaries\Win64\UnrealEditor-Paper2D.dll
F:\UE_5.4\Engine\Plugins\MovieScene\ActorSequence\Binaries\Win64\UnrealEditor-ActorSequence.dll
F:\UE_5.4\Engine\Plugins\Editor\FacialAnimation\Binaries\Win64\UnrealEditor-FacialAnimationEditor.dll
F:\UE_5.4\Engine\Plugins\Editor\GameplayTagsEditor\Binaries\Win64\UnrealEditor-GameplayTagsEditor.dll
F:\UE_5.4\Engine\Plugins\Editor\DataValidation\Binaries\Win64\UnrealEditor-DataValidation.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Blutility.dll
F:\UE_5.4\Engine\Plugins\Editor\AssetManagerEditor\Binaries\Win64\UnrealEditor-AssetManagerEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TreeMap.dll
F:\UE_5.4\Engine\Plugins\Runtime\Synthesis\Binaries\Win64\UnrealEditor-Synthesis.dll
F:\UE_5.4\Engine\Plugins\Runtime\ResonanceAudio\Binaries\Win64\UnrealEditor-ResonanceAudio.dll
F:\UE_5.4\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundEditor.dll
F:\UE_5.4\Engine\Plugins\Runtime\AudioWidgets\Binaries\Win64\UnrealEditor-AudioWidgets.dll
F:\UE_5.4\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundEngine.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-FunctionalTesting.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AutomationController.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AutomationMessages.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AutomationTest.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-WorkspaceMenuStructure.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-CollisionAnalyzer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ScriptableEditorWidgets.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-UMGEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SlateReflector.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LandscapeEditorUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MRMesh.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Messaging.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SourceCodeAccess.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LiveCoding.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-NaniteBuilder.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-NaniteUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MeshBoneReduction.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Persona.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-GeometryProcessingInterfaces.dll
F:\UE_5.4\Engine\Plugins\Experimental\SkeletalReduction\Binaries\Win64\UnrealEditor-SkeletalMeshReduction.dll
F:\UE_5.4\Engine\Plugins\Editor\ProxyLODPlugin\Binaries\Win64\UnrealEditor-ProxyLODMeshReduction.dll
F:\UE_5.4\Engine\Binaries\Win64\tbb.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-QuadricMeshReduction.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MeshReductionInterface.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MeshMergeUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MeshUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PinnedCommandList.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TargetDeviceServices.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MetalShaderFormat.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-NullInstallBundleManager.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\ShaderConductor\Win64\ShaderConductor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-VulkanShaderFormat.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ShaderFormatOpenGL.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\ShaderConductor\Win64\dxcompiler.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\ShaderConductor\Win64\dxil.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ShaderFormatD3D.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ShaderFormatVectorVM.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-VectorVM.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ShaderCompilerCommon.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-FileUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ShaderPreprocessor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioFormatRad.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioFormatBink.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioFormatADPCM.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\Vorbis\Win64\VS2015\libvorbis_64.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\Ogg\Win64\VS2015\libogg_64.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioFormatOgg.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioFormatOpus.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-OpusAudioDecoder.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-VorbisAudioDecoder.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-WindowsTargetPlatform.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-CookedEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MacTargetPlatform.dll
F:\UE_5.4\Engine\Binaries\Win64\LinuxArm64\UnrealEditor-LinuxArm64TargetPlatform.dll
F:\UE_5.4\Engine\Binaries\Win64\Linux\UnrealEditor-LinuxTargetPlatform.dll
F:\UE_5.4\Engine\Binaries\Win64\IOS\UnrealEditor-IOSTargetPlatform.dll
F:\UE_5.4\Engine\Binaries\Win64\Android\UnrealEditor-AndroidTargetPlatformControls.dll
F:\UE_5.4\Engine\Binaries\Win64\Android\UnrealEditor-AndroidTargetPlatformSettings.dll
F:\UE_5.4\Engine\Binaries\Win64\Android\UnrealEditor-AndroidTargetPlatform.dll
F:\UE_5.4\Engine\Binaries\Win64\oo2tex_win64_2.9.5.dll
F:\UE_5.4\Engine\Binaries\Win64\oo2tex_win64_2.9.12.dll
F:\UE_5.4\Engine\Plugins\Developer\TextureFormatOodle\Binaries\Win64\UnrealEditor-TextureFormatOodle.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TextureFormatUncompressed.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TextureFormatIntelISPCTexComp.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TextureFormatETC2.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TextureFormatDXT.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TextureFormatASTC.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TextureBuild.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TextureFormat.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TurnkeySupport.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LauncherServices.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TargetPlatform.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Settings.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-WindowsPlatformFeatures.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-GameplayMediaEncoder.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AVEncoder.dll
F:\UE_5.4\Engine\Binaries\Win64\D3D12\D3D12Core.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\NVIDIA\NVaftermath\Win64\GFSDK_Aftermath_Lib.x64.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-D3D12RHI.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-RHICore.dll
F:\UE_5.4\Engine\Plugins\Portal\LauncherChunkInstaller\Binaries\Win64\UnrealEditor-LauncherChunkInstaller.dll
F:\UE_5.4\Engine\Plugins\Experimental\StudioTelemetry\Binaries\Win64\UnrealEditor-StudioTelemetry.dll
F:\UE_5.4\Engine\Plugins\Experimental\StudioTelemetry\Binaries\Win64\UnrealEditor-AnalyticsHorde.dll
F:\UE_5.4\Engine\Plugins\Experimental\StudioTelemetry\Binaries\Win64\UnrealEditor-AnalyticsLog.dll
F:\UE_5.4\Engine\Plugins\Media\WmfMedia\Binaries\Win64\UnrealEditor-WmfMedia.dll
F:\UE_5.4\Engine\Plugins\Media\WmfMedia\Binaries\Win64\UnrealEditor-WmfMediaFactory.dll
F:\UE_5.4\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor-ExrReaderGpu.dll
F:\UE_5.4\Engine\Plugins\Online\OnlineSubsystemUtils\Binaries\Win64\UnrealEditor-OnlineBlueprintSupport.dll
F:\UE_5.4\Engine\Plugins\Online\OnlineSubsystemNull\Binaries\Win64\UnrealEditor-OnlineSubsystemNull.dll
F:\UE_5.4\Engine\Plugins\Online\OnlineSubsystemUtils\Binaries\Win64\UnrealEditor-OnlineSubsystemUtils.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Voice.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-XMPP.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-WebSockets.dll
F:\UE_5.4\Engine\Plugins\Online\OnlineSubsystem\Binaries\Win64\UnrealEditor-OnlineSubsystem.dll
F:\UE_5.4\Engine\Plugins\Online\OnlineServices\Binaries\Win64\UnrealEditor-OnlineServicesCommonEngineUtils.dll
F:\UE_5.4\Engine\Plugins\Online\OnlineServices\Binaries\Win64\UnrealEditor-OnlineServicesCommon.dll
F:\UE_5.4\Engine\Plugins\Online\OnlineBase\Binaries\Win64\UnrealEditor-OnlineBase.dll
F:\UE_5.4\Engine\Plugins\Online\OnlineServices\Binaries\Win64\UnrealEditor-OnlineServicesInterface.dll
F:\UE_5.4\Engine\Binaries\Win64\EOSSDK-Win64-Shipping.dll
F:\UE_5.4\Engine\Plugins\Online\EOSShared\Binaries\Win64\UnrealEditor-EOSShared.dll
F:\UE_5.4\Engine\Plugins\Runtime\ChunkDownloader\Binaries\Win64\UnrealEditor-ChunkDownloader.dll
F:\UE_5.4\Engine\Plugins\Enterprise\GLTFExporter\Binaries\Win64\UnrealEditor-GLTFExporter.dll
F:\UE_5.4\Engine\Plugins\Enterprise\DatasmithContent\Binaries\Win64\UnrealEditor-DatasmithContent.dll
F:\UE_5.4\Engine\Plugins\Enterprise\VariantManagerContent\Binaries\Win64\UnrealEditor-VariantManagerContent.dll
F:\UE_5.4\Engine\Plugins\Developer\RenderDocPlugin\Binaries\Win64\UnrealEditor-RenderDocPlugin.dll
F:\UE_5.4\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraShader.dll
F:\UE_5.4\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraVertexFactories.dll
F:\UE_5.4\Engine\Plugins\Animation\ACLPlugin\Binaries\Win64\UnrealEditor-ACLPlugin.dll
F:\UE_5.4\Engine\Plugins\ChaosCloth\Binaries\Win64\UnrealEditor-ChaosCloth.dll
F:\UE_5.4\Engine\Plugins\Experimental\ChaosCaching\Binaries\Win64\UnrealEditor-ChaosCaching.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\Python3\Win64\python311.dll
F:\UE_5.4\Engine\Plugins\Experimental\PlatformCrypto\Binaries\Win64\UnrealEditor-PlatformCryptoOpenSSL.dll
F:\UE_5.4\Engine\Plugins\Developer\PlasticSourceControl\Binaries\Win64\UnrealEditor-PlasticSourceControl.dll
F:\UE_5.4\Engine\Plugins\Developer\PerforceSourceControl\Binaries\Win64\UnrealEditor-PerforceSourceControl.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\DbgHelp\dbghelp.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AnimationModifiers.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\libsndfile\Win64\libsndfile-1.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MessageLog.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-NetworkFile.dll
F:\UE_5.4\Engine\Plugins\Developer\PixWinPlugin\Binaries\Win64\UnrealEditor-PixWinPlugin.dll
F:\UE_5.4\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraCore.dll
F:\UE_5.4\Engine\Plugins\Experimental\PythonScriptPlugin\Binaries\Win64\UnrealEditor-PythonScriptPluginPreload.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Virtualization.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-StreamingFile.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-StorageServerClient.dll
F:\UE_5.4\Engine\Plugins\XGEController\Binaries\Win64\UnrealEditor-XGEController.dll
F:\UE_5.4\Engine\Plugins\FastBuildController\Binaries\Win64\UnrealEditor-FastBuildController.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SequenceRecorder.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LiveLinkInterface.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DataflowCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AVIWriter.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-GameplayTasks.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-GameplayDebugger.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DataflowEngine.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-S3Client.dll
F:\UE_5.4\Engine\Plugins\Experimental\PlatformCrypto\Binaries\Win64\UnrealEditor-PlatformCryptoTypes.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ChaosSolverEngine.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-FieldSystemEngine.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MeshConversion.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SerializedRecorderInterface.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SequencerWidgets.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MovieSceneCapture.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MovieSceneTools.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SequencerCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ContentBrowser.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-VirtualTexturingEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioSettingsEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ComponentVisualizers.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ConfigEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AIModule.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-InternationalizationSettings.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DesktopWidgets.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-GeometryCollectionEngine.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Navmesh.dll
F:\UE_5.4\Engine\Binaries\Win64\OpenColorIO_2_3.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MeshBuilderCommon.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-HardwareTargeting.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ContentBrowserData.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ClassViewer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Cbor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-IoStoreOnDemand.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PIEPreviewDeviceSpecification.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Sequencer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-HeadMountedDisplay.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Constraints.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AnimationCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AnimationBlueprintLibrary.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-UnsavedAssetsTracker.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DerivedDataEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-WidgetCarousel.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-CommonMenuExtensions.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SourceControlWindows.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DetailCustomizations.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SceneDepthPickerMode.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ActorPickerMode.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-EditorConfig.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-EditorStyle.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AdvancedPreviewScene.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SceneOutliner.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AnimGraphRuntime.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AnimationEditMode.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SharedSettingsWidgets.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-BlueprintEditorLibrary.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-KismetCompiler.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-KismetWidgets.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MediaAssets.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-EventLoop.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Voronoi.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ChaosCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Networking.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MaterialBaking.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-RSA.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MeshUtilitiesCommon.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-UELibSampleRate.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ReliabilityHandlerComponent.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PropertyPath.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SlateRHIRenderer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ActionableMessage.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MeshBuilder.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Renderer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-WidgetRegistration.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AssetTools.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ToolWidgets.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PhysicsUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SubobjectDataInterface.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-InterchangeEngine.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-InterchangeCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-StatusBar.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-InteractiveToolsFramework.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-NavigationSystem.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Localization.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-BlueprintGraph.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-UncontrolledChangelists.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SourceControl.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-EditorFramework.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-GeometryCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SubobjectEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TraceServices.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TraceAnalysis.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-EditorInteractiveToolsFramework.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-IoStoreUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ToolMenus.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TimeManagement.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PakFileUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PIEPreviewDeviceProfileSelector.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ClothingSystemRuntimeCommon.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-VREditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ViewportInteraction.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MovieSceneTracks.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MovieScene.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-GameProjectGeneration.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AddContentDialog.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LevelEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-FoliageEdit.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Foliage.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-GraphEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-EditorWidgets.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-StatsViewer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SkeletalMeshUtilitiesCommon.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PropertyEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MaterialEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ImageWrapper.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DataLayerEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-CurveEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AnimGraph.dll
F:\UE_5.4\Engine\Binaries\Win64\libfbxsdk.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SSL.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Zen.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-HTTP.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-IrisCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Chaos.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SignalProcessing.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Kismet.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-UMG.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Landscape.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AppFramework.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-UnrealEd.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DerivedDataCache.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SlateCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Slate.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Engine.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-CoreUObject.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DirectoryWatcher.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-HierarchicalLODUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-LevelSequence.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PhysicsCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TextureUtilitiesCommon.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TelemetryUtils.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Core.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-CinematicCamera.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PakFile.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-StaticMeshDescription.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MeshDescription.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-RenderCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-OpenColorIOWrapper.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AssetRegistry.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioLinkEngine.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-BSPUtils.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SoundFieldRendering.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AssetTagsEditor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ImageWriteQueue.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ChaosVDRuntime.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Horde.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Nanosvg.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SkeletalMeshDescription.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-EditorSubsystem.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-GameplayTags.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AssetDefinition.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioMixer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioExtensions.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AnalyticsET.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-CookMetadata.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-JsonUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-NetCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-UnrealEdMessages.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ImageCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TextureCompressor.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MaterialUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MaterialShaderQualitySettings.dll
F:\UE_5.4\Engine\Binaries\Win64\tbbmalloc.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TypedElementFramework.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Json.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DesktopPlatform.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ApplicationCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-RHI.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SandboxFile.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ScriptDisassembler.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Projects.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TypedElementRuntime.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-SwarmInterface.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-IESFile.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Sockets.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ClothingSystemRuntimeInterface.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MediaUtils.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Media.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-CookOnTheFly.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TextureBuildUtilities.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DeveloperToolSettings.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioLinkCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-InstallBundleManager.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PreLoadScreen.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-DeveloperSettings.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-NetworkReplayStreaming.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-UniversalObjectLocator.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-PacketHandler.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-EngineSettings.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MoviePlayer.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-FieldNotification.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioPlatformConfiguration.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-EngineMessages.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-CoreOnline.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-XmlParser.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\Vorbis\Win64\VS2015\libvorbisfile_64.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Icmp.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ClothingSystemEditorInterface.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-InputCore.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-Analytics.dll
F:\UE_5.4\Engine\Binaries\Win64\IOS\UnrealEditor-TVOSTargetPlatform.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-RawMesh.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-ColorManagement.dll
F:\UE_5.4\Engine\Plugins\Runtime\WindowsDeviceProfileSelector\Binaries\Win64\UnrealEditor-WindowsDeviceProfileSelector.dll
F:\UE_5.4\Engine\Plugins\Runtime\ExampleDeviceProfileSelector\Binaries\Win64\UnrealEditor-ExampleDeviceProfileSelector.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-AudioMixerCore.dll
F:\UE_5.4\Engine\Plugins\AI\AISupport\Binaries\Win64\UnrealEditor-AISupportModule.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-TraceLog.dll
F:\UE_5.4\Engine\Plugins\Experimental\PlatformCrypto\Binaries\Win64\UnrealEditor-PlatformCrypto.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-EditorAnalyticsSession.dll
F:\UE_5.4\Engine\Binaries\ThirdParty\Windows\WinPixEventRuntime\x64\WinPixEventRuntime.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MeshUtilitiesEngine.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-BuildSettings.dll
F:\UE_5.4\Engine\Binaries\Win64\UnrealEditor-MoviePlayerProxy.dll</Modules>
</RuntimeProperties>
<PlatformProperties>
<PlatformIsRunningWindows>1</PlatformIsRunningWindows>
<IsRunningOnBattery>false</IsRunningOnBattery>
<DriveStats.PersistentDownload.Name>C:/Users/Bacon/AppData/Local/CrashReportClient/Saved/PersistentDownloadDir</DriveStats.PersistentDownload.Name>
<DriveStats.PersistentDownload.Type>NVMe</DriveStats.PersistentDownload.Type>
<DriveStats.PersistentDownload.FreeSpaceKb>366659768</DriveStats.PersistentDownload.FreeSpaceKb>
<PlatformCallbackResult>0</PlatformCallbackResult>
<CrashTrigger>0</CrashTrigger>
</PlatformProperties>
<EngineData>
<MatchingDPStatus>TVOSNo errors</MatchingDPStatus>
<RHI.IntegratedGPU>false</RHI.IntegratedGPU>
<RHI.DriverDenylisted>false</RHI.DriverDenylisted>
<RHI.D3DDebug>false</RHI.D3DDebug>
<RHI.Breadcrumbs>true</RHI.Breadcrumbs>
<RHI.DRED>false</RHI.DRED>
<RHI.DREDMarkersOnly>true</RHI.DREDMarkersOnly>
<RHI.DREDContext>false</RHI.DREDContext>
<RHI.Aftermath>false</RHI.Aftermath>
<RHI.RHIName>D3D12</RHI.RHIName>
<RHI.AdapterName>AMD Radeon RX 9070 XT</RHI.AdapterName>
<RHI.UserDriverVersion>AMD Software: Adrenalin Edition 25.5.1</RHI.UserDriverVersion>
<RHI.InternalDriverVersion>32.0.21001.9024</RHI.InternalDriverVersion>
<RHI.DriverDate>4-25-2025</RHI.DriverDate>
<RHI.FeatureLevel>SM6</RHI.FeatureLevel>
<RHI.GPUVendor>AMD</RHI.GPUVendor>
<RHI.DeviceId>7550</RHI.DeviceId>
<DeviceProfile.Name>WindowsEditor</DeviceProfile.Name>
<Platform.AppHasFocus>true</Platform.AppHasFocus>
</EngineData>
<GameData />
<EnabledPlugins>
<Plugin>{ &quot;Version&quot;: 47, &quot;VersionName&quot;: &quot;2024.0.7&quot;, &quot;FriendlyName&quot;: &quot;Bridge&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Chaos Cloth&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Chaos Visual Debugger&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Command Link Server&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Enhanced Input&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 4, &quot;VersionName&quot;: &quot;0.0.4&quot;, &quot;FriendlyName&quot;: &quot;Fab&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;FastBuild Controller&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Mesh Painting&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;RDG Insights&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;World Metrics&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;TraceUtilities&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;XGE Controller&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;AISupport&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Environment Query Editor (Experimental)&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;UDP Messaging&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 30099, &quot;VersionName&quot;: &quot;3.0.99&quot;, &quot;FriendlyName&quot;: &quot;Animation Compression Library&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Animation Data&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;TCP Messaging&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Control Rig Modules&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Blendspace Motion Analysis&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Animation Modifier Library&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Control Rig&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Control Rig Spline&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;IK Rig&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Launcher Chunk Installer&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1&quot;, &quot;FriendlyName&quot;: &quot;BackChannel&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Automation Utilities&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;ChaosCaching&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;ChaosUserDataPT&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Chaos Niagara&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;CharacterAI&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;ChaosEditor&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Editor DataflowGraph&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Fracture&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Geometry&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;GeometryFlow&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Experimental Mesh Modeling Toolset&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Chaos Solver&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;OpenImageDenoise&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Full Body IK&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Localizable Message&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Planar Cut&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Platform Cryptography Plugin&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Skeletal Mesh Simplifier (Early Access)&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Struct Utils&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Studio Telemetry&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Tool Presets&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;EOS Shared&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Online Base&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Online Services&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Online Subsystem NULL&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Online Subsystem&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Online Subsystem Utils&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Python Editor Script Plugin&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Animation Sharing&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;CodeLite Integration&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 14, &quot;VersionName&quot;: &quot;1.4&quot;, &quot;FriendlyName&quot;: &quot;Git&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;KDevelop Integration&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 2, &quot;VersionName&quot;: &quot;2.0&quot;, &quot;FriendlyName&quot;: &quot;CLion Integration&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;PIX for Windows GPU Capture Plugin&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Perforce&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Linux Compiler-only Integration&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Plugin Utilities&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;RenderDoc Plugin&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;10X Editor Integration&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Property Access Node&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 2, &quot;VersionName&quot;: &quot;1.7&quot;, &quot;FriendlyName&quot;: &quot;Rider Integration&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Subversion&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Oodle Texture&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Trace Data Filtering&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;UObject Example Plugin&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Visual Studio Code Integration&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Visual Studio Integration&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;XCode Integration&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Niagara&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Dump GPU Services&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;NiagaraSimCaching&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.1&quot;, &quot;FriendlyName&quot;: &quot;RestartEditor&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 90, &quot;VersionName&quot;: &quot;1.9.0&quot;, &quot;FriendlyName&quot;: &quot;Plastic SCM&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Gameplay Cameras&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Interchange Editor&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Camera Shake Previewer&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Take Recorder&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Interchange Framework&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Actor Layer Utilities&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Android Device Profile Selector&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Android Runtime Permission&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Android Movie Player&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;AndroidFileServer&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Apple Image Utils&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Apple Movie Player&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;ArchVis Character&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Asset Tags&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Audio Capture&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;AudioWidgets&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Cable Component&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Audio Synesthesia&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Custom Mesh Component&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Chunk Downloader&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Geometry Processing&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Google Cloud Messaging&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Example Device Profile Selector&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Input Debugging&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;GooglePAD&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;IOS Device Profile Selector&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Linux Device Profile Selector&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Mesh Modeling Toolset&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;MetaSound&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Mobile Patching Utilities&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;MsQuic Runtime Plugin&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Procedural Mesh Component&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Property Access Editor&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Resonance Audio&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Geometry Cache&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Mobile Location Services Blueprints Library&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Significance Manager&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;SoundFields&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.1&quot;, &quot;FriendlyName&quot;: &quot;Synthesis and DSP Effects&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;RigVM&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Wave Tables&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Windows Device Profile Selector&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Windows Movie Player&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Asset Manager Editor&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Oodle Network&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Changelist Reviews&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Blueprint C++ Header Preview&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Data Validation&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;EditorDebugTools&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;CryptoKeys&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Movie Player for WebM files&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Curve Editor Tools&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;GameplayTagsEditor&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Engine Asset Definitions&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Editor Scripting Utilities&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;GeometryMode&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Facial Animation Bulk Importer&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Material Analyzer&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Mac Graphics Switching&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Mesh LOD Toolset&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Wizard for mobile packaging scenarios&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Plugin Browser&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Proxy LOD Plugin (Experimental)&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Modeling Tools Editor Mode&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;SpeedTree Importer&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 2, &quot;VersionName&quot;: &quot;0.2&quot;, &quot;FriendlyName&quot;: &quot;UVEditor&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Sequencer Anim Tools&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;World Partition HLOD Utilities&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 2, &quot;VersionName&quot;: &quot;2.0&quot;, &quot;FriendlyName&quot;: &quot;Android Media Player&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 2, &quot;VersionName&quot;: &quot;2.0&quot;, &quot;FriendlyName&quot;: &quot;AVF Media Player&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Image Sequence Media Player&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Media Compositing&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 0, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Media Plate&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Media Player Editor&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Actor Sequence (Experimental)&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;WebM Video Player&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Level Sequence Editor&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Sequencer Scripting&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Paper2D&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 2, &quot;VersionName&quot;: &quot;2.0&quot;, &quot;FriendlyName&quot;: &quot;WMF Media Player&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Interchange Tests&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Datasmith Content&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Variant Manager&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Variant Manager Content&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Alembic Importer&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;Template Sequence&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 131, &quot;VersionName&quot;: &quot;1.3.1&quot;, &quot;FriendlyName&quot;: &quot;glTF Exporter&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Online Subsystem GooglePlay&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;XInput Device&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;2024.3.4&quot;, &quot;FriendlyName&quot;: &quot;RiderLink&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;0.1&quot;, &quot;FriendlyName&quot;: &quot;BaseCharacterFXEditor&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Online Subsystem iOS&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Portable Object File Data Source&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Content Browser - File Data Source&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Content Browser - Asset Data Source&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Content Browser - Class Data Source&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;MetaHuman Project Utilities&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Light Mixer&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;Object Mixer&quot; }</Plugin>
<Plugin>{ &quot;Version&quot;: 1, &quot;VersionName&quot;: &quot;1.0&quot;, &quot;FriendlyName&quot;: &quot;ReloadEditor&quot; }</Plugin>
</EnabledPlugins>
</FGenericCrashContext>