Jump to content

paint.net 5.1 beta build 8980


Recommended Posts

Welcome to the official beta for Paint.NET v5.1!

 

There's quite a bit that has changed since the last alpha release (build 8930). I didn't plan on a month-and-a-half long gap between builds, and I was actually hoping to be close to the final/stable release by now, but everything I've been learning about color management and Windows' built-in support for it led me to a few important course corrections. I also implemented some rather dramatic memory usage and performance improvements ☺️

 

Here's a quick summary of what's new/changed for the beta when compared to the alpha:

  • Massive reductions in memory usage when working with multiple images
  • Greatly improved canvas framerate for lower-tier and integrated GPUs (e.g. Intel UHD/Iris/Xe, AMD Radeon Mobile)
  • Color management for the display now handled by Windows via Advanced Color and Automatic Color Management
    • This means that "Use the display's color profile" has been removed. (Read more below...)

 

Massively Reduced Memory Usage

I've been wanting to make this optimization for awhile, but it was a very technically challenging problem and I was never able to make enough progress on it (while also keeping the app stable and reliable, mind you).

 

Thankfully some new pieces of the puzzle recently fell into place which turned this into a very easy problem to solve. I'm happy to report that GPU memory usage when working with multiple images has been massively reduced. See below in the tiny print for the technical details.

 

In addition, earlier in 5.1's development I implemented an optimization that greatly reduced CPU memory usage by up to half. This was done by moving canvas tiles to the GPU instead of copying them. Tiles can be easily recreated, so why keep them around on the CPU? The only real downside is that toggling certain settings, namely "Enable hardware acceleration" and "Windows Advanced Color," will result in a brief flickering of the canvas and other UI elements.

 

The savings are really quite dramatic and should smooth things out a lot for many folks. Let's explore this with some data from 2 scenarios that I tested. For both of these tests I started Paint.NET, maximized the window on my 4K display, and then opened a series of images. Memory usage figures were taken from Task Manager.

  1. In the first test, I opened up 50 images that are 6 MP (megapixels) in size (3000 x 2000 pixels). In PDN 5.0.13, the memory usage was 2,527,960 KB on the CPU and 5,818,172 KB on the GPU (about 2.5 GB and 5.8 GB respectively). In the 5.1 Beta, it's down to 1,402,148 KB on the CPU and 2,427,332 KB on the GPU (about 1.40 GB and 2.43 GB respectively). So it's about a 50% reduction overall.
    image.png
  2. This one is more contrived, at least in my opinion, but it shows how much better things are in a more extreme scenario. For this I opened 200 very small images between 16x16 and 64x64 pixels (various icons from the PDN UI). In PDN 5.0.13, the memory usage was 356,772 KB on the CPU and 12,431,560 KB on the GPU (which is about 12.43 gigabytes). In the 5.1 Beta the memory usage on the CPU was down a little bit at 335,044 KB while the GPU memory usage was reduced by over 97% to just 281,188 KB.
    image.png

So depending on how many images you open, and how big they are, you could easily see PDN using 50% less memory on both the CPU and the GPU. Things will be faster and more stable as a result. Enjoy! ☺️

 

(Technical implementation details for the GPU memory savings: every image you open is hosted by its own child control, or "HWND" in Win32 parlance. In PDN 5.0, each one of these gets its own DXGI swapchain created with IDXGISwapChain2::CreateSwapChainForHwnd(). A "swapchain" holds the pixels that an app is displaying on-screen. Each of these swapchains consumes 8 or 16 bytes per pixel within the canvas area (not 4 or 8 bytes per pixel because there are 2 buffers, "front" and "back"). The swapchain, once created, is glued to the HWND and cannot be removed. In PDN 5.1, I am now using IDXGIFactory::CreateSwapChainForComposition() along with some very light use of DirectComposition. Each image is still in its own HWND but now I can move the swapchain between HWNDs. Thus, I only need 1 swapchain for all opened images! -- although I actually use 2 which eliminates some flickering that was otherwise really difficult to fix.)

 

Greatly Improved Canvas Framerate

I'll admit, I was getting a little worried about PDN 5.1's performance during the alpha. It performed perfectly fine on my desktop PC, but it has a top-end CPU and GPU so that's no accomplishment. On my laptops and other test systems, which mostly have Intel iGPUs, I was not able to get anywhere close to the level of PDN 5.0's performance. The canvas still ran at 30+ FPS, so it was still well within what they call "interaction class" performance, but it lacked the refined smoothness that it really ought to have.

 

After some deep performance investigations and completely rethinking and redoing how the canvas is rendered, I'm happy to report that this is completely fixed! Framerates on typical integrated GPUs (which power almost all laptops) are now solidly in the 60+ FPS range. I have also been able to improve performance for when hardware acceleration is not enabled, which should help on systems with very old GPUs that don't support DirectX 11, or when running the app in a virtual machine or other shared environment where a GPU is not available.

 

The ironic thing is that this performance improvement was mostly made by reducing the involvement of the GPU. Paint.NET's color management is now mostly performed on the CPU in background as part of layer composition and mipmap production. Completed tiles are now sent to the GPU in a "presentation ready" format (FP16, scRGB color space). Before, tiles were sent over using the linearized color space from the image, and this required additional color space transforms on the GPU while rendering the canvas. Those are now all gone, and in their place are a nice framerate boost and a reduction in power consumption. Scrolling and zooming are much better now.

 

Display Color Management now handled by Windows

In the alpha there was a checkbox in Settings -> Color Management that was labeled "Use the display's color profile." To make use of this you had to be using an SDR display (which most are these days), and you needed a color profile for your display, and you needed to have installed that color profile using the super confusing Color Management control panel.

 

I left this setting disabled by default because I didn't think a lot of people would be able to take advantage of it properly (not without a lot of work anyway), and enabling it by default would've resulted in many people thinking that color in Paint.NET was now "broken". In addition, the code for handling all of this was complex and fragile, and would have been difficult and expensive to maintain going forward.

 

The other checkbox in Settings -> Color Management, "Windows Advanced Color," applied to displays configured for High Dynamic Range (HDR) or Wide Color Gamut (WCG) mode. In this mode, Windows manages color automatically with respect to the display by utilizing the color space information provided via EDID. You don't need to install a color profile or deal with the old school Windows Color Management control panel.

 

The "Use the display's color profile" setting is now gone, leaving only "Windows Advanced Color" (enabled by default). This means that color management for the display in Paint.NET is handled exclusively by Windows, and is only dependent on having configured the display for either High Dynamic Range (HDR) or Wide Color Gamut (WCG) mode. I expect HDR and/or WCG to gradually become the mainstream configuration, leaving SDR as a historical relic (eventually), and so it made no sense to me to keep the complicated code for "Use the display's color profile" given the projected cost of maintaining it. I'd have to rip it out eventually anyway, so why even ship it in the first place?

 

Many people know what HDR is, and in Windows it has a reputation for being finnicky and buggy. Complaints about "washed out colors" are common when enabling HDR, and this is actually a complicated and difficult color calibration problem. HDR mode works very well ... if your PC manufacturer calibrates and configures things correctly, or if you spend several hours fiddling with the color settings on your display. My Lenovo P16 laptop works great in this mode, but every other system and display I have has a lot of difficulty with it.

 

WCG has not gotten a lot of attention (yet?), and does not seem to have the problems that HDR mode does. WCG is actually a new variant of SDR mode introduced in Windows 11 (you can also use it on HDR displays). In WCG mode, Windows will use 10-bit output (or 8-bit with dithering) and enable Automatic Color Management just like it does in HDR mode.

 

Starting with Windows 11 v24H2, most SDR displays can use WCG mode as long as the GPU is modern enough (see here for requirements). You can think of WCG in two ways: it's either HDR without the extended brightness range and bugginess, or it's like SDR mode but with high bit-depth output, Automatic Color Management, and access to the display's full color gamut (its full range of colors) (btw, SDR mode is always limited to 8-bit output, regardless of any settings in the GPU's vendor-specific control panel).

 

The revamped Color Management page in Settings now has instructions for enabling HDR or WCG mode:

 

image.png

So, in summary, there's one checkbox in Paint.NET for enabling color management for the display, and there's one checkbox in Windows Display Settings for enabling either HDR or WCG mode. That's it. And if you have a display running in SDR mode you will still benefit from color management operating in "sRGB mode", so colors will at least look consistent across images even if your display isn't calibrated.

 

Download and Install

This build is available via the built-in updater as long as you have opted-in to pre-release updates. From within Settings -> Updates, enable "Also check for pre-release (beta) versions of paint.net" and then click on the Check Now button. You can also use the links below to download an offline installer or portable ZIP.
 

image.png

 

You can also download the installer here (for any supported CPU and OS), which is also where you can find downloads for offline installers, portable ZIPs, and deployable MSIs.

 

Change Log

Changes since 5.1 alpha build 8930:

  • Improved: GPU memory usage when working with multiple images has been massively reduced
  • Greatly improved performance (framerate) for the canvas on integrated and lower-tier GPUs
  • Removed: Settings -> Color Management -> "Use the display's color profile." Color management with respect to the display is now handled exclusively by Windows and requires a display configured for High Dynamic Range (HDR) or Wide Color Gamut (WCG).
  • Improved: Windows Advanced Color is now used for the Colors and Layers window, as well as for image thumbnails at the top of the main window. They are no longer limited to sRGB and can display the full range of colors defined by each image's embedded color profile.
  • New: Effects -> Render -> Clouds now has a tab for configuring the colors used for rendering
  • New: Effect plugins are now provided "managed" environmental colors (primary, secondary, palettes). You can use these with IndirectUI by using a ManagedColorProperty (for a color wheel UI), and you can use them to render with Direct2D with the ManagedColor.Get(IDeviceContext) instance method.
  • Changed: the minimum OS requirement is now Windows 10 v21H2 (it used to be Windows 10 v1809)
  • Updated: The bundled AVIF FileType plugin has been updated to version 3.9.1 (thanks @null54!)
  • Updated: The bundled DDS FileType Plus plugin has been updated to version 1.12.9 (thanks @null54!)
  • Like 2
  • Upvote 3
  • Hooray 4

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

BTW this was a lot to write up, and I'm not sure if I explained things well enough. It's a beta release, and these release notes should also be considered "beta" :) Feel free to leave feedback and questions regarding HDR, WCG, Advanced Color, Automatic Color Management, how to get HDR/WCG enabled, etc.

  • Like 1

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

On the beta version, updates of shaped tools on the canvas are sluggish (shapes, lines, selections). It's like the updates are a couple frames behind the actual mouse cursor movement. Drawing with a brush tool seems instant.

 

This is of course not a big deal in practice - the shapes will catch up to the cursor eventually and end up where they're meant to be - but it feels a little off compared to how it was in the previous versions, I figured I'd report it just in case it's related to something else behind the scenes.

 

It's visible on this gyazo clip, even though my unpaid version can record only 30 fps, it's more noticeable at native screen refresh rate of 60: https://i.gyazo.com/8f4b9d3a57692844afb23401c3bcaede.mp4

 

Edit: changing vertical sync in Nvidia control panel from the default "application controlled" to "force off" makes it much less noticeable, but not entirely gone.

 

Hardware acceleration is enabled, 3080 GPU, diagnostic specs here:

Spoiler
Application                                                paint.net 5.1 (β 5.100.8980.32680)
Build Date                                                 perjantai 2. elokuuta 2024
Expiration Date                                            perjantai 25. lokakuuta 2024
Install type                                               Classic

Language                                                   en-US
Scaling                                                    1.25x (120 DPI)
UI/Canvas GPU                                              True
Rendering GPU                                              🚀 Performance (NVIDIA GeForce RTX 3080)
Advanced Color                                             True
Remote Session                                             False
Battery Saver                                              False
Animations                                                 True
Translucent Windows                                        True
Windows Ink                                                False

OS                                                         Windows 11 Home x64 (10.0.22631.0)
Runtime                                                    .NET 8.0.7 x64

Physical Memory                                            65 277 MB (35 905 MB free)
Paging File                                                69 373 MB (29 463 MB free)

CPU                                                        13th Gen Intel(R) Core(TM) i7-13700K
    Speed                                                  ~3418 MHz
    Cores / Threads                                        16 / 24
    Features                                               SSE, SSE2, SSE3, SSSE3, SSE4_1, SSE4_2, AVX, AVX2

Display                                                    1
    Name                                                   Generic PnP Monitor
    Connected to                                           NVIDIA GeForce RTX 3080
    Resolution                                             1920 x 1080, 10-bit, 60 Hz
    DPI                                                    120 (1.25x scale)
    Coordinates                                            (L=0, T=0, R=1920, B=1080)
    Advanced Color                                         StandardDynamicRange
    SDR white level                                        80 nits
    Color space                                            RgbFullGamma22NoneP709
    Composition Support                                    Fullscreen, CursorStretched

Video Card                                                 NVIDIA GeForce RTX 3080
    Hardware Acceleration                                  Supported
    Performance Class                                      Good
    Dedicated Video RAM                                    10 053 MB
    Dedicated System RAM                                   0 MB
    Shared System RAM                                      32 638 MB
    Driver Version                                         32.0.15.5612
    Vendor ID                                              0x10DE
    Device ID                                              0x2216
    Subsystem ID                                           0x88221043
    Revision                                               161
    LUID                                                   0x0001387B
    Flags                                                  AcgCompatible, SupportMonitoredFences, KeyedMutexConformance
    Graphics Preemption                                    PixelBoundary
    Compute Preemption                                     DispatchBoundary
    Outputs                                                1
    Feature Level                                          Level_12_1
    Features                                               Doubles, ComputeShadersEtc
    Maximum Bitmap Size                                    16384

Video Card                                                 Microsoft Basic Render Driver
    Hardware Acceleration                                  N/A
    Performance Class                                      VeryLow
    Dedicated Video RAM                                    0 MB
    Dedicated System RAM                                   0 MB
    Shared System RAM                                      32 638 MB
    Driver Version                                         10.0.22621.3672
    Vendor ID                                              0x1414
    Device ID                                              0x008C
    Subsystem ID                                           0x00000000
    Revision                                               0
    LUID                                                   0x0001455C
    Flags                                                  Software, AcgCompatible, SupportMonitoredFences, KeyedMutexConformance
    Graphics Preemption                                    InstructionBoundary
    Compute Preemption                                     InstructionBoundary
    Outputs                                                0
    Feature Level                                          Level_12_1
    Features                                               Doubles, ComputeShadersEtc
    Maximum Bitmap Size                                    8388608

Managed assemblies                                         296
    System.Private.CoreLib                                 .\System.Private.CoreLib.dll, Version=8.0.0.0, PublicKeyToken=7cec85d7bea7798e
    paintdotnet                                            .\paintdotnet.dll, Version=5.100.8980.32680
    System.Runtime                                         .\System.Runtime.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Windows.Core                               .\PaintDotNet.Windows.Core.dll, Version=5.100.8980.32680
    PaintDotNet.Windows                                    .\PaintDotNet.Windows.dll, Version=5.100.8980.32680
    PaintDotNet.ComponentModel                             .\PaintDotNet.ComponentModel.dll, Version=5.100.8980.32680
    PaintDotNet.Primitives                                 .\PaintDotNet.Primitives.dll, Version=5.100.8980.32680
    PaintDotNet.Fundamentals                               .\PaintDotNet.Fundamentals.dll, Version=5.100.8980.32680
    System.Windows.Forms                                   .\System.Windows.Forms.dll, Version=8.0.0.0, PublicKeyToken=b77a5c561934e089
    System.Diagnostics.Tracing                             .\System.Diagnostics.Tracing.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Threading.Thread                                .\System.Threading.Thread.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Base                                       .\PaintDotNet.Base.dll, Version=5.100.8980.32680
    PaintDotNet.Collections                                .\PaintDotNet.Collections.dll, Version=5.100.8980.32680
    PaintDotNet.Systrace                                   .\PaintDotNet.Systrace.dll, Version=5.100.8980.32680
    TerraFX.Interop.Windows                                .\TerraFX.Interop.Windows.dll, Version=10.0.26100.0, PublicKeyToken=35b01b53313a6f7e
    PaintDotNet.Runtime                                    .\PaintDotNet.Runtime.dll, Version=5.100.8980.32680
    System.Collections.Concurrent                          .\System.Collections.Concurrent.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PointerToolkit                                         .\PointerToolkit.dll, Version=1.0.1.0
    System.Threading                                       .\System.Threading.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Private.Uri                                     .\System.Private.Uri.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Windows.Framework                          .\PaintDotNet.Windows.Framework.dll, Version=5.100.8980.32680
    PaintDotNet.UI                                         .\PaintDotNet.UI.dll, Version=5.100.8980.32680
    WindowsBase                                            .\WindowsBase.dll, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35
    Microsoft.Windows.SDK.NET                              .\Microsoft.Windows.SDK.NET.dll, Version=10.0.26100.24, PublicKeyToken=31bf3856ad364e35
    PaintDotNet.ObjectModel                                .\PaintDotNet.ObjectModel.dll, Version=5.100.8980.32680
    PresentationFramework                                  .\PresentationFramework.dll, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35
    WinRT.Runtime                                          .\WinRT.Runtime.dll, Version=2.0.0.0, PublicKeyToken=99ea127f02d97709
    System.Xaml                                            .\System.Xaml.dll, Version=8.0.0.0, PublicKeyToken=b77a5c561934e089
    System.Collections                                     .\System.Collections.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.ComponentModel                                  .\System.ComponentModel.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.ComponentModel.Primitives                       .\System.ComponentModel.Primitives.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Runtime.InteropServices                         .\System.Runtime.InteropServices.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.ObjectModel                                     .\System.ObjectModel.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Microsoft.Win32.Primitives                             .\Microsoft.Win32.Primitives.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Windows.Forms.Primitives                        .\System.Windows.Forms.Primitives.dll, Version=8.0.0.0, PublicKeyToken=b77a5c561934e089
    System.Drawing.Primitives                              .\System.Drawing.Primitives.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Diagnostics.TraceSource                         .\System.Diagnostics.TraceSource.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Text.Encoding.CodePages                         .\System.Text.Encoding.CodePages.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Configuration.ConfigurationManager              .\System.Configuration.ConfigurationManager.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    PaintDotNet.Core                                       .\PaintDotNet.Core.dll, Version=5.100.8980.32680
    System.Collections.Specialized                         .\System.Collections.Specialized.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.SystemLayer                                .\PaintDotNet.SystemLayer.dll, Version=5.100.8980.32680
    PaintDotNet.Resources                                  .\PaintDotNet.Resources.dll, Version=5.100.8980.32680
    System.Xml.ReaderWriter                                .\System.Xml.ReaderWriter.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Private.Xml                                     .\System.Private.Xml.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    System.Drawing.Common                                  .\System.Drawing.Common.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    System.Net.WebClient                                   .\System.Net.WebClient.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    System.Linq                                            .\System.Linq.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Memory                                          .\System.Memory.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    System.Text.Encoding.Extensions                        .\System.Text.Encoding.Extensions.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Data                                       .\PaintDotNet.Data.dll, Version=5.100.8980.32680
    PaintDotNet.Framework                                  .\PaintDotNet.Framework.dll, Version=5.100.8980.32680
    CommunityToolkit.HighPerformance                       .\CommunityToolkit.HighPerformance.dll, Version=8.2.0.0, PublicKeyToken=4aff67a105548ee2
    System.Threading.ThreadPool                            .\System.Threading.ThreadPool.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Collections.Immutable                           .\System.Collections.Immutable.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Microsoft.Win32.Registry                               .\Microsoft.Win32.Registry.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Microsoft.Win32.SystemEvents                           .\Microsoft.Win32.SystemEvents.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    PointerToolkit.TerraFX.Interop.Windows                 .\PointerToolkit.TerraFX.Interop.Windows.dll, Version=10.0.26100.0
    System.ComponentModel.EventBasedAsync                  .\System.ComponentModel.EventBasedAsync.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Security.Principal.Windows                      .\System.Security.Principal.Windows.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Security.Claims                                 .\System.Security.Claims.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    ComputeSharp.D2D1                                      .\ComputeSharp.D2D1.dll, Version=3.0.1.0, PublicKeyToken=dc35fa229f6881d8
    System.ComponentModel.TypeConverter                    .\System.ComponentModel.TypeConverter.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.PropertySystem                             .\PaintDotNet.PropertySystem.dll, Version=5.100.8980.32680
    PresentationCore                                       .\PresentationCore.dll, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35
    DirectWriteForwarder                                   .\DirectWriteForwarder.dll, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35
    System.Runtime.Extensions                              .\System.Runtime.Extensions.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Diagnostics.Debug                               .\System.Diagnostics.Debug.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.IO.Packaging                                    .\System.IO.Packaging.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Runtime.CompilerServices.VisualC                .\System.Runtime.CompilerServices.VisualC.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Collections.NonGeneric                          .\System.Collections.NonGeneric.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Effects.Core                               .\PaintDotNet.Effects.Core.dll, Version=5.100.8980.32680
    Accessibility                                          .\Accessibility.dll, Version=4.0.0.0, PublicKeyToken=31bf3856ad364e35
    System.Numerics.Vectors                                .\System.Numerics.Vectors.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.IO.Hashing                                      .\System.IO.Hashing.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    System.Runtime.Loader                                  .\System.Runtime.Loader.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    SauceControl.Blake2Fast                                .\SauceControl.Blake2Fast.dll, Version=2.0.0.0, PublicKeyToken=deebe556222e40dc
    PaintDotNet.Effects.Gpu                                .\PaintDotNet.Effects.Gpu.dll, Version=5.100.8980.32680
    System.Threading.Tasks.Parallel                        .\System.Threading.Tasks.Parallel.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Reflection.Metadata                             .\System.Reflection.Metadata.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.IO.MemoryMappedFiles                            .\System.IO.MemoryMappedFiles.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Reflection.MetadataLoadContext                  .\System.Reflection.MetadataLoadContext.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    CSVFiletype                                            .\FileTypes\CSVFiletype.dll, Version=1.0.0.0
    PhotoShop                                              .\FileTypes\PhotoShop.dll, Version=2.5.0.40665
    ImZIP.FileType                                         .\FileTypes\ImZIP.FileType.dll, Version=1.4.0.0
    ImXcf.FileType                                         .\FileTypes\ImXCF.FileType.dll, Version=1.4.0.95
    Jpeg2000Filetype                                       .\FileTypes\Jpeg2000Filetype.dll, Version=1.0.0.6
    OptiPngFileType                                        .\FileTypes\OptiPngFileType.dll, Version=8.11.30.0
    ImAPNG.FileType                                        .\FileTypes\ImAPNG.FileType.dll, Version=0.3.0.19
    ImAGIF.FileType                                        .\FileTypes\ImAGIF.FileType.dll, Version=1.4.0.0
    IcoCur                                                 .\FileTypes\IcoCur.dll, Version=3.7.0.0
    mscorlib                                               .\mscorlib.dll, Version=4.0.0.0, PublicKeyToken=b77a5c561934e089
    System                                                 .\System.dll, Version=4.0.0.0, PublicKeyToken=b77a5c561934e089
    System.Drawing                                         .\System.Drawing.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Diagnostics.FileVersionInfo                     .\System.Diagnostics.FileVersionInfo.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.IO.FileSystem                                   .\System.IO.FileSystem.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    DdsFileTypePlus                                        .\Bundled\DDSFileTypePlus\DdsFileTypePlus.dll, Version=1.12.9.0
    WebPFileType                                           .\Bundled\WebPFileType\WebPFileType.dll, Version=1.4.0.0
    AvifFileType                                           .\Bundled\AvifFileType\AvifFileType.dll, Version=3.9.1.0
    PaintDotNet.Effects                                    .\PaintDotNet.Effects.dll, Version=5.100.8980.32680
    PaintDotNet.Effects.Legacy                             .\PaintDotNet.Effects.Legacy.dll, Version=5.100.8980.32680
    Mono.Cecil                                             .\Mono.Cecil.dll, Version=0.11.5.0, PublicKeyToken=50cebf1cceb9d05e
    netstandard                                            .\netstandard.dll, Version=2.1.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    ComputeSharp.Core                                      .\ComputeSharp.Core.dll, Version=3.0.1.0, PublicKeyToken=dc35fa229f6881d8
    PaintDotNet.Plugins.Compatibility                      .\PaintDotNet.Plugins.Compatibility.dll, Version=5.100.8980.32680
    System.Diagnostics.Process                             .\System.Diagnostics.Process.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Console                                         .\System.Console.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Vandermotten.PaintDotNetEffects.ObjectAlign            C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.ObjectAlign.dll, Version=5.0.0.0
    Vandermotten.PaintDotNetEffects                        C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.dll, Version=5.0.0.0
    CalliColour                                            .\Effects\CalliColour.dll, Version=1.0.1.0
    AA's_Assistant                                         .\Effects\AA's_Assistant.dll, Version=1.1.4329.33034
    AlphaToDots                                            .\Effects\AlphaToDots.dll, Version=1.0.4675.19955
    Alphalizer                                             .\Effects\Alphalizer.dll, Version=2.0.5434.24240
    AlphaMask                                              .\Effects\AlphaMask.dll, Version=2.0.3574.41943
    Bars                                                   .\Effects\Bars.dll, Version=1.1.0.0
    AlphaBlur                                              .\Effects\AlphaBlur.dll, Version=2.0.0.0
    AverageEdgeBlur                                        .\Effects\AverageEdgeBlur.dll, Version=1.0.3991.32409
    BlendModesPlus                                         .\Effects\BlendModesPlus.dll, Version=3.1.0.0
    BandWPlus                                              .\Effects\BandWPlus.dll, Version=6.0.8407.21940
    AveragedColorBlur                                      .\Effects\AveragedColorBlur.dll, Version=1.0.0.0
    Alpha2Gray                                             .\Effects\Alpha2Gray.dll, Version=6.0.8407.21872
    BBOutlinedGradientText                                 .\Effects\BBOutlinedGradientText.dll, Version=6.0.8426.37652
    BoldBrush                                              .\Effects\BoldBrush.dll, Version=2.0.8470.26873
    BasicPhotoAdjustments                                  .\Effects\BasicPhotoAdjustments.dll, Version=2.1.4020.485
    CircleText                                             .\Effects\CircleText.dll, Version=1.4.4415.32488
    CellTexture                                            .\Effects\CellTexture.dll, Version=1.1.0.0
    Bidirectional Blur                                     .\Effects\Bidirectional Blur.dll, Version=1.0.0.0
    System.Runtime.Serialization.Formatters                .\System.Runtime.Serialization.Formatters.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    ClipWarpNew                                            .\Effects\ClipWarpNew.dll, Version=1.0.1.0
    ClipDisplace                                           .\Effects\ClipDisplace.dll, Version=1.0.5763.42010
    System.Resources.Extensions                            .\System.Resources.Extensions.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    Cobweb                                                 .\Effects\Cobweb.dll, Version=1.0.1.0
    CodeLab                                                .\Effects\CodeLab.dll, Version=6.12.8807.38030
    coloraberation                                         .\Effects\coloraberation.dll, Version=1.0.3859.18981
    System.Net.Http                                        .\System.Net.Http.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Net.Primitives                                  .\System.Net.Primitives.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    ColorCount                                             .\Effects\ColorCount.dll, Version=1.0.0.0
    ColorBalance                                           .\Effects\ColorBalance.dll, Version=6.0.8407.22111
    CycleHSV                                               .\Effects\CycleHSV.dll, Version=1.0.4909.35068
    Cuboids                                                .\Effects\Cuboids.dll, Version=1.0.0.0
    Diffuse                                                .\Effects\Diffuse.dll, Version=1.0.3254.27766
    ContentAwareFill                                       .\Effects\ContentAwareFill.dll, Version=1.5.1.0
    CreativeTextPro                                        .\Effects\CreativeTextPro.dll, Version=6.0.8407.22165
    ConvolutionEffect                                      .\Effects\ConvolutionEffect.dll, Version=1.0.0.2
    Curves+                                                .\Effects\Curves+.dll, Version=4.0.6119.31044
    ColorZoomBlur                                          .\Effects\ColorZoomBlur.dll, Version=1.1.3873.36417
    EigenBlur                                              .\Effects\EigenBlur.dll, Version=1.3.3555.24648
    ColorMixer                                             .\Effects\ColorMixer.dll, Version=1.3.0.0
    Dryad                                                  .\Effects\Dryad.dll, Version=1.0.1.0
    DistortThis                                            .\Effects\DistortThis.dll, Version=2.10.0.0
    Contour                                                .\Effects\Contour.dll, Version=1.0.1.0
    dpyColorBalance                                        .\Effects\dpyColorBalance.dll, Version=1.1.4330.37850
    Edge Shader                                            .\Effects\Edge Shader.dll, Version=1.0.1.0
    Dream                                                  .\Effects\Dream.dll, Version=6.0.8414.36727
    EOEffects                                              .\Effects\EOEffects.dll, Version=1.10.16.12
    EdHarvey.Edfects                                       .\Effects\EdHarvey.Edfects.dll, Version=5.0.0.0
    Erode                                                  .\Effects\Erode.dll, Version=1.0.0.0
    ErodeDilate                                            .\Effects\ErodeDilate_v0.2.dll, Version=1.0.0.0
    Facet                                                  .\Effects\Facet.dll, Version=1.0.3.0
    FillFromClipboard                                      .\Effects\FillFromClipboard.dll, Version=6.0.8407.22397
    FindEdges                                              .\Effects\FindEdges.dll, Version=1.2.0.0
    Flip                                                   .\Effects\Flip.dll, Version=4.6.7358.36953
    FurBlur                                                .\Effects\FurBlur.dll, Version=1.0.1.0
    FloydSteinbergDithering                                .\Effects\FloydSteinbergDithering.dll, Version=5.2.8174.39918
    F_ColorVectorRotation                                  .\Effects\F_ColorVectorRotation.dll, Version=1.2.8710.28036
    F_FastAlpha2Gray                                       .\Effects\F_FastAlpha2Gray.dll, Version=1.0.8716.30768
    F_ColorVectorCross                                     .\Effects\F_ColorVectorCross.dll, Version=1.2.8710.30670
    F_AdjustLevelsHSLuv                                    .\Effects\F_AdjustLevelsHSLuv.dll, Version=1.2.8718.41016
    F_ColorVectorRotationAxAng                             .\Effects\F_ColorVectorRotationAxAng.dll, Version=1.2.8710.27976
    F_FastAlphaRemove                                      .\Effects\F_FastAlphaRemove.dll, Version=1.0.8716.30758
    F_FastClipboard2AlphaMultiply                          .\Effects\F_FastClipboard2AlphaMultiply.dll, Version=1.0.8716.34503
    F_AdjustHSLuv                                          .\Effects\F_AdjustHSLuv.dll, Version=1.2.8718.40563
    F_FastClipboard2AlphaOverwrite                         .\Effects\F_FastClipboard2AlphaOverwrite.dll, Version=1.0.8716.34508
    F_FastGray2AlphaRetain                                 .\Effects\F_FastGray2AlphaRetain.dll, Version=1.0.8716.30762
    Vandermotten.PaintDotNetEffects.MakeTransparent        C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.MakeTransparent.dll, Version=5.0.0.0
    F_FastGray2AlphaPrimary                                .\Effects\F_FastGray2AlphaPrimary.dll, Version=1.0.8716.30765
    F_SeamlessSimplexClouds                                .\Effects\F_SeamlessSimplexClouds.dll, Version=1.0.8713.9300
    F_SeamlessVoronoi                                      .\Effects\F_SeamlessVoronoi.dll, Version=1.0.8715.42222
    Vandermotten.PaintDotNetEffects                        C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.dll, Version=5.0.0.0
    System.Runtime.Intrinsics                              .\System.Runtime.Intrinsics.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    Gossamer                                               .\Effects\Gossamer.dll, Version=1.0.1.0
    GaussianBlurPlus                                       .\Effects\GaussianBlurPlus.dll, Version=4.2.5691.27401
    Gradient Bars                                          .\Effects\Gradient Bars.dll, Version=4.0.5152.23084
    GradientBlur                                           .\Effects\Gradient Blur.dll, Version=1.0.0.0
    Gradient Blocks                                        .\Effects\Gradient Blocks.dll, Version=4.0.4642.26658
    Grain                                                  .\Effects\Grain.dll, Version=1.0.3854.25523
    Grid Warp                                              .\Effects\Grid Warp.dll, Version=4.0.6544.34496
    Gmic                                                   .\Effects\Gmic.dll, Version=3.4.0.0
    GridMaker                                              .\Effects\GridMaker.dll, Version=4.0.0.0
    HexaGrid                                               .\Effects\HexaGrid.dll, Version=1.2.0.0
    Helix                                                  .\Effects\Helix.dll, Version=1.0.1.0
    HueSatPlus                                             .\Effects\HueSatPlus.dll, Version=5.2.8174.40274
    IrisBlur                                               .\Effects\IrisBlur.dll, Version=1.0.8690.21381
    Jitter                                                 .\Effects\Jitter.dll, Version=4.0.4642.26986
    Kuwahara                                               .\Effects\Kuwahara.dll, Version=1.0.0.0
    LavEnt.Effects.Mosaic                                  .\Effects\LavEnt.Effects.Mosaic.dll, Version=1.1.0.0
    kb_lens                                                .\Effects\kb_lens.dll, Version=0.0.0.0
    IncreaseLocalContrast                                  .\Effects\IncreaseLocalContrast.dll, Version=1.0.0.0
    Line Tracer                                            .\Effects\Line Tracer.dll, Version=1.0.4911.29141
    Liquify                                                .\Effects\Liquify.dll, Version=4.0.5873.25113
    LocalNoise                                             .\Effects\LocalNoise.dll, Version=1.0.4674.29909
    LaplacianPyramidFilter                                 .\Effects\LaplacianPyramidFilter.dll, Version=1.0.0.1
    Magnifier                                              .\Effects\Magnifier.dll, Version=1.1.0.0
    Norm_Render                                            .\Effects\Norm_Render.dll, Version=7.3.4484.27012
    System.Core                                            .\System.Core.dll, Version=4.0.0.0, PublicKeyToken=b77a5c561934e089
    MultiSpline                                            .\Effects\MultiSpline.dll, Version=1.0.3.0
    MirrorRotateMenu                                       .\Effects\MirrorRotateMenu.dll, Version=2.0.2.0
    NoiseChoice                                            .\Effects\NoiseChoice.dll, Version=1.0.1.0
    ObjectEdge                                             .\Effects\Objectedge.dll, Version=1.0.1.0
    ObjectBevel                                            .\Effects\ObjectBevel.dll, Version=1.0.6.0
    Oblique                                                .\Effects\Oblique.dll, Version=1.0.0.0
    LocalContrast                                          .\Effects\LocalContrast.dll, Version=3.0.0.0
    Morphologic                                            .\Effects\Morphologic.dll, Version=1.0.0.0
    OilPaintingPlus                                        .\Effects\OilPaintingPlus.dll, Version=5.2.8141.27893
    ObjectTools                                            .\Effects\ObjectTools.dll, Version=6.0.8482.2565
    Vandermotten.PaintDotNetEffects.FadeEdge               C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.FadeEdge.dll, Version=5.0.0.0
    Panelling                                              .\Effects\Panelling.dll, Version=1.1.0.0
    Paste Warp Plus                                        .\Effects\Paste Warp Plus.dll, Version=1.1.0.0
    Vandermotten.PaintDotNetEffects                        C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.dll, Version=5.0.0.0
    PasteFill                                              .\Effects\PasteFill.dll, Version=2.0.0.0
    IniFile                                                .\Effects\IniFile.dll, Version=2.0.2.0
    Pastel                                                 .\Effects\Pastel.dll, Version=5.2.8174.40506
    Perspective                                            .\Effects\Perspective.dll, Version=2.1.4415.36116
    phips_fill_gaps                                        .\Effects\phips_fill_gaps.dll, Version=1.0.3307.18956
    PointBlur                                              .\Effects\PointBlur.dll, Version=1.0.0.0
    PhotoAdjustments                                       .\Effects\PhotoAdjustments.dll, Version=6.0.8416.38377
    Pixelate+                                              .\Effects\Pixelate+.dll, Version=4.0.4642.26940
    Polar                                                  .\Effects\Polar.dll, Version=1.1.1.0
    RandMaze2                                              .\Effects\Random Maze2.dll, Version=1.1.0.0
    RandMaze1                                              .\Effects\Random Maze1.dll, Version=1.1.0.0
    QuadrilateralCorrection                                .\Effects\QuadrilateralCorrection.dll, Version=1.3.0.0
    Random Shape Fill                                      .\Effects\Random Shape Fill.dll, Version=4.0.4642.26910
    RandLines                                              .\Effects\Random lines.dll, Version=1.1.0.0
    Rosaces                                                .\Effects\Rosaces.dll, Version=1.1.0.0
    RGB_Remap4                                             .\Effects\RGB_Remap4.dll, Version=1.0.3538.24311
    QuantDith                                              .\Effects\QuantDith.dll, Version=1.5.8260.29377
    RemoveDust                                             .\Effects\RemoveDust.dll, Version=6.0.8407.22513
    SeamCarving                                            .\Effects\SeamCarving.dll, Version=5.2.8176.39366
    Scribble                                               .\Effects\Scribble.dll, Version=1.0.1.0
    Vandermotten.PaintDotNetEffects.DropShadow             C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.DropShadow.dll, Version=5.0.0.0
    Selection2Clear                                        .\Effects\Selection2Clear.dll, Version=1.0.1.0
    Vandermotten.PaintDotNetEffects                        C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.dll, Version=5.0.0.0
    SelectionTools                                         .\Effects\SelectionTools.dll, Version=6.0.8412.38725
    PSFilterPdn                                            .\Effects\PSFilterPdn\PSFilterPdn.dll, Version=2.0.8.0
    Sharpen+                                               .\Effects\Sharpen+.dll, Version=4.0.0.0
    silhouetteplus                                         .\Effects\silhouetteplus.dll, Version=1.1.3131.17586
    SinWaves                                               .\Effects\SinWaves.dll, Version=1.1.0.0
    System.Security.Cryptography                           .\System.Security.Cryptography.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Slinky                                                 .\Effects\Slinky.dll, Version=1.0.1.0
    Smudge                                                 .\Effects\Smudge.dll, Version=4.0.5873.25097
    Splashes                                               .\Effects\Splashes.dll, Version=1.1.1.0
    SpiroGraph                                             .\Effects\SpiroGraph.dll, Version=1.1.0.0
    StringAndPin                                           .\Effects\StringAndPin.dll, Version=1.0.1.0
    Splatter                                               .\Effects\Splatter.dll, Version=4.0.5873.25083
    TextFactory                                            .\Effects\TextFactory.dll, Version=2.2.8884.42463
    TextureShader                                          .\Effects\TextureShader.dll, Version=1.0.5655.35781
    TR'sColorizerHMS                                       .\Effects\TR'sColorizerHMS.dll, Version=1.0.4937.30626
    Transparency                                           .\Effects\Transparency.dll, Version=6.0.8407.22532
    TerraFX.Interop.Windows                                .\Effects\PSFilterPdn\TerraFX.Interop.Windows.dll, Version=10.0.22621.2, PublicKeyToken=35b01b53313a6f7e
    TRs Scatter                                            .\Effects\TRs Scatter.dll, Version=1.3.4949.23250
    TRsCustomPaletteMatch                                  .\Effects\TRsCustomPaletteMatch.dll, Version=1.0.5.0
    TRsFilaments                                           .\Effects\TRsFilaments.dll, Version=1.0.15.11399
    TRsKaboom                                              .\Effects\TRsKaboom.dll, Version=1.0.5118.21464
    TRsPasteFrame                                          .\Effects\TRsPasteFrame.dll, Version=1.3.20.9613
    TRsPasteWarp                                           .\Effects\TRsPasteWarp.dll, Version=1.0.0.0
    Tweaktrans4                                            .\Effects\Tweaktrans.dll, Version=1.0.4193.41856
    TubeOblique                                            .\Effects\TubeOblique.dll, Version=1.0.0.0
    MessagePack                                            .\Effects\PSFilterPdn\MessagePack.dll, Version=2.5.0.0, PublicKeyToken=b4a0369545f0a1be
    Tweaktrans2                                            .\Effects\Tweaktrans2.dll, Version=2.0.4252.27152
    System.Linq.Expressions                                .\System.Linq.Expressions.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Twist                                                  .\Effects\Twist.dll, Version=4.0.5873.25056
    velc.SlabText                                          .\Effects\velc.SlabText.dll, Version=1.1.8174.32156
    VignettePlus                                           .\Effects\VignettePlus.dll, Version=6.0.8407.22549
    voronoi.dll                                            .\Effects\voronoi.dll, Version=1.0.0.0
    System.Windows.Forms.Legacy                            .\System.Windows.Forms.Legacy.dll, Version=1.0.0.0
    System.Text.RegularExpressions                         .\System.Text.RegularExpressions.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Reflection.Emit                                 .\System.Reflection.Emit.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Snippets                                               «empty», Version=0.0.0.0
    System.Threading.Tasks                                 .\System.Threading.Tasks.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Xml.XDocument                                   .\System.Xml.XDocument.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Private.Xml.Linq                                .\System.Private.Xml.Linq.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    Polygon                                                .\Effects\Polygon.dll, Version=4.5.6828.38648
    System.Security.Cryptography.Primitives                .\System.Security.Cryptography.Primitives.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    HSVGradients                                           .\Effects\HSVGradients.dll, Version=4.5.6832.41864
    System.IO.Compression                                  .\System.IO.Compression.dll, Version=8.0.0.0, PublicKeyToken=b77a5c561934e089
    System.Runtime.Numerics                                .\System.Runtime.Numerics.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Security.Cryptography.Algorithms                .\System.Security.Cryptography.Algorithms.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PhotoSauce.MagicScaler                                 .\PhotoSauce.MagicScaler.dll, Version=0.14.2.0, PublicKeyToken=fc6b9b7b06809481
    PresentationFramework-SystemXmlLinq                    .\PresentationFramework-SystemXmlLinq.dll, Version=8.0.0.0, PublicKeyToken=b77a5c561934e089
    System.Xml.Linq                                        .\System.Xml.Linq.dll, Version=4.0.0.0, PublicKeyToken=b77a5c561934e089
    Gradient Mapping                                       .\Effects\Gradient Mapping.dll, Version=4.0.6547.33963
    ParallelLines.Effect                                   .\Effects\ParallelLines.Effect.dll, Version=1.6.0.575
    OptionBasedLibrary v0.7.9                              .\Effects\OptionBasedLibrary v0.7.9.dll, Version=0.7.9.1561
    Newtonsoft.Json                                        .\Newtonsoft.Json.dll, Version=13.0.0.0, PublicKeyToken=30ad4fe6b2a6aeed
    System.CodeDom                                         .\System.CodeDom.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    K4os.Compression.LZ4                                   .\K4os.Compression.LZ4.dll, Version=1.3.8.0, PublicKeyToken=2186fa9121ef231d

Native modules                                             439
    PaintDotNet.exe                                        .\PaintDotNet.exe, version=5.100.8980.32680
    ntdll.dll                                              C:\WINDOWS\SYSTEM32\ntdll.dll, version=10.0.22621.3374 (WinBuild.160101.0800)
    KERNEL32.DLL                                           C:\WINDOWS\System32\KERNEL32.DLL, version=10.0.22621.3374 (WinBuild.160101.0800)
    KERNELBASE.dll                                         C:\WINDOWS\System32\KERNELBASE.dll, version=10.0.22621.3374 (WinBuild.160101.0800)
    SHELL32.dll                                            C:\WINDOWS\System32\SHELL32.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    msvcp_win.dll                                          C:\WINDOWS\System32\msvcp_win.dll, version=10.0.22621.3374 (WinBuild.160101.0800)
    ucrtbase.dll                                           C:\WINDOWS\System32\ucrtbase.dll, version=10.0.22621.3593 (WinBuild.160101.0800)
    USER32.dll                                             C:\WINDOWS\System32\USER32.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    win32u.dll                                             C:\WINDOWS\System32\win32u.dll, version=10.0.22621.3880 (WinBuild.160101.0800)
    GDI32.dll                                              C:\WINDOWS\System32\GDI32.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    gdi32full.dll                                          C:\WINDOWS\System32\gdi32full.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    ole32.dll                                              C:\WINDOWS\System32\ole32.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    combase.dll                                            C:\WINDOWS\System32\combase.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    RPCRT4.dll                                             C:\WINDOWS\System32\RPCRT4.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    OLEAUT32.dll                                           C:\WINDOWS\System32\OLEAUT32.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    SHLWAPI.dll                                            C:\WINDOWS\System32\SHLWAPI.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    msvcrt.dll                                             C:\WINDOWS\System32\msvcrt.dll, version=7.0.22621.2506 (WinBuild.160101.0800)
    VCRUNTIME140_1.dll                                     .\VCRUNTIME140_1.dll, version=14.40.33810.0
    VCRUNTIME140.dll                                       .\VCRUNTIME140.dll, version=14.40.33810.0
    IMM32.DLL                                              C:\WINDOWS\System32\IMM32.DLL, version=10.0.22621.3374 (WinBuild.160101.0800)
    shcore.dll                                             C:\WINDOWS\System32\shcore.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    hostfxr.dll                                            .\hostfxr.dll, version=8,0,724,31311 @Commit: 2aade6beb02ea367fd97c4070a4198802fe61c03
    ADVAPI32.dll                                           C:\WINDOWS\System32\ADVAPI32.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    sechost.dll                                            C:\WINDOWS\System32\sechost.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    bcrypt.dll                                             C:\WINDOWS\System32\bcrypt.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    hostpolicy.dll                                         .\hostpolicy.dll, version=8,0,724,31311 @Commit: 2aade6beb02ea367fd97c4070a4198802fe61c03
    coreclr.dll                                            .\coreclr.dll, version=8,0,724,31311 @Commit: 2aade6beb02ea367fd97c4070a4198802fe61c03
    bcryptPrimitives.dll                                   C:\WINDOWS\System32\bcryptPrimitives.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    System.Private.CoreLib.dll                             .\System.Private.CoreLib.dll, version=8.0.724.31311
    clrjit.dll                                             .\clrjit.dll, version=8,0,724,31311 @Commit: 2aade6beb02ea367fd97c4070a4198802fe61c03
    kernel.appcore.dll                                     C:\WINDOWS\SYSTEM32\kernel.appcore.dll, version=10.0.22621.2715 (WinBuild.160101.0800)
    paintdotnet.dll                                        .\paintdotnet.dll, version=5.100.8980.32680
    System.Runtime.dll                                     .\System.Runtime.dll, version=8.0.724.31311
    uxtheme.dll                                            C:\WINDOWS\system32\uxtheme.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    PaintDotNet.Windows.Core.dll                           .\PaintDotNet.Windows.Core.dll, version=5.100.8980.32680
    PaintDotNet.Windows.dll                                .\PaintDotNet.Windows.dll, version=5.100.8980.32680
    PaintDotNet.ComponentModel.dll                         .\PaintDotNet.ComponentModel.dll, version=5.100.8980.32680
    PaintDotNet.Primitives.dll                             .\PaintDotNet.Primitives.dll, version=5.100.8980.32680
    PaintDotNet.Fundamentals.dll                           .\PaintDotNet.Fundamentals.dll, version=5.100.8980.32680
    System.Windows.Forms.dll                               .\System.Windows.Forms.dll, version=8.0.724.31308
    System.Diagnostics.Tracing.dll                         .\System.Diagnostics.Tracing.dll, version=8.0.724.31311
    icu.dll                                                C:\WINDOWS\SYSTEM32\icu.dll, version=68, 2, 0, 10 (WinBuild.160101.0800)
    System.Threading.Thread.dll                            .\System.Threading.Thread.dll, version=8.0.724.31311
    PaintDotNet.Base.dll                                   .\PaintDotNet.Base.dll, version=5.100.8980.32680
    PaintDotNet.Collections.dll                            .\PaintDotNet.Collections.dll, version=5.100.8980.32680
    PaintDotNet.Systrace.dll                               .\PaintDotNet.Systrace.dll, version=5.100.8980.32680
    TerraFX.Interop.Windows.dll                            .\TerraFX.Interop.Windows.dll, version=10.0.26100.0
    PaintDotNet.Runtime.dll                                .\PaintDotNet.Runtime.dll, version=5.100.8980.32680
    System.Collections.Concurrent.dll                      .\System.Collections.Concurrent.dll, version=8.0.724.31311
    PointerToolkit.dll                                     .\PointerToolkit.dll, version=1.0.1.0
    System.Threading.dll                                   .\System.Threading.dll, version=8.0.724.31311
    windows.storage.dll                                    C:\WINDOWS\SYSTEM32\windows.storage.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    wintypes.dll                                           C:\WINDOWS\SYSTEM32\wintypes.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    System.Private.Uri.dll                                 .\System.Private.Uri.dll, version=8.0.724.31311
    PaintDotNet.Windows.Framework.dll                      .\PaintDotNet.Windows.Framework.dll, version=5.100.8980.32680
    PaintDotNet.UI.dll                                     .\PaintDotNet.UI.dll, version=5.100.8980.32680
    WindowsBase.dll                                        .\WindowsBase.dll, version=8.0.724.31307
    Microsoft.Windows.SDK.NET.dll                          .\Microsoft.Windows.SDK.NET.dll, version=10.0.26100.1
    PaintDotNet.ObjectModel.dll                            .\PaintDotNet.ObjectModel.dll, version=5.100.8980.32680
    PresentationFramework.dll                              .\PresentationFramework.dll, version=8.0.724.31307
    WinRT.Runtime.dll                                      .\WinRT.Runtime.dll, version=2.0.4.44211
    System.Xaml.dll                                        .\System.Xaml.dll, version=8.0.724.31307
    System.Collections.dll                                 .\System.Collections.dll, version=8.0.724.31311
    System.ComponentModel.dll                              .\System.ComponentModel.dll, version=8.0.724.31311
    System.ComponentModel.Primitives.dll                   .\System.ComponentModel.Primitives.dll, version=8.0.724.31311
    coremessaging.DLL                                      C:\WINDOWS\SYSTEM32\coremessaging.DLL, version=10.0.22621.3672 (WinBuild.160101.0800)
    System.Runtime.InteropServices.dll                     .\System.Runtime.InteropServices.dll, version=8.0.724.31311
    System.ObjectModel.dll                                 .\System.ObjectModel.dll, version=8.0.724.31311
    Microsoft.Win32.Primitives.dll                         .\Microsoft.Win32.Primitives.dll, version=8.0.724.31311
    System.Windows.Forms.Primitives.dll                    .\System.Windows.Forms.Primitives.dll, version=8.0.724.31308
    System.Drawing.Primitives.dll                          .\System.Drawing.Primitives.dll, version=8.0.724.31311
    System.Diagnostics.TraceSource.dll                     .\System.Diagnostics.TraceSource.dll, version=8.0.724.31311
    PresentationNative_cor3.dll                            .\PresentationNative_cor3.dll, version=8,0,24,17801 @Commit: 089c9b660a07fad070d3d442b7f49c8e1001a0b3
    System.Text.Encoding.CodePages.dll                     .\System.Text.Encoding.CodePages.dll, version=8.0.724.31311
    System.Configuration.ConfigurationManager.dll          .\System.Configuration.ConfigurationManager.dll, version=8.0.724.31311
    PaintDotNet.Core.dll                                   .\PaintDotNet.Core.dll, version=5.100.8980.32680
    System.Collections.Specialized.dll                     .\System.Collections.Specialized.dll, version=8.0.724.31311
    PaintDotNet.SystemLayer.dll                            .\PaintDotNet.SystemLayer.dll, version=5.100.8980.32680
    PaintDotNet.Resources.dll                              .\PaintDotNet.Resources.dll, version=5.100.8980.32680
    System.Xml.ReaderWriter.dll                            .\System.Xml.ReaderWriter.dll, version=8.0.724.31311
    System.Private.Xml.dll                                 .\System.Private.Xml.dll, version=8.0.724.31311
    System.Drawing.Common.dll                              .\System.Drawing.Common.dll, version=8.0.724.31308
    System.Net.WebClient.dll                               .\System.Net.WebClient.dll, version=8.0.724.31311
    System.Linq.dll                                        .\System.Linq.dll, version=8.0.724.31311
    System.Memory.dll                                      .\System.Memory.dll, version=8.0.724.31311
    System.Text.Encoding.Extensions.dll                    .\System.Text.Encoding.Extensions.dll, version=8.0.724.31311
    PaintDotNet.Data.dll                                   .\PaintDotNet.Data.dll, version=5.100.8980.32680
    PaintDotNet.Framework.dll                              .\PaintDotNet.Framework.dll, version=5.100.8980.32680
    CommunityToolkit.HighPerformance.dll                   .\CommunityToolkit.HighPerformance.dll, version=8.2.2.1
    System.Threading.ThreadPool.dll                        .\System.Threading.ThreadPool.dll, version=8.0.724.31311
    System.Collections.Immutable.dll                       .\System.Collections.Immutable.dll, version=8.0.724.31311
    dxgi.DLL                                               C:\WINDOWS\SYSTEM32\dxgi.DLL, version=10.0.22621.3672 (WinBuild.160101.0800)
    dxcore.dll                                             C:\WINDOWS\SYSTEM32\dxcore.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    directxdatabasehelper.dll                              C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    Microsoft.Win32.Registry.dll                           .\Microsoft.Win32.Registry.dll, version=8.0.724.31311
    Microsoft.Win32.SystemEvents.dll                       .\Microsoft.Win32.SystemEvents.dll, version=8.0.724.31311
    PointerToolkit.TerraFX.Interop.Windows.dll             .\PointerToolkit.TerraFX.Interop.Windows.dll, version=10.0.26100.0
    profapi.dll                                            C:\WINDOWS\SYSTEM32\profapi.dll, version=10.0.22621.3527 (WinBuild.160101.0800)
    MSCTF.dll                                              C:\WINDOWS\System32\MSCTF.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    d3d11.DLL                                              C:\WINDOWS\SYSTEM32\d3d11.DLL, version=10.0.22621.3672 (WinBuild.160101.0800)
    System.ComponentModel.EventBasedAsync.dll              .\System.ComponentModel.EventBasedAsync.dll, version=8.0.724.31311
    msasn1.dll                                             C:\WINDOWS\SYSTEM32\msasn1.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    cryptnet.dll                                           C:\WINDOWS\SYSTEM32\cryptnet.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    CRYPT32.dll                                            C:\WINDOWS\System32\CRYPT32.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    cryptbase.dll                                          C:\WINDOWS\SYSTEM32\cryptbase.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    wldp.dll                                               C:\WINDOWS\SYSTEM32\wldp.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    drvstore.dll                                           C:\WINDOWS\SYSTEM32\drvstore.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    devobj.dll                                             C:\WINDOWS\SYSTEM32\devobj.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    cfgmgr32.dll                                           C:\WINDOWS\SYSTEM32\cfgmgr32.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    wintrust.dll                                           C:\WINDOWS\System32\wintrust.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    System.Security.Principal.Windows.dll                  .\System.Security.Principal.Windows.dll, version=8.0.724.31311
    imagehlp.dll                                           C:\WINDOWS\System32\imagehlp.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    System.Security.Claims.dll                             .\System.Security.Claims.dll, version=8.0.724.31311
    ComputeSharp.D2D1.dll                                  .\ComputeSharp.D2D1.dll, version=3.0.1.0
    d2d1.DLL                                               C:\WINDOWS\SYSTEM32\d2d1.DLL, version=10.0.22621.1 (WinBuild.160101.0800)
    System.ComponentModel.TypeConverter.dll                .\System.ComponentModel.TypeConverter.dll, version=8.0.724.31311
    CRYPTSP.dll                                            C:\WINDOWS\SYSTEM32\CRYPTSP.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    rsaenh.dll                                             C:\WINDOWS\system32\rsaenh.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    PaintDotNet.PropertySystem.dll                         .\PaintDotNet.PropertySystem.dll, version=5.100.8980.32680
    PresentationCore.dll                                   .\PresentationCore.dll, version=8.0.724.31307
    DirectWriteForwarder.dll                               .\DirectWriteForwarder.dll, version=8,0,724,31307 @Commit: 43bb8cc831c2658e1117415019264bfe6f644f94
    gdiplus.dll                                            C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.3810_none_57f8d842ce19d879\gdiplus.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    WindowsCodecs.dll                                      C:\WINDOWS\SYSTEM32\WindowsCodecs.dll, version=10.0.22621.3880 (WinBuild.160101.0800)
    System.Runtime.Extensions.dll                          .\System.Runtime.Extensions.dll, version=8.0.724.31311
    System.Diagnostics.Debug.dll                           .\System.Diagnostics.Debug.dll, version=8.0.724.31311
    XmlLite.dll                                            C:\WINDOWS\SYSTEM32\XmlLite.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    System.IO.Packaging.dll                                .\System.IO.Packaging.dll, version=8.0.724.31311
    System.Runtime.CompilerServices.VisualC.dll            .\System.Runtime.CompilerServices.VisualC.dll, version=8.0.724.31311
    clbcatq.dll                                            C:\WINDOWS\System32\clbcatq.dll, version=2001.12.10941.16384 (WinBuild.160101.0800)
    UIAnimation.dll                                        C:\WINDOWS\System32\UIAnimation.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    dwrite.dll                                             C:\WINDOWS\SYSTEM32\dwrite.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    System.Collections.NonGeneric.dll                      .\System.Collections.NonGeneric.dll, version=8.0.724.31311
    PaintDotNet.Effects.Core.dll                           .\PaintDotNet.Effects.Core.dll, version=5.100.8980.32680
    comctl32.dll                                           C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955\comctl32.dll, version=6.10 (WinBuild.160101.0800)
    Accessibility.dll                                      .\Accessibility.dll, version=8.0.724.31308
    nvldumdx.dll                                           C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_5714f0dca6485379\nvldumdx.dll, version=32.0.15.5612
    VERSION.dll                                            C:\WINDOWS\SYSTEM32\VERSION.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    nvgpucomp64.dll                                        C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_5714f0dca6485379\nvgpucomp64.dll, version=32.0.15.5612
    nvwgf2umx.dll                                          C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_5714f0dca6485379\nvwgf2umx.dll, version=32.0.15.5612
    powrprof.dll                                           C:\WINDOWS\SYSTEM32\powrprof.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    WINMM.dll                                              C:\WINDOWS\SYSTEM32\WINMM.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    UMPDC.dll                                              C:\WINDOWS\SYSTEM32\UMPDC.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    System.Numerics.Vectors.dll                            .\System.Numerics.Vectors.dll, version=8.0.724.31311
    System.IO.Hashing.dll                                  .\System.IO.Hashing.dll, version=8.0.23.53103
    System.Runtime.Loader.dll                              .\System.Runtime.Loader.dll, version=8.0.724.31311
    TextShaping.dll                                        C:\WINDOWS\SYSTEM32\TextShaping.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    SauceControl.Blake2Fast.dll                            .\SauceControl.Blake2Fast.dll, version=2.0.0.0
    PaintDotNet.Effects.Gpu.dll                            .\PaintDotNet.Effects.Gpu.dll, version=5.100.8980.32680
    System.Threading.Tasks.Parallel.dll                    .\System.Threading.Tasks.Parallel.dll, version=8.0.724.31311
    System.Reflection.Metadata.dll                         .\System.Reflection.Metadata.dll, version=8.0.724.31311
    System.IO.MemoryMappedFiles.dll                        .\System.IO.MemoryMappedFiles.dll, version=8.0.724.31311
    wtsapi32.dll                                           C:\WINDOWS\SYSTEM32\wtsapi32.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    WINSTA.dll                                             C:\WINDOWS\SYSTEM32\WINSTA.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    D3D10Warp.dll                                          C:\WINDOWS\SYSTEM32\D3D10Warp.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    System.Reflection.MetadataLoadContext.dll              .\System.Reflection.MetadataLoadContext.dll, version=8.0.23.53103
    CSVFiletype.dll                                        .\FileTypes\CSVFiletype.dll, version=1.0.0.0
    PhotoShop.dll                                          .\FileTypes\PhotoShop.dll, version=2.5.0.0
    ImZIP.FileType.dll                                     .\FileTypes\ImZIP.FileType.dll, version=1.4.0.0
    ImXCF.FileType.dll                                     .\FileTypes\ImXCF.FileType.dll, version=1.4.0.95
    Jpeg2000Filetype.dll                                   .\FileTypes\Jpeg2000Filetype.dll, version=1.0.0.6
    OptiPngFileType.dll                                    .\FileTypes\OptiPngFileType.dll, version=8.11.30.0
    ImAPNG.FileType.dll                                    .\FileTypes\ImAPNG.FileType.dll, version=0.3.0.19
    ImAGIF.FileType.dll                                    .\FileTypes\ImAGIF.FileType.dll, version=1.4.0.0
    IcoCur.dll                                             .\FileTypes\IcoCur.dll, version=3.7.0.0
    mscorlib.dll                                           .\mscorlib.dll, version=8.0.724.31311
    System.dll                                             .\System.dll, version=8.0.724.31311
    System.Drawing.dll                                     .\System.Drawing.dll, version=8.0.724.31308
    mfplat.dll                                             C:\WINDOWS\SYSTEM32\mfplat.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    RTWorkQ.DLL                                            C:\WINDOWS\SYSTEM32\RTWorkQ.DLL, version=10.0.22621.1 (WinBuild.160101.0800)
    CompPkgSup.DLL                                         C:\WINDOWS\SYSTEM32\CompPkgSup.DLL, version=10.0.22621.3527 (WinBuild.160101.0800)
    System.Diagnostics.FileVersionInfo.dll                 .\System.Diagnostics.FileVersionInfo.dll, version=8.0.724.31311
    System.IO.FileSystem.dll                               .\System.IO.FileSystem.dll, version=8.0.724.31311
    DdsFileTypePlus.dll                                    .\Bundled\DDSFileTypePlus\DdsFileTypePlus.dll, version=1.12.9.0
    WebPFileType.dll                                       .\Bundled\WebPFileType\WebPFileType.dll, version=1.4.0.0
    AvifFileType.dll                                       .\Bundled\AvifFileType\AvifFileType.dll, version=3.9.1.0
    UIAutomationCore.dll                                   C:\WINDOWS\SYSTEM32\UIAutomationCore.dll, version=7.2.22621.4029 (WinBuild.160101.0800)
    windows.staterepositoryclient.dll                      C:\WINDOWS\SYSTEM32\windows.staterepositoryclient.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    windows.staterepositorycore.dll                        C:\WINDOWS\SYSTEM32\windows.staterepositorycore.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    PaintDotNet.Effects.dll                                .\PaintDotNet.Effects.dll, version=5.100.8980.32680
    PaintDotNet.Effects.Legacy.dll                         .\PaintDotNet.Effects.Legacy.dll, version=5.100.8980.32680
    Mono.Cecil.dll                                         .\Mono.Cecil.dll, version=0.11.5.0
    netstandard.dll                                        .\netstandard.dll, version=8.0.724.31311
    ComputeSharp.Core.dll                                  .\ComputeSharp.Core.dll, version=3.0.1.0
    d3dcompiler_47.DLL                                     C:\WINDOWS\SYSTEM32\d3dcompiler_47.DLL, version=10.0.22621.2506 (WinBuild.160101.0800)
    PaintDotNet.Plugins.Compatibility.dll                  .\PaintDotNet.Plugins.Compatibility.dll, version=5.100.8980.32680
    System.Diagnostics.Process.dll                         .\System.Diagnostics.Process.dll, version=8.0.724.31311
    System.Console.dll                                     .\System.Console.dll, version=8.0.724.31311
    Vandermotten.PaintDotNetEffects.ObjectAlign.dll        C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.ObjectAlign.dll, version=5.0.5.0
    Vandermotten.PaintDotNetEffects.dll                    C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.dll, version=5.0.5.0
    CalliColour.dll                                        .\Effects\CalliColour.dll, version=1.0.1.0
    AA's_Assistant.dll                                     .\Effects\AA's_Assistant.dll, version=1.1.4329.33034
    AlphaToDots.dll                                        .\Effects\AlphaToDots.dll, version=1.0.4675.19955
    Alphalizer.dll                                         .\Effects\Alphalizer.dll, version=2.0.5434.24240
    AlphaMask.dll                                          .\Effects\AlphaMask.dll, version=2.0.3574.41943
    Bars.dll                                               .\Effects\Bars.dll, version=1.1.0.0
    AlphaBlur.dll                                          .\Effects\AlphaBlur.dll, version=2.0.0.0
    AverageEdgeBlur.dll                                    .\Effects\AverageEdgeBlur.dll, version=1.0.3991.32409
    BlendModesPlus.dll                                     .\Effects\BlendModesPlus.dll, version=3.1.0.0
    BandWPlus.dll                                          .\Effects\BandWPlus.dll, version=6.0.8407.21940
    AveragedColorBlur.dll                                  .\Effects\AveragedColorBlur.dll, version=1.0.0.0
    Alpha2Gray.dll                                         .\Effects\Alpha2Gray.dll, version=6.0.8407.21872
    BBOutlinedGradientText.dll                             .\Effects\BBOutlinedGradientText.dll, version=6.0.8426.37652
    BoldBrush.dll                                          .\Effects\BoldBrush.dll, version=2.0.8470.26873
    BasicPhotoAdjustments.dll                              .\Effects\BasicPhotoAdjustments.dll, version=2.1.4020.485
    CircleText.dll                                         .\Effects\CircleText.dll, version=1.4.4415.32488
    CellTexture.dll                                        .\Effects\CellTexture.dll, version=1.0.0.0
    Bidirectional Blur.dll                                 .\Effects\Bidirectional Blur.dll, version=1.0.0.0
    System.Runtime.Serialization.Formatters.dll            .\System.Runtime.Serialization.Formatters.dll, version=8.0.724.31311
    ClipWarpNew.dll                                        .\Effects\ClipWarpNew.dll, version=1.0.1.0
    ClipDisplace.dll                                       .\Effects\ClipDisplace.dll, version=1.0.5763.42010
    System.Resources.Extensions.dll                        .\System.Resources.Extensions.dll, version=8.0.724.31311
    Cobweb.dll                                             .\Effects\Cobweb.dll, version=1.0.1.0
    mscms.DLL                                              C:\WINDOWS\SYSTEM32\mscms.DLL, version=10.0.22621.4029 (WinBuild.160101.0800)
    icm32.dll                                              C:\WINDOWS\SYSTEM32\icm32.dll, version=10.0.22621.3880 (WinBuild.160101.0800)
    CodeLab.dll                                            .\Effects\CodeLab.dll, version=6.12.8807.38030
    windowscodecsext.dll                                   C:\WINDOWS\system32\windowscodecsext.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    coloraberation.dll                                     .\Effects\coloraberation.dll, version=1.0.3859.18981
    System.Net.Http.dll                                    .\System.Net.Http.dll, version=8.0.724.31311
    Cabinet.dll                                            C:\WINDOWS\SYSTEM32\Cabinet.dll, version=5.00 (WinBuild.160101.0800)
    System.Net.Primitives.dll                              .\System.Net.Primitives.dll, version=8.0.724.31311
    ColorCount.dll                                         .\Effects\ColorCount.dll, version=1.0.0.0
    ColorBalance.dll                                       .\Effects\ColorBalance.dll, version=6.0.8407.22111
    CycleHSV.dll                                           .\Effects\CycleHSV.dll, version=1.0.4909.35068
    Cuboids.dll                                            .\Effects\Cuboids.dll, version=1.0.0.0
    Diffuse.dll                                            .\Effects\Diffuse.dll, version=1.0.3254.27766
    ContentAwareFill.dll                                   .\Effects\ContentAwareFill.dll, version=1.5.1.0
    CreativeTextPro.dll                                    .\Effects\CreativeTextPro.dll, version=6.0.8407.22165
    ConvolutionEffect.dll                                  .\Effects\ConvolutionEffect.dll, version=1.0.0.2
    Curves+.dll                                            .\Effects\Curves+.dll, version=4.0.6119.31044
    ColorZoomBlur.dll                                      .\Effects\ColorZoomBlur.dll, version=1.1.3873.36417
    EigenBlur.dll                                          .\Effects\EigenBlur.dll, version=1.3.3555.24648
    ColorMixer.dll                                         .\Effects\ColorMixer.dll, version=1.3.0.0
    Dryad.dll                                              .\Effects\Dryad.dll, version=1.0.1.0
    DistortThis.dll                                        .\Effects\DistortThis.dll, version=2.10.0.0
    Contour.dll                                            .\Effects\Contour.dll, version=1.0.1.0
    dpyColorBalance.dll                                    .\Effects\dpyColorBalance.dll, version=1.1.4330.37850
    Edge Shader.dll                                        .\Effects\Edge Shader.dll, version=1.0.1.0
    Dream.dll                                              .\Effects\Dream.dll, version=6.0.8414.36727
    EdHarvey.Edfects.dll                                   .\Effects\EdHarvey.Edfects.dll, version=5.0.0.0
    EOEffects.dll                                          .\Effects\EOEffects.dll, version=1.10.16.12
    Erode.dll                                              .\Effects\Erode.dll, version=1.0.0.0
    ErodeDilate_v0.2.dll                                   .\Effects\ErodeDilate_v0.2.dll, version=1.0.0.0
    Facet.dll                                              .\Effects\Facet.dll, version=1.0.3.0
    FillFromClipboard.dll                                  .\Effects\FillFromClipboard.dll, version=6.0.8407.22397
    FindEdges.dll                                          .\Effects\FindEdges.dll, version=1.2.0.0
    Flip.dll                                               .\Effects\Flip.dll, version=4.6.7358.36953
    FurBlur.dll                                            .\Effects\FurBlur.dll, version=1.0.1.0
    FloydSteinbergDithering.dll                            .\Effects\FloydSteinbergDithering.dll, version=5.2.8174.39918
    F_ColorVectorRotation.dll                              .\Effects\F_ColorVectorRotation.dll, version=1.2.8710.28036
    F_FastAlpha2Gray.dll                                   .\Effects\F_FastAlpha2Gray.dll, version=1.0.8716.30768
    F_ColorVectorCross.dll                                 .\Effects\F_ColorVectorCross.dll, version=1.2.8710.30670
    F_AdjustLevelsHSLuv.dll                                .\Effects\F_AdjustLevelsHSLuv.dll, version=1.2.8718.41016
    F_ColorVectorRotationAxAng.dll                         .\Effects\F_ColorVectorRotationAxAng.dll, version=1.2.8710.27976
    F_FastAlphaRemove.dll                                  .\Effects\F_FastAlphaRemove.dll, version=1.0.8716.30758
    F_FastClipboard2AlphaMultiply.dll                      .\Effects\F_FastClipboard2AlphaMultiply.dll, version=1.0.8716.34503
    F_AdjustHSLuv.dll                                      .\Effects\F_AdjustHSLuv.dll, version=1.2.8718.40563
    F_FastClipboard2AlphaOverwrite.dll                     .\Effects\F_FastClipboard2AlphaOverwrite.dll, version=1.0.8716.34508
    F_FastGray2AlphaRetain.dll                             .\Effects\F_FastGray2AlphaRetain.dll, version=1.0.8716.30762
    Vandermotten.PaintDotNetEffects.MakeTransparent.dll    C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.MakeTransparent.dll, version=5.0.5.0
    F_FastGray2AlphaPrimary.dll                            .\Effects\F_FastGray2AlphaPrimary.dll, version=1.0.8716.30765
    F_SeamlessSimplexClouds.dll                            .\Effects\F_SeamlessSimplexClouds.dll, version=1.0.8713.9300
    F_SeamlessVoronoi.dll                                  .\Effects\F_SeamlessVoronoi.dll, version=1.0.8715.42222
    System.Runtime.Intrinsics.dll                          .\System.Runtime.Intrinsics.dll, version=8.0.724.31311
    Gossamer.dll                                           .\Effects\Gossamer.dll, version=1.0.1.0
    GaussianBlurPlus.dll                                   .\Effects\GaussianBlurPlus.dll, version=4.2.5691.27401
    Gradient Bars.dll                                      .\Effects\Gradient Bars.dll, version=4.0.5152.23084
    Gradient Blur.dll                                      .\Effects\Gradient Blur.dll, version=1.0.0.0
    Gradient Blocks.dll                                    .\Effects\Gradient Blocks.dll, version=4.0.4642.26658
    Grain.dll                                              .\Effects\Grain.dll, version=1.0.3854.25523
    Grid Warp.dll                                          .\Effects\Grid Warp.dll, version=4.0.6544.34496
    Gmic.dll                                               .\Effects\Gmic.dll, version=3.4.0.0
    GridMaker.dll                                          .\Effects\GridMaker.dll, version=4.0.0.0
    HexaGrid.dll                                           .\Effects\HexaGrid.dll, version=1.2.0.0
    Helix.dll                                              .\Effects\Helix.dll, version=1.0.1.0
    HueSatPlus.dll                                         .\Effects\HueSatPlus.dll, version=5.2.8174.40274
    IrisBlur.dll                                           .\Effects\IrisBlur.dll, version=1.0.8690.21381
    Jitter.dll                                             .\Effects\Jitter.dll, version=4.0.4642.26986
    Kuwahara.dll                                           .\Effects\Kuwahara.dll, version=1.0.0.0
    LavEnt.Effects.Mosaic.dll                              .\Effects\LavEnt.Effects.Mosaic.dll, version=1.1.0.0
    kb_lens.dll                                            .\Effects\kb_lens.dll, version=0.0.0.0
    IncreaseLocalContrast.dll                              .\Effects\IncreaseLocalContrast.dll, version=1.0.1.1
    Line Tracer.dll                                        .\Effects\Line Tracer.dll, version=1.0.4911.29141
    dwmapi.DLL                                             C:\WINDOWS\SYSTEM32\dwmapi.DLL, version=10.0.22621.4029 (WinBuild.160101.0800)
    Liquify.dll                                            .\Effects\Liquify.dll, version=4.0.5873.25113
    LocalNoise.dll                                         .\Effects\LocalNoise.dll, version=1.0.4674.29909
    LaplacianPyramidFilter.dll                             .\Effects\LaplacianPyramidFilter.dll, version=1.0.0.1
    Magnifier.dll                                          .\Effects\Magnifier.dll, version=1.1.0.0
    Norm_Render.dll                                        .\Effects\Norm_Render.dll, version=7.3.4484.27012
    System.Core.dll                                        .\System.Core.dll, version=8.0.724.31311
    MultiSpline.dll                                        .\Effects\MultiSpline.dll, version=1.0.3.0
    MirrorRotateMenu.dll                                   .\Effects\MirrorRotateMenu.dll, version=2.0.2
    NoiseChoice.dll                                        .\Effects\NoiseChoice.dll, version=1.0.1.0
    Objectedge.dll                                         .\Effects\Objectedge.dll, version=1.0.1.0
    ObjectBevel.dll                                        .\Effects\ObjectBevel.dll, version=1.0.6.0
    Oblique.dll                                            .\Effects\Oblique.dll, version=1.0.0.0
    LocalContrast.dll                                      .\Effects\LocalContrast.dll, version=3.0.0.0
    Morphologic.dll                                        .\Effects\Morphologic.dll, version=1.0.0.0
    OilPaintingPlus.dll                                    .\Effects\OilPaintingPlus.dll, version=5.2.8141.27893
    ObjectTools.dll                                        .\Effects\ObjectTools.dll, version=6.0.8482.2565
    Vandermotten.PaintDotNetEffects.FadeEdge.dll           C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.FadeEdge.dll, version=5.0.5.0
    Panelling.dll                                          .\Effects\Panelling.dll, version=1.1.0.0
    Paste Warp Plus.dll                                    .\Effects\Paste Warp Plus.dll, version=1.1.0.0
    PasteFill.dll                                          .\Effects\PasteFill.dll, version=2.0.0.0
    IniFile.dll                                            .\Effects\IniFile.dll, version=2.0.2
    Pastel.dll                                             .\Effects\Pastel.dll, version=5.2.8174.40506
    Perspective.dll                                        .\Effects\Perspective.dll, version=2.1.4415.36116
    phips_fill_gaps.dll                                    .\Effects\phips_fill_gaps.dll, version=1.0.3307.18956
    PointBlur.dll                                          .\Effects\PointBlur.dll, version=1.0.0.0
    PhotoAdjustments.dll                                   .\Effects\PhotoAdjustments.dll, version=6.0.8416.38377
    Pixelate+.dll                                          .\Effects\Pixelate+.dll, version=4.0.4642.26940
    Polar.dll                                              .\Effects\Polar.dll, version=1.1.1.0
    Random Maze2.dll                                       .\Effects\Random Maze2.dll, version=1.1.0.0
    Random Maze1.dll                                       .\Effects\Random Maze1.dll, version=1.1.0.0
    QuadrilateralCorrection.dll                            .\Effects\QuadrilateralCorrection.dll, version=1.3.0.0
    Random Shape Fill.dll                                  .\Effects\Random Shape Fill.dll, version=4.0.4642.26910
    Random lines.dll                                       .\Effects\Random lines.dll, version=1.1.0.0
    Rosaces.dll                                            .\Effects\Rosaces.dll, version=1.1.0.0
    RGB_Remap4.dll                                         .\Effects\RGB_Remap4.dll, version=1.0.3538.24311
    QuantDith.dll                                          .\Effects\QuantDith.dll, version=1.5.8260.29377
    RemoveDust.dll                                         .\Effects\RemoveDust.dll, version=6.0.8407.22513
    SeamCarving.dll                                        .\Effects\SeamCarving.dll, version=5.2.8176.39366
    Scribble.dll                                           .\Effects\Scribble.dll, version=1.0.1.0
    Vandermotten.PaintDotNetEffects.DropShadow.dll         C:\Users\lauri\Documents\paint.net App Files\Effects\Vandermotten.PaintDotNetEffects.DropShadow.dll, version=5.0.5.0
    Selection2Clear.dll                                    .\Effects\Selection2Clear.dll, version=1.0.1.0
    SelectionTools.dll                                     .\Effects\SelectionTools.dll, version=6.0.8412.38725
    PSFilterPdn.dll                                        .\Effects\PSFilterPdn\PSFilterPdn.dll, version=2.0.8.0
    Sharpen+.dll                                           .\Effects\Sharpen+.dll, version=4.0.0.0
    silhouetteplus.dll                                     .\Effects\silhouetteplus.dll, version=1.1.3131.17586
    SinWaves.dll                                           .\Effects\SinWaves.dll, version=1.1.0.0
    System.Security.Cryptography.dll                       .\System.Security.Cryptography.dll, version=8.0.724.31311
    Slinky.dll                                             .\Effects\Slinky.dll, version=1.0.1.0
    Smudge.dll                                             .\Effects\Smudge.dll, version=4.0.5873.25097
    Splashes.dll                                           .\Effects\Splashes.dll, version=1.1.1.0
    SpiroGraph.dll                                         .\Effects\SpiroGraph.dll, version=1.1.0.0
    StringAndPin.dll                                       .\Effects\StringAndPin.dll, version=1.0.1.0
    Splatter.dll                                           .\Effects\Splatter.dll, version=4.0.5873.25083
    TextFactory.dll                                        .\Effects\TextFactory.dll, version=2.2.8884.42463
    TextureShader.dll                                      .\Effects\TextureShader.dll, version=1.0.5655.35781
    TR'sColorizerHMS.dll                                   .\Effects\TR'sColorizerHMS.dll, version=1.0.4937.30626
    Transparency.dll                                       .\Effects\Transparency.dll, version=6.0.8407.22532
    TerraFX.Interop.Windows.dll                            .\Effects\PSFilterPdn\TerraFX.Interop.Windows.dll, version=10.0.22621.2
    Windows.Graphics.dll                                   C:\Windows\System32\Windows.Graphics.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    TRs Scatter.dll                                        .\Effects\TRs Scatter.dll, version=1.3.4949.23250
    TRsCustomPaletteMatch.dll                              .\Effects\TRsCustomPaletteMatch.dll, version=1.0.5.0
    TRsFilaments.dll                                       .\Effects\TRsFilaments.dll, version=1.0.15.11399
    TRsKaboom.dll                                          .\Effects\TRsKaboom.dll, version=1.0.5118.21464
    TRsPasteFrame.dll                                      .\Effects\TRsPasteFrame.dll, version=1.3.20.9613
    TRsPasteWarp.dll                                       .\Effects\TRsPasteWarp.dll, version=1.0.0.0
    Tweaktrans.dll                                         .\Effects\Tweaktrans.dll, version=1.0.4193.41856
    TubeOblique.dll                                        .\Effects\TubeOblique.dll, version=1.0.0.0
    MessagePack.dll                                        .\Effects\PSFilterPdn\MessagePack.dll, version=2.5.124.21940
    Tweaktrans2.dll                                        .\Effects\Tweaktrans2.dll, version=2.0.4252.27152
    System.Linq.Expressions.dll                            .\System.Linq.Expressions.dll, version=8.0.724.31311
    Twist.dll                                              .\Effects\Twist.dll, version=4.0.5873.25056
    velc.SlabText.dll                                      .\Effects\velc.SlabText.dll, version=1.1.8174.32156
    VignettePlus.dll                                       .\Effects\VignettePlus.dll, version=6.0.8407.22549
    voronoi.dll                                            .\Effects\voronoi.dll, version=1.0.0.0
    System.Windows.Forms.Legacy.dll                        .\System.Windows.Forms.Legacy.dll, version=1.0.0.0
    System.Text.RegularExpressions.dll                     .\System.Text.RegularExpressions.dll, version=8.0.724.31311
    System.Reflection.Emit.dll                             .\System.Reflection.Emit.dll, version=8.0.724.31311
    dataexchange.dll                                       C:\WINDOWS\system32\dataexchange.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    twinapi.appcore.dll                                    C:\WINDOWS\system32\twinapi.appcore.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    System.Threading.Tasks.dll                             .\System.Threading.Tasks.dll, version=8.0.724.31311
    amsi.dll                                               C:\WINDOWS\SYSTEM32\amsi.dll, version=10.0.22621.3527 (WinBuild.160101.0800)
    USERENV.dll                                            C:\WINDOWS\SYSTEM32\USERENV.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    MpOav.dll                                              C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.24060.7-0\MpOav.dll, version=4.18.24060.7 (47d4bdd9064bc68e82ed85dd3a432e84e907a9be)
    MPCLIENT.DLL                                           C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.24060.7-0\MPCLIENT.DLL, version=4.18.24060.7 (47d4bdd9064bc68e82ed85dd3a432e84e907a9be)
    gpapi.dll                                              C:\WINDOWS\SYSTEM32\gpapi.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    System.Xml.XDocument.dll                               .\System.Xml.XDocument.dll, version=8.0.724.31311
    System.Private.Xml.Linq.dll                            .\System.Private.Xml.Linq.dll, version=8.0.724.31311
    System.Security.Cryptography.Primitives.dll            .\System.Security.Cryptography.Primitives.dll, version=8.0.724.31311
    textinputframework.dll                                 C:\WINDOWS\SYSTEM32\textinputframework.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    CoreUIComponents.dll                                   C:\WINDOWS\SYSTEM32\CoreUIComponents.dll, version=10.0.22621.3672
    System.IO.Compression.dll                              .\System.IO.Compression.dll, version=8.0.724.31311
    System.Runtime.Numerics.dll                            .\System.Runtime.Numerics.dll, version=8.0.724.31311
    System.Security.Cryptography.Algorithms.dll            .\System.Security.Cryptography.Algorithms.dll, version=8.0.724.31311
    PaintDotNet.SystemLayer.Native.x64.dll                 .\PaintDotNet.SystemLayer.Native.x64.dll, version=5.100.8980.32680
    PhotoSauce.MagicScaler.dll                             .\PhotoSauce.MagicScaler.dll, version=0.14.2.0
    dcomp.DLL                                              C:\WINDOWS\SYSTEM32\dcomp.DLL, version=10.0.22621.3810 (WinBuild.160101.0800)
    PresentationFramework-SystemXmlLinq.dll                .\PresentationFramework-SystemXmlLinq.dll, version=8.0.724.31307
    System.Xml.Linq.dll                                    .\System.Xml.Linq.dll, version=8.0.724.31311
    ParallelLines.Effect.dll                               .\Effects\ParallelLines.Effect.dll, version=1.6.0.575
    Newtonsoft.Json.dll                                    .\Newtonsoft.Json.dll, version=13.0.3.27908
    sxs.dll                                                C:\WINDOWS\SYSTEM32\sxs.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    explorerframe.dll                                      C:\WINDOWS\system32\explorerframe.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    comdlg32.dll                                           C:\WINDOWS\System32\comdlg32.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    apphelp.dll                                            C:\WINDOWS\SYSTEM32\apphelp.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    propsys.dll                                            C:\WINDOWS\system32\propsys.dll, version=7.0.22621.4029 (WinBuild.160101.0800)
    Windows.FileExplorer.Common.dll                        C:\Windows\System32\Windows.FileExplorer.Common.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    DUI70.dll                                              C:\WINDOWS\System32\DUI70.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    DUser.dll                                              C:\WINDOWS\System32\DUser.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    tiptsf.dll                                             C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    edputil.dll                                            C:\WINDOWS\SYSTEM32\edputil.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    oleacc.dll                                             C:\Windows\System32\oleacc.dll, version=7.2.22621.1 (WinBuild.160101.0800)
    thumbcache.dll                                         C:\Windows\System32\thumbcache.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    Windows.Globalization.dll                              C:\Windows\System32\Windows.Globalization.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    globinputhost.dll                                      C:\WINDOWS\SYSTEM32\globinputhost.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    Bcp47Langs.dll                                         C:\WINDOWS\SYSTEM32\Bcp47Langs.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    OneCoreCommonProxyStub.dll                             C:\Windows\System32\OneCoreCommonProxyStub.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    StructuredQuery.dll                                    C:\WINDOWS\System32\StructuredQuery.dll, version=7.0.22621.3672 (WinBuild.160101.0800)
    OneCoreUAPCommonProxyStub.dll                          C:\Windows\System32\OneCoreUAPCommonProxyStub.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    atlthunk.dll                                           C:\WINDOWS\SYSTEM32\atlthunk.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    Windows.Storage.Search.dll                             C:\WINDOWS\system32\Windows.Storage.Search.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    windowsudk.shellcommon.dll                             C:\WINDOWS\system32\windowsudk.shellcommon.dll, version=10.0.22621.3880 (WinBuild.160101.0800)
    Windows.UI.dll                                         C:\Windows\System32\Windows.UI.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    Windows.UI.Immersive.dll                               C:\Windows\System32\Windows.UI.Immersive.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    LINKINFO.dll                                           C:\WINDOWS\SYSTEM32\LINKINFO.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    twinapi.dll                                            C:\Windows\System32\twinapi.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    Windows.System.Launcher.dll                            C:\Windows\System32\Windows.System.Launcher.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    msvcp110_win.dll                                       C:\Windows\System32\msvcp110_win.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    ntshrui.dll                                            C:\WINDOWS\SYSTEM32\ntshrui.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    SspiCli.dll                                            C:\WINDOWS\SYSTEM32\SspiCli.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    srvcli.dll                                             C:\WINDOWS\SYSTEM32\srvcli.dll, version=10.0.22621.3374 (WinBuild.160101.0800)
    cscapi.dll                                             C:\WINDOWS\SYSTEM32\cscapi.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    coml2.dll                                              C:\WINDOWS\System32\coml2.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    IconCodecService.dll                                   C:\WINDOWS\system32\IconCodecService.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    policymanager.dll                                      C:\WINDOWS\SYSTEM32\policymanager.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    MPR.dll                                                C:\WINDOWS\SYSTEM32\MPR.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    p9np.dll                                               C:\WINDOWS\System32\p9np.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    drprov.dll                                             C:\WINDOWS\System32\drprov.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    ntlanman.dll                                           C:\WINDOWS\System32\ntlanman.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    davclnt.dll                                            C:\WINDOWS\System32\davclnt.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    wkscli.dll                                             C:\WINDOWS\System32\wkscli.dll, version=10.0.22621.3374 (WinBuild.160101.0800)
    netutils.dll                                           C:\WINDOWS\System32\netutils.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    cldapi.dll                                             C:\Windows\System32\cldapi.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    dlnashext.dll                                          C:\Windows\System32\dlnashext.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    DevDispItemProvider.dll                                C:\Windows\System32\DevDispItemProvider.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    SETUPAPI.dll                                           C:\WINDOWS\System32\SETUPAPI.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    EhStorShell.dll                                        C:\Windows\System32\EhStorShell.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    ActXPrxy.dll                                           C:\Windows\System32\ActXPrxy.dll, version=10.0.22621.3085 (WinBuild.160101.0800)
    urlmon.dll                                             C:\Windows\System32\urlmon.dll, version=11.00.22621.4029 (WinBuild.160101.0800)
    iertutil.dll                                           C:\Windows\System32\iertutil.dll, version=11.00.22621.4029 (WinBuild.160101.0800)
    PhotoMetadataHandler.dll                               C:\WINDOWS\SYSTEM32\PhotoMetadataHandler.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    System.CodeDom.dll                                     .\System.CodeDom.dll, version=8.0.724.31311
    System.IO.Compression.Native.dll                       .\System.IO.Compression.Native.dll, version=8,0,724,31311 @Commit: 2aade6beb02ea367fd97c4070a4198802fe61c03
    K4os.Compression.LZ4.dll                               .\K4os.Compression.LZ4.dll, version=1.3.8.0
    samcli.dll                                             C:\WINDOWS\SYSTEM32\samcli.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    SAMLIB.dll                                             C:\WINDOWS\SYSTEM32\SAMLIB.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    ntmarta.dll                                            C:\WINDOWS\SYSTEM32\ntmarta.dll, version=10.0.22621.1 (WinBuild.160101.0800)

 

 

Edited by frio
Link to comment
Share on other sites

2 hours ago, frio said:

On the beta version, updates of shaped tools on the canvas are sluggish (shapes, lines, selections). It's like the updates are a couple frames behind the actual mouse cursor movement.

 

...the shapes will catch up to the cursor eventually and end up where they're meant to be - but it feels a little off compared to how it was in the previous versions, I figured I'd report it just in case it's related to something else behind the scenes.

 

I concur with @frio's observation.

 

The easiest way to see the difference is to make a rectangular selection and move the mouse around as you are drawing it. The corner of the selection boundary lags behind the mouse pointer significantly more in 5.1 beta compared to 5.0.13.

 

The selection corner catches up when you cease moving the mouse but this takes longer in 5.1 beta.


My diagnostics:
 

Spoiler

Application                                          paint.net 5.1 (β 5.100.8980.32680)
Build Date                                           02 August 2024
Expiration Date                                      25 October 2024
Install type                                         Classic

Language                                             en-US
Scaling                                              1.25x (120 DPI)
UI/Canvas GPU                                        True
Rendering GPU                                        🚀 Performance (NVIDIA GeForce RTX 3050 Laptop GPU)
Advanced Color                                       True
Remote Session                                       False
Battery Saver                                        False
Animations                                           True
Translucent Windows                                  True
Windows Ink                                          True

OS                                                   Windows 11 Home x64 (10.0.22631.0)
Runtime                                              .NET 8.0.7 x64

Physical Memory                                      16,122 MB (2,358 MB free)
Paging File                                          31,994 MB (7,917 MB free)

CPU                                                  11th Gen Intel(R) Core(TM) i7-11800H @ 2.30GHz
    Speed                                            ~2304 MHz
    Cores / Threads                                  8 / 16
    Features                                         SSE, SSE2, SSE3, SSSE3, SSE4_1, SSE4_2, AVX, AVX2, AVX512BW, AVX512CD, AVX512DQ, AVX512F, AVX512_VBMI

Display                                              1
    Name                                             Dell INSPIRON LGD06A6 Display
    Connected to                                     Intel(R) UHD Graphics
    Resolution                                       1920 x 1080, 8-bit, 60 Hz
    DPI                                              120 (1.25x scale)
    Coordinates                                      (L=0, T=0, R=1920, B=1080)
    Advanced Color                                   StandardDynamicRange
    SDR white level                                  80 nits
    Color space                                      RgbFullGamma22NoneP709
    Composition Support                              Fullscreen, Windowed

Video Card                                           Intel(R) UHD Graphics
    Hardware Acceleration                            Supported
    Performance Class                                Low
    Dedicated Video RAM                              128 MB
    Dedicated System RAM                             0 MB
    Shared System RAM                                8,061 MB
    Driver Version                                   31.0.101.5186
    Vendor ID                                        0x8086
    Device ID                                        0x9A60
    Subsystem ID                                     0x0A811028
    Revision                                         1
    LUID                                             0x00012046
    Flags                                            AcgCompatible, SupportMonitoredFences, KeyedMutexConformance
    Graphics Preemption                              PrimitiveBoundary
    Compute Preemption                               ThreadGroupBoundary
    Outputs                                          1
    Feature Level                                    Level_12_1
    Features                                         ComputeShadersEtc
    Maximum Bitmap Size                              16384

Video Card                                           NVIDIA GeForce RTX 3050 Laptop GPU
    Hardware Acceleration                            Supported
    Performance Class                                Good
    Dedicated Video RAM                              3,980 MB
    Dedicated System RAM                             0 MB
    Shared System RAM                                8,061 MB
    Driver Version                                   31.0.15.4680
    Vendor ID                                        0x10DE
    Device ID                                        0x25A2
    Subsystem ID                                     0x0A811028
    Revision                                         161
    LUID                                             0x000124E4
    Flags                                            AcgCompatible, SupportMonitoredFences, KeyedMutexConformance
    Graphics Preemption                              PixelBoundary
    Compute Preemption                               DispatchBoundary
    Outputs                                          0
    Feature Level                                    Level_12_1
    Features                                         Doubles, ComputeShadersEtc
    Maximum Bitmap Size                              16384

Video Card                                           Microsoft Basic Render Driver
    Hardware Acceleration                            N/A
    Performance Class                                VeryLow
    Dedicated Video RAM                              0 MB
    Dedicated System RAM                             0 MB
    Shared System RAM                                8,061 MB
    Driver Version                                   10.0.22621.3672
    Vendor ID                                        0x1414
    Device ID                                        0x008C
    Subsystem ID                                     0x00000000
    Revision                                         0
    LUID                                             0x000124B5
    Flags                                            Software, AcgCompatible, SupportMonitoredFences, KeyedMutexConformance
    Graphics Preemption                              InstructionBoundary
    Compute Preemption                               InstructionBoundary
    Outputs                                          0
    Feature Level                                    Level_12_1
    Features                                         Doubles, ComputeShadersEtc
    Maximum Bitmap Size                              8388608

Managed assemblies                                   268
    System.Private.CoreLib                           .\System.Private.CoreLib.dll, Version=8.0.0.0, PublicKeyToken=7cec85d7bea7798e
    paintdotnet                                      .\paintdotnet.dll, Version=5.100.8980.32680
    System.Runtime                                   .\System.Runtime.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Windows.Core                         .\PaintDotNet.Windows.Core.dll, Version=5.100.8980.32680
    PaintDotNet.Windows                              .\PaintDotNet.Windows.dll, Version=5.100.8980.32680
    PaintDotNet.ComponentModel                       .\PaintDotNet.ComponentModel.dll, Version=5.100.8980.32680
    PaintDotNet.Primitives                           .\PaintDotNet.Primitives.dll, Version=5.100.8980.32680
    PaintDotNet.Fundamentals                         .\PaintDotNet.Fundamentals.dll, Version=5.100.8980.32680
    System.Windows.Forms                             .\System.Windows.Forms.dll, Version=8.0.0.0, PublicKeyToken=b77a5c561934e089
    System.Diagnostics.Tracing                       .\System.Diagnostics.Tracing.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Threading.Thread                          .\System.Threading.Thread.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Base                                 .\PaintDotNet.Base.dll, Version=5.100.8980.32680
    PaintDotNet.Collections                          .\PaintDotNet.Collections.dll, Version=5.100.8980.32680
    PaintDotNet.Systrace                             .\PaintDotNet.Systrace.dll, Version=5.100.8980.32680
    TerraFX.Interop.Windows                          .\TerraFX.Interop.Windows.dll, Version=10.0.26100.0, PublicKeyToken=35b01b53313a6f7e
    PaintDotNet.Runtime                              .\PaintDotNet.Runtime.dll, Version=5.100.8980.32680
    System.Collections.Concurrent                    .\System.Collections.Concurrent.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PointerToolkit                                   .\PointerToolkit.dll, Version=1.0.1.0
    System.Threading                                 .\System.Threading.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Private.Uri                               .\System.Private.Uri.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Windows.Framework                    .\PaintDotNet.Windows.Framework.dll, Version=5.100.8980.32680
    PaintDotNet.UI                                   .\PaintDotNet.UI.dll, Version=5.100.8980.32680
    Microsoft.Windows.SDK.NET                        .\Microsoft.Windows.SDK.NET.dll, Version=10.0.26100.24, PublicKeyToken=31bf3856ad364e35
    WindowsBase                                      .\WindowsBase.dll, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35
    WinRT.Runtime                                    .\WinRT.Runtime.dll, Version=2.0.0.0, PublicKeyToken=99ea127f02d97709
    PaintDotNet.ObjectModel                          .\PaintDotNet.ObjectModel.dll, Version=5.100.8980.32680
    System.Collections                               .\System.Collections.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PresentationFramework                            .\PresentationFramework.dll, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35
    System.Xaml                                      .\System.Xaml.dll, Version=8.0.0.0, PublicKeyToken=b77a5c561934e089
    System.ComponentModel                            .\System.ComponentModel.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.ComponentModel.Primitives                 .\System.ComponentModel.Primitives.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.ObjectModel                               .\System.ObjectModel.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Runtime.InteropServices                   .\System.Runtime.InteropServices.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Microsoft.Win32.Primitives                       .\Microsoft.Win32.Primitives.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Windows.Forms.Primitives                  .\System.Windows.Forms.Primitives.dll, Version=8.0.0.0, PublicKeyToken=b77a5c561934e089
    System.Drawing.Primitives                        .\System.Drawing.Primitives.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Configuration.ConfigurationManager        .\System.Configuration.ConfigurationManager.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    System.Diagnostics.TraceSource                   .\System.Diagnostics.TraceSource.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Collections.Specialized                   .\System.Collections.Specialized.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Text.Encoding.CodePages                   .\System.Text.Encoding.CodePages.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Core                                 .\PaintDotNet.Core.dll, Version=5.100.8980.32680
    System.Private.Xml                               .\System.Private.Xml.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    System.Xml.ReaderWriter                          .\System.Xml.ReaderWriter.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.SystemLayer                          .\PaintDotNet.SystemLayer.dll, Version=5.100.8980.32680
    System.Net.WebClient                             .\System.Net.WebClient.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    PaintDotNet.Resources                            .\PaintDotNet.Resources.dll, Version=5.100.8980.32680
    System.Memory                                    .\System.Memory.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    System.Drawing.Common                            .\System.Drawing.Common.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    System.Text.Encoding.Extensions                  .\System.Text.Encoding.Extensions.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Linq                                      .\System.Linq.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Data                                 .\PaintDotNet.Data.dll, Version=5.100.8980.32680
    PaintDotNet.Framework                            .\PaintDotNet.Framework.dll, Version=5.100.8980.32680
    System.Threading.ThreadPool                      .\System.Threading.ThreadPool.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    CommunityToolkit.HighPerformance                 .\CommunityToolkit.HighPerformance.dll, Version=8.2.0.0, PublicKeyToken=4aff67a105548ee2
    System.Collections.Immutable                     .\System.Collections.Immutable.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Microsoft.Win32.Registry                         .\Microsoft.Win32.Registry.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Microsoft.Win32.SystemEvents                     .\Microsoft.Win32.SystemEvents.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    ComputeSharp.D2D1                                .\ComputeSharp.D2D1.dll, Version=3.0.1.0, PublicKeyToken=dc35fa229f6881d8
    PointerToolkit.TerraFX.Interop.Windows           .\PointerToolkit.TerraFX.Interop.Windows.dll, Version=10.0.26100.0
    System.ComponentModel.TypeConverter              .\System.ComponentModel.TypeConverter.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PresentationCore                                 .\PresentationCore.dll, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35
    DirectWriteForwarder                             .\DirectWriteForwarder.dll, Version=8.0.0.0, PublicKeyToken=31bf3856ad364e35
    System.ComponentModel.EventBasedAsync            .\System.ComponentModel.EventBasedAsync.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Runtime.Extensions                        .\System.Runtime.Extensions.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Diagnostics.Debug                         .\System.Diagnostics.Debug.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Runtime.CompilerServices.VisualC          .\System.Runtime.CompilerServices.VisualC.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Security.Principal.Windows                .\System.Security.Principal.Windows.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Security.Claims                           .\System.Security.Claims.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Collections.NonGeneric                    .\System.Collections.NonGeneric.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.PropertySystem                       .\PaintDotNet.PropertySystem.dll, Version=5.100.8980.32680
    System.IO.Packaging                              .\System.IO.Packaging.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Effects.Core                         .\PaintDotNet.Effects.Core.dll, Version=5.100.8980.32680
    Accessibility                                    .\Accessibility.dll, Version=4.0.0.0, PublicKeyToken=31bf3856ad364e35
    System.Numerics.Vectors                          .\System.Numerics.Vectors.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.IO.Hashing                                .\System.IO.Hashing.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    SauceControl.Blake2Fast                          .\SauceControl.Blake2Fast.dll, Version=2.0.0.0, PublicKeyToken=deebe556222e40dc
    System.Runtime.Loader                            .\System.Runtime.Loader.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Threading.Tasks.Parallel                  .\System.Threading.Tasks.Parallel.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Reflection.Metadata                       .\System.Reflection.Metadata.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.IO.MemoryMappedFiles                      .\System.IO.MemoryMappedFiles.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Reflection.MetadataLoadContext            .\System.Reflection.MetadataLoadContext.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    PaintDotNet.Effects.Gpu                          .\PaintDotNet.Effects.Gpu.dll, Version=5.100.8980.32680
    CSVFiletype                                      C:\Users\Martin\Documents\paint.net App Files\FileTypes\CSVFiletype.dll, Version=1.0.0.0
    ImZIP.FileType                                   C:\Users\Martin\Documents\paint.net App Files\FileTypes\ImZIP.FileType\ImZIP.FileType.dll, Version=1.4.0.0
    IcoCur                                           C:\Users\Martin\Documents\paint.net App Files\FileTypes\IcoCur.dll, Version=4.0.1.0
    mscorlib                                         .\mscorlib.dll, Version=4.0.0.0, PublicKeyToken=b77a5c561934e089
    System.Drawing                                   .\System.Drawing.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System                                           .\System.dll, Version=4.0.0.0, PublicKeyToken=b77a5c561934e089
    System.Diagnostics.FileVersionInfo               .\System.Diagnostics.FileVersionInfo.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.IO.FileSystem                             .\System.IO.FileSystem.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    WebPFileType                                     .\Bundled\WebPFileType\WebPFileType.dll, Version=1.4.0.0
    DdsFileTypePlus                                  .\Bundled\DDSFileTypePlus\DdsFileTypePlus.dll, Version=1.12.9.0
    AvifFileType                                     .\Bundled\AvifFileType\AvifFileType.dll, Version=3.9.1.0
    PaintDotNet.Effects                              .\PaintDotNet.Effects.dll, Version=5.100.8980.32680
    Mono.Cecil                                       .\Mono.Cecil.dll, Version=0.11.5.0, PublicKeyToken=50cebf1cceb9d05e
    netstandard                                      .\netstandard.dll, Version=2.1.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    PaintDotNet.Effects.Legacy                       .\PaintDotNet.Effects.Legacy.dll, Version=5.100.8980.32680
    PaintDotNet.Plugins.Compatibility                .\PaintDotNet.Plugins.Compatibility.dll, Version=5.100.8980.32680
    System.Diagnostics.Process                       .\System.Diagnostics.Process.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Console                                   .\System.Console.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    AA's_Assistant                                   C:\Users\Martin\Documents\paint.net App Files\Effects\AA's_Assistant.dll, Version=1.1.4329.33034
    Aardvark                                         C:\Users\Martin\Documents\paint.net App Files\Effects\Aardvark.dll, Version=1.0.6.0
    Align Object                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Align Object.dll, Version=1.0.1.9
    Alpha2Gray                                       C:\Users\Martin\Documents\paint.net App Files\Effects\Alpha2Gray.dll, Version=6.0.8407.21872
    System.Runtime.Serialization.Formatters          .\System.Runtime.Serialization.Formatters.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Polygon                                          C:\Users\Martin\Documents\paint.net App Files\Effects\Polygon.dll, Version=4.5.6828.38648
    MarkupRenderer                                   C:\Users\Martin\Documents\paint.net App Files\Effects\MarkupRenderer.dll, Version=1.0.0.0
    WhichSymbolRedux                                 C:\Users\Martin\Documents\paint.net App Files\Effects\WhichSymbolRedux.dll, Version=1.0.0.0
    Gradient Mapping                                 C:\Users\Martin\Documents\paint.net App Files\Effects\Gradient Mapping.dll, Version=4.0.6547.33963
    HSVGradients                                     C:\Users\Martin\Documents\paint.net App Files\Effects\HSVGradients.dll, Version=4.5.6832.41864
    Stickman                                         C:\Users\Martin\Documents\paint.net App Files\Effects\Stickman.dll, Version=1.2.2.30005
    AlphaThreshold                                   C:\Users\Martin\Documents\paint.net App Files\Effects\AlphaThreshold.dll, Version=1.0.1.0
    Alpha_to_0                                       C:\Users\Martin\Documents\paint.net App Files\Effects\Alpha_to_0.dll, Version=1.0.4452.22746
    Alpha_to_255                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Alpha_to_255.dll, Version=1.0.4452.22782
    ApplyMask                                        C:\Users\Martin\Documents\paint.net App Files\Effects\ApplyMask.dll, Version=6.0.8609.32798
    WaveTextSUI                                      C:\Users\Martin\Documents\paint.net App Files\Effects\WaveTextSUI.dll, Version=1.2.4415.33440
    ArtyThing                                        C:\Users\Martin\Documents\paint.net App Files\Effects\ArtyThing.dll, Version=1.0.5.0
    ClipWarpNew                                      C:\Users\Martin\Documents\paint.net App Files\Effects\ClipWarpNew.dll, Version=1.0.1.0
    WaveText                                         C:\Users\Martin\Documents\paint.net App Files\Effects\WaveText.dll, Version=1.2.4415.32811
    Burninate                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Burninate.dll, Version=6.0.8407.22069
    BlackandAlpha+                                   C:\Users\Martin\Documents\paint.net App Files\Effects\BlackandAlpha+.dll, Version=1.2.4329.272
    Bezncurve                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Bezncurve.dll, Version=4.0.1.0
    BandWPlus                                        C:\Users\Martin\Documents\paint.net App Files\Effects\BandWPlus.dll, Version=6.0.8407.21940
    CalliColour                                      C:\Users\Martin\Documents\paint.net App Files\Effects\CalliColour.dll, Version=1.0.1.0
    ClipDisplaceAA                                   C:\Users\Martin\Documents\paint.net App Files\Effects\ClipDisplaceAA.dll, Version=1.2.4.0
    CircleText                                       C:\Users\Martin\Documents\paint.net App Files\Effects\CircleText.dll, Version=1.4.4415.32488
    Calendar                                         C:\Users\Martin\Documents\paint.net App Files\Effects\Calendar.dll, Version=6.0.8478.32276
    BBChart                                          C:\Users\Martin\Documents\paint.net App Files\Effects\BBChart.dll, Version=1.1.0.0
    CellMaker                                        C:\Users\Martin\Documents\paint.net App Files\Effects\CellMaker.dll, Version=1.1.6139.29120
    BBOutlinedGradientText                           C:\Users\Martin\Documents\paint.net App Files\Effects\BBOutlinedGradientText.dll, Version=6.0.8426.37652
    Cobweb                                           C:\Users\Martin\Documents\paint.net App Files\Effects\Cobweb.dll, Version=1.0.1.0
    System.Windows.Forms.DataVisualization           C:\Users\Martin\Documents\paint.net App Files\Effects\System.Windows.Forms.DataVisualization.dll, Version=1.0.0.0, PublicKeyToken=31bf3856ad364e35
    VignettePlus                                     C:\Users\Martin\Documents\paint.net App Files\Effects\VignettePlus.dll, Version=6.0.8407.22549
    ColorBalance                                     C:\Users\Martin\Documents\paint.net App Files\Effects\ColorBalance.dll, Version=6.0.8407.22111
    CombinedAdjustments                              C:\Users\Martin\Documents\paint.net App Files\Effects\CombinedAdjustments.dll, Version=6.0.8407.22130
    CompoGrids                                       C:\Users\Martin\Documents\paint.net App Files\Effects\CompoGrids.dll, Version=1.0.2.0
    Compotool                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Compotool.dll, Version=1.0.1.0
    CodeLab                                          C:\Users\Martin\Documents\paint.net App Files\Effects\CodeLab.dll, Version=6.11.8737.33854
    Contour                                          C:\Users\Martin\Documents\paint.net App Files\Effects\Contour.dll, Version=1.0.1.0
    CreativeTextPro                                  C:\Users\Martin\Documents\paint.net App Files\Effects\CreativeTextPro.dll, Version=6.0.8407.22165
    ContentAwareFill                                 C:\Users\Martin\Documents\paint.net App Files\Effects\ContentAwareFill.dll, Version=1.5.0.0
    ComplementaryColors                              C:\Users\Martin\Documents\paint.net App Files\Effects\ComplementaryColors.dll, Version=6.0.8407.23961
    System.Resources.Extensions                      .\System.Resources.Extensions.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    Cuboids                                          C:\Users\Martin\Documents\paint.net App Files\Effects\Cuboids.dll, Version=1.1.1.0
    VanishPoint                                      C:\Users\Martin\Documents\paint.net App Files\Effects\VanishPoint.dll, Version=1.0.3.0
    System.Diagnostics.StackTrace                    .\System.Diagnostics.StackTrace.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    dpyColorBalance                                  C:\Users\Martin\Documents\paint.net App Files\Effects\dpyColorBalance.dll, Version=1.1.4330.37850
    Dimensions                                       C:\Users\Martin\Documents\paint.net App Files\Effects\Dimensions.dll, Version=1.3.6826.38472
    CurtisBlack.Effects                              C:\Users\Martin\Documents\paint.net App Files\Effects\CurtisBlack.Effects.dll, Version=11.1.3736.39220
    DropShadowPlus                                   C:\Users\Martin\Documents\paint.net App Files\Effects\DropShadowPlus.dll, Version=1.0.8770.528
    Dream                                            C:\Users\Martin\Documents\paint.net App Files\Effects\Dream.dll, Version=6.0.8414.36727
    CurtisBlack.Common                               C:\Users\Martin\Documents\paint.net App Files\Effects\CurtisBlack.Common.dll, Version=1.0.3736.39220
    Dryad                                            C:\Users\Martin\Documents\paint.net App Files\Effects\Dryad.dll, Version=1.0.2.0
    DistortThis                                      C:\Users\Martin\Documents\paint.net App Files\Effects\DistortThis.dll, Version=2.10.0.0
    TwoToneThreshold                                 C:\Users\Martin\Documents\paint.net App Files\Effects\TwoToneThreshold.dll, Version=1.0.0.0
    CurtisBlack.Resources                            C:\Users\Martin\Documents\paint.net App Files\Effects\CurtisBlack.Resources.dll, Version=1.0.3490.22409
    Facet                                            C:\Users\Martin\Documents\paint.net App Files\Effects\Facet.dll, Version=1.0.3.0
    EarthsAndGreys                                   C:\Users\Martin\Documents\paint.net App Files\Effects\EarthsAndGreys.dll, Version=1.0.1.0
    FillFromClipboard                                C:\Users\Martin\Documents\paint.net App Files\Effects\FillFromClipboard.dll, Version=6.0.8407.22397
    FillFromFile                                     C:\Users\Martin\Documents\paint.net App Files\Effects\FillFromFile.dll, Version=6.0.8407.22418
    EOEffects                                        C:\Users\Martin\Documents\paint.net App Files\Effects\EOEffects.dll, Version=1.10.16.12
    EdgeDetectClassic                                C:\Users\Martin\Documents\paint.net App Files\Effects\EdgeDetectClassic.dll, Version=1.0.8424.19432
    TRsSelfeez                                       C:\Users\Martin\Documents\paint.net App Files\Effects\TRsSelfeez.dll, Version=1.0.2.0
    Flip                                             C:\Users\Martin\Documents\paint.net App Files\Effects\Flip.dll, Version=4.6.7358.36953
    Flourish                                         C:\Users\Martin\Documents\paint.net App Files\Effects\Flourish.dll, Version=1.0.3.0
    EdHarvey.Edfects                                 C:\Users\Martin\Documents\paint.net App Files\Effects\EdHarvey.Edfects.dll, Version=5.0.0.0
    System.Net.Http                                  .\System.Net.Http.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Net.Primitives                            .\System.Net.Primitives.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    FloydSteinbergDithering                          C:\Users\Martin\Documents\paint.net App Files\Effects\FloydSteinbergDithering.dll, Version=5.2.8174.39918
    FurBlur                                          C:\Users\Martin\Documents\paint.net App Files\Effects\FurBlur.dll, Version=1.0.1.0
    TRsAlphaCutter                                   C:\Users\Martin\Documents\paint.net App Files\Effects\TRsAlphaCutter.dll, Version=3.0.4.0
    DynamicDraw                                      C:\Users\Martin\Documents\paint.net App Files\Effects\DynamicDraw\DynamicDraw.dll, Version=4.0.0.41103
    Gears                                            C:\Users\Martin\Documents\paint.net App Files\Effects\Gears.dll, Version=1.0.2.0
    GaussianBlurPlus                                 C:\Users\Martin\Documents\paint.net App Files\Effects\GaussianBlurPlus.dll, Version=4.2.5691.27401
    Gossamer                                         C:\Users\Martin\Documents\paint.net App Files\Effects\Gossamer.dll, Version=1.0.2.0
    GradientsGalore                                  C:\Users\Martin\Documents\paint.net App Files\Effects\GradientsGalore.dll, Version=1.0.5.0
    GraphPaper                                       C:\Users\Martin\Documents\paint.net App Files\Effects\GraphPaper.dll, Version=2.1.0.0
    Gravity                                          C:\Users\Martin\Documents\paint.net App Files\Effects\Gravity.dll, Version=1.2.5.29548
    Transparency                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Transparency.dll, Version=6.0.8407.22532
    Gray2Alpha                                       C:\Users\Martin\Documents\paint.net App Files\Effects\Gray2Alpha.dll, Version=6.0.8407.22439
    OptionBasedLibrary v0.7.9                        C:\Users\Martin\Documents\paint.net App Files\Effects\OptionBasedLibrary v0.7.9.dll, Version=0.7.9.1561
    GridCheckerboard                                 C:\Users\Martin\Documents\paint.net App Files\Effects\GridCheckerboard.dll, Version=5.2.8141.24786
    Grid Warp                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Grid Warp.dll, Version=4.0.6544.34496
    Helix                                            C:\Users\Martin\Documents\paint.net App Files\Effects\Helix.dll, Version=1.0.1.0
    Highlight                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Highlight.dll, Version=1.0.1.0
    HueSatPlus                                       C:\Users\Martin\Documents\paint.net App Files\Effects\HueSatPlus.dll, Version=5.2.8174.40274
    ImageDistortion                                  C:\Users\Martin\Documents\paint.net App Files\Effects\ImageDistortion.dll, Version=1.0.3.0
    OptionBasedLibrary v0.7.9                        C:\Users\Martin\Documents\paint.net App Files\Effects\OptionBasedLibrary v0.7.9.dll, Version=0.7.9.1561
    IrisBlur                                         C:\Users\Martin\Documents\paint.net App Files\Effects\IrisBlur.dll, Version=1.0.8690.21381
    Landscape                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Landscape.dll, Version=5.2.8174.40347
    LevelHorizon                                     C:\Users\Martin\Documents\paint.net App Files\Effects\LevelHorizon.dll, Version=6.0.8407.22459
    Liquify                                          C:\Users\Martin\Documents\paint.net App Files\Effects\Liquify.dll, Version=4.0.5873.25113
    LocalContrast                                    C:\Users\Martin\Documents\paint.net App Files\Effects\LocalContrast.dll, Version=3.0.0.0
    MathLaTex                                        C:\Users\Martin\Documents\paint.net App Files\Effects\MathLaTex.dll, Version=1.0.0.31183
    System.Core                                      .\System.Core.dll, Version=4.0.0.0, PublicKeyToken=b77a5c561934e089
    MeasureSelection                                 C:\Users\Martin\Documents\paint.net App Files\Effects\MeasureSelection.dll, Version=1.5.0.0
    MemeMaker                                        C:\Users\Martin\Documents\paint.net App Files\Effects\MemeMaker.dll, Version=6.0.8407.22476
    Metallize                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Metallize.dll, Version=1.2.4415.32969
    MultiSpline                                      C:\Users\Martin\Documents\paint.net App Files\Effects\MultiSpline.dll, Version=1.0.4.0
    MultiThreshold                                   C:\Users\Martin\Documents\paint.net App Files\Effects\MultiThreshold.dll, Version=1.1.4330.38982
    NoiseChoice                                      C:\Users\Martin\Documents\paint.net App Files\Effects\NoiseChoice.dll, Version=1.0.1.0
    Text_on_Path                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Text_on_Path.dll, Version=1.1.0.0
    Object2Colour                                    C:\Users\Martin\Documents\paint.net App Files\Effects\Object2Colour.dll, Version=1.0.1.0
    OptionBasedLibrary v0.6                          C:\Users\Martin\Documents\paint.net App Files\Effects\OptionBasedLibrary v0.6.dll, Version=0.5.0.0
    ObjectBevel                                      C:\Users\Martin\Documents\paint.net App Files\Effects\ObjectBevel.dll, Version=1.0.6.0
    ObjectEdge                                       C:\Users\Martin\Documents\paint.net App Files\Effects\Objectedge.dll, Version=1.0.1.0
    OilPaintingPlus                                  C:\Users\Martin\Documents\paint.net App Files\Effects\OilPaintingPlus.dll, Version=5.2.8141.27893
    TextPlus                                         C:\Users\Martin\Documents\paint.net App Files\Effects\Textplus.dll, Version=1.0.0.0
    ObjectTools                                      C:\Users\Martin\Documents\paint.net App Files\Effects\ObjectTools.dll, Version=6.0.8482.2565
    Organigram.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\Organigram.dll, Version=1.3.7756.29888
    Overblur                                         C:\Users\Martin\Documents\paint.net App Files\Effects\Overblur.dll, Version=1.0.1.0
    Paste Warp Plus                                  C:\Users\Martin\Documents\paint.net App Files\Effects\Paste Warp Plus.dll, Version=1.1.0.0
    TextFactory                                      C:\Users\Martin\Documents\paint.net App Files\Effects\TextFactory.dll, Version=2.1.8770.545
    ParallelLines.Effect                             C:\Users\Martin\Documents\paint.net App Files\Effects\ParallelLines.Effect.dll, Version=1.6.0.575
    PasteAlpha                                       C:\Users\Martin\Documents\paint.net App Files\Effects\PasteAlpha.dll, Version=5.2.8174.40450
    Pastel                                           C:\Users\Martin\Documents\paint.net App Files\Effects\Pastel.dll, Version=5.2.8174.40506
    Perspective                                      C:\Users\Martin\Documents\paint.net App Files\Effects\Perspective.dll, Version=2.1.4415.36116
    OptionBasedLibrary v0.7.9                        C:\Users\Martin\Documents\paint.net App Files\Effects\OptionBasedLibrary v0.7.9.dll, Version=0.7.9.1561
    PhotoAdjustments                                 C:\Users\Martin\Documents\paint.net App Files\Effects\PhotoAdjustments.dll, Version=6.0.8416.38377
    PlugInData                                       C:\Users\Martin\Documents\paint.net App Files\Effects\PlugInData.dll, Version=2.0.0.0
    Poster                                           C:\Users\Martin\Documents\paint.net App Files\Effects\Poster.dll, Version=1.0.2.0
    Psychocolour                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Psychocolour.dll, Version=1.0.1.0
    Table                                            C:\Users\Martin\Documents\paint.net App Files\Effects\Table.dll, Version=1.1.5847.38905
    pxEexpansion                                     C:\Users\Martin\Documents\paint.net App Files\Effects\pxEexpansion.dll, Version=1.0.4437.36287
    RecolourChoice                                   C:\Users\Martin\Documents\paint.net App Files\Effects\RecolourChoice.dll, Version=1.0.1.0
    RemoveDust                                       C:\Users\Martin\Documents\paint.net App Files\Effects\RemoveDust.dll, Version=6.0.8407.22513
    RotateText                                       C:\Users\Martin\Documents\paint.net App Files\Effects\RotateText.dll, Version=1.1.4415.32628
    RotateTextSUI                                    C:\Users\Martin\Documents\paint.net App Files\Effects\RotateTextSUI.dll, Version=1.1.4415.32713
    Replace Colors                                   C:\Users\Martin\Documents\paint.net App Files\Effects\ReplaceColors.dll, Version=1.1.5767.26297
    Rotate_Zoom+                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Rotate_Zoom+.dll, Version=1.11.5237.17779
    Scintillate                                      C:\Users\Martin\Documents\paint.net App Files\Effects\Scintillate.dll, Version=1.0.1.0
    SeamCarving                                      C:\Users\Martin\Documents\paint.net App Files\Effects\SeamCarving.dll, Version=5.2.8176.39366
    Selection2Clear                                  C:\Users\Martin\Documents\paint.net App Files\Effects\Selection2Clear.dll, Version=1.0.1.0
    SelectionTools                                   C:\Users\Martin\Documents\paint.net App Files\Effects\SelectionTools.dll, Version=6.0.8412.38725
    Scribble                                         C:\Users\Martin\Documents\paint.net App Files\Effects\Scribble.dll, Version=1.0.1.0
    ShadowHighlight                                  C:\Users\Martin\Documents\paint.net App Files\Effects\ShadowHighlight.dll, Version=3.0.0.0
    ShadowEffect                                     C:\Users\Martin\Documents\paint.net App Files\Effects\ShadowEffect.dll, Version=1.3.0.23429
    Sharpen+                                         C:\Users\Martin\Documents\paint.net App Files\Effects\Sharpen+.dll, Version=4.0.0.0
    Shape3D                                          C:\Users\Martin\Documents\paint.net App Files\Effects\Shape3D.dll, Version=1.2.6.4
    SharpenClassic                                   C:\Users\Martin\Documents\paint.net App Files\Effects\SharpenClassic.dll, Version=1.0.8420.39106
    StringAndPin                                     C:\Users\Martin\Documents\paint.net App Files\Effects\StringAndPin.dll, Version=1.0.1.0
    SimulateColorDepth                               C:\Users\Martin\Documents\paint.net App Files\Effects\SimulateColorDepth.dll, Version=1.0.4211.27729
    Slinky                                           C:\Users\Martin\Documents\paint.net App Files\Effects\Slinky.dll, Version=1.0.1.0
    Smudge                                           C:\Users\Martin\Documents\paint.net App Files\Effects\Smudge.dll, Version=4.0.5873.25097
    SpeechBubble                                     C:\Users\Martin\Documents\paint.net App Files\Effects\SpeechBubble.dll, Version=2.1.4445.42029
    ComputeSharp.Core                                .\ComputeSharp.Core.dll, Version=3.0.1.0, PublicKeyToken=dc35fa229f6881d8
    System.Xml                                       .\System.Xml.dll, Version=4.0.0.0, PublicKeyToken=b77a5c561934e089
    SpiralText                                       C:\Users\Martin\Documents\paint.net App Files\Effects\SpiralText.dll, Version=1.4.4415.32775
    Squirkle                                         C:\Users\Martin\Documents\paint.net App Files\Effects\Squirkle.dll, Version=1.0.1.0
    SquirkleWarp                                     C:\Users\Martin\Documents\paint.net App Files\Effects\SquirkleWarp.dll, Version=1.0.1.0
    System.Threading.Tasks                           .\System.Threading.Tasks.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Security.Cryptography                     .\System.Security.Cryptography.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Linq.Expressions                          .\System.Linq.Expressions.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Reflection.Emit                           .\System.Reflection.Emit.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Snippets                                         «empty», Version=0.0.0.0
    System.Xml.XDocument                             .\System.Xml.XDocument.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Private.Xml.Linq                          .\System.Private.Xml.Linq.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    System.Security.Cryptography.Primitives          .\System.Security.Cryptography.Primitives.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.IO.Compression                            .\System.IO.Compression.dll, Version=8.0.0.0, PublicKeyToken=b77a5c561934e089
    System.Runtime.Numerics                          .\System.Runtime.Numerics.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    System.Security.Cryptography.Algorithms          .\System.Security.Cryptography.Algorithms.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    Newtonsoft.Json                                  .\Newtonsoft.Json.dll, Version=13.0.0.0, PublicKeyToken=30ad4fe6b2a6aeed
    System.Text.RegularExpressions                   .\System.Text.RegularExpressions.dll, Version=8.0.0.0, PublicKeyToken=b03f5f7f11d50a3a
    PhotoSauce.MagicScaler                           .\PhotoSauce.MagicScaler.dll, Version=0.14.2.0, PublicKeyToken=fc6b9b7b06809481
    System.Runtime.Intrinsics                        .\System.Runtime.Intrinsics.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51
    DHShapeMaker                                     .\Effects\DHShapeMaker.dll, Version=1.7.0.4
    K4os.Compression.LZ4                             .\K4os.Compression.LZ4.dll, Version=1.3.8.0, PublicKeyToken=2186fa9121ef231d
    System.CodeDom                                   .\System.CodeDom.dll, Version=8.0.0.0, PublicKeyToken=cc7b13ffcd2ddd51

Native modules                                       393
    paintdotnet.exe                                  .\paintdotnet.exe, version=5.100.8980.32680
    ntdll.dll                                        C:\WINDOWS\SYSTEM32\ntdll.dll, version=10.0.22621.3374 (WinBuild.160101.0800)
    KERNEL32.DLL                                     C:\WINDOWS\System32\KERNEL32.DLL, version=10.0.22621.3374 (WinBuild.160101.0800)
    KERNELBASE.dll                                   C:\WINDOWS\System32\KERNELBASE.dll, version=10.0.22621.3374 (WinBuild.160101.0800)
    SHELL32.dll                                      C:\WINDOWS\System32\SHELL32.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    msvcp_win.dll                                    C:\WINDOWS\System32\msvcp_win.dll, version=10.0.22621.3374 (WinBuild.160101.0800)
    ucrtbase.dll                                     C:\WINDOWS\System32\ucrtbase.dll, version=10.0.22621.3593 (WinBuild.160101.0800)
    USER32.dll                                       C:\WINDOWS\System32\USER32.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    win32u.dll                                       C:\WINDOWS\System32\win32u.dll, version=10.0.22621.3880 (WinBuild.160101.0800)
    GDI32.dll                                        C:\WINDOWS\System32\GDI32.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    gdi32full.dll                                    C:\WINDOWS\System32\gdi32full.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    ole32.dll                                        C:\WINDOWS\System32\ole32.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    combase.dll                                      C:\WINDOWS\System32\combase.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    RPCRT4.dll                                       C:\WINDOWS\System32\RPCRT4.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    OLEAUT32.dll                                     C:\WINDOWS\System32\OLEAUT32.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    SHLWAPI.dll                                      C:\WINDOWS\System32\SHLWAPI.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    msvcrt.dll                                       C:\WINDOWS\System32\msvcrt.dll, version=7.0.22621.2506 (WinBuild.160101.0800)
    VCRUNTIME140.dll                                 .\VCRUNTIME140.dll, version=14.40.33810.0
    VCRUNTIME140_1.dll                               .\VCRUNTIME140_1.dll, version=14.40.33810.0
    IMM32.DLL                                        C:\WINDOWS\System32\IMM32.DLL, version=10.0.22621.3374 (WinBuild.160101.0800)
    shcore.dll                                       C:\WINDOWS\System32\shcore.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    hostfxr.dll                                      .\hostfxr.dll, version=8,0,724,31311 @Commit: 2aade6beb02ea367fd97c4070a4198802fe61c03
    ADVAPI32.dll                                     C:\WINDOWS\System32\ADVAPI32.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    sechost.dll                                      C:\WINDOWS\System32\sechost.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    bcrypt.dll                                       C:\WINDOWS\System32\bcrypt.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    hostpolicy.dll                                   .\hostpolicy.dll, version=8,0,724,31311 @Commit: 2aade6beb02ea367fd97c4070a4198802fe61c03
    coreclr.dll                                      .\coreclr.dll, version=8,0,724,31311 @Commit: 2aade6beb02ea367fd97c4070a4198802fe61c03
    bcryptPrimitives.dll                             C:\WINDOWS\System32\bcryptPrimitives.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    System.Private.CoreLib.dll                       .\System.Private.CoreLib.dll, version=8.0.724.31311
    clrjit.dll                                       .\clrjit.dll, version=8,0,724,31311 @Commit: 2aade6beb02ea367fd97c4070a4198802fe61c03
    kernel.appcore.dll                               C:\WINDOWS\SYSTEM32\kernel.appcore.dll, version=10.0.22621.2715 (WinBuild.160101.0800)
    paintdotnet.dll                                  .\paintdotnet.dll, version=5.100.8980.32680
    System.Runtime.dll                               .\System.Runtime.dll, version=8.0.724.31311
    uxtheme.dll                                      C:\WINDOWS\system32\uxtheme.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    PaintDotNet.Windows.Core.dll                     .\PaintDotNet.Windows.Core.dll, version=5.100.8980.32680
    PaintDotNet.Windows.dll                          .\PaintDotNet.Windows.dll, version=5.100.8980.32680
    PaintDotNet.ComponentModel.dll                   .\PaintDotNet.ComponentModel.dll, version=5.100.8980.32680
    PaintDotNet.Primitives.dll                       .\PaintDotNet.Primitives.dll, version=5.100.8980.32680
    PaintDotNet.Fundamentals.dll                     .\PaintDotNet.Fundamentals.dll, version=5.100.8980.32680
    System.Windows.Forms.dll                         .\System.Windows.Forms.dll, version=8.0.724.31308
    System.Diagnostics.Tracing.dll                   .\System.Diagnostics.Tracing.dll, version=8.0.724.31311
    icu.dll                                          C:\WINDOWS\SYSTEM32\icu.dll, version=68, 2, 0, 10 (WinBuild.160101.0800)
    System.Threading.Thread.dll                      .\System.Threading.Thread.dll, version=8.0.724.31311
    PaintDotNet.Base.dll                             .\PaintDotNet.Base.dll, version=5.100.8980.32680
    PaintDotNet.Collections.dll                      .\PaintDotNet.Collections.dll, version=5.100.8980.32680
    PaintDotNet.Systrace.dll                         .\PaintDotNet.Systrace.dll, version=5.100.8980.32680
    TerraFX.Interop.Windows.dll                      .\TerraFX.Interop.Windows.dll, version=10.0.26100.0
    PaintDotNet.Runtime.dll                          .\PaintDotNet.Runtime.dll, version=5.100.8980.32680
    System.Collections.Concurrent.dll                .\System.Collections.Concurrent.dll, version=8.0.724.31311
    PointerToolkit.dll                               .\PointerToolkit.dll, version=1.0.1.0
    System.Threading.dll                             .\System.Threading.dll, version=8.0.724.31311
    windows.storage.dll                              C:\WINDOWS\SYSTEM32\windows.storage.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    wintypes.dll                                     C:\WINDOWS\SYSTEM32\wintypes.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    System.Private.Uri.dll                           .\System.Private.Uri.dll, version=8.0.724.31311
    PaintDotNet.Windows.Framework.dll                .\PaintDotNet.Windows.Framework.dll, version=5.100.8980.32680
    PaintDotNet.UI.dll                               .\PaintDotNet.UI.dll, version=5.100.8980.32680
    Microsoft.Windows.SDK.NET.dll                    .\Microsoft.Windows.SDK.NET.dll, version=10.0.26100.1
    WindowsBase.dll                                  .\WindowsBase.dll, version=8.0.724.31307
    WinRT.Runtime.dll                                .\WinRT.Runtime.dll, version=2.0.4.44211
    PaintDotNet.ObjectModel.dll                      .\PaintDotNet.ObjectModel.dll, version=5.100.8980.32680
    System.Collections.dll                           .\System.Collections.dll, version=8.0.724.31311
    PresentationFramework.dll                        .\PresentationFramework.dll, version=8.0.724.31307
    coremessaging.DLL                                C:\WINDOWS\SYSTEM32\coremessaging.DLL, version=10.0.22621.3672 (WinBuild.160101.0800)
    System.Xaml.dll                                  .\System.Xaml.dll, version=8.0.724.31307
    System.ComponentModel.dll                        .\System.ComponentModel.dll, version=8.0.724.31311
    System.ComponentModel.Primitives.dll             .\System.ComponentModel.Primitives.dll, version=8.0.724.31311
    System.ObjectModel.dll                           .\System.ObjectModel.dll, version=8.0.724.31311
    System.Runtime.InteropServices.dll               .\System.Runtime.InteropServices.dll, version=8.0.724.31311
    Microsoft.Win32.Primitives.dll                   .\Microsoft.Win32.Primitives.dll, version=8.0.724.31311
    System.Windows.Forms.Primitives.dll              .\System.Windows.Forms.Primitives.dll, version=8.0.724.31308
    System.Drawing.Primitives.dll                    .\System.Drawing.Primitives.dll, version=8.0.724.31311
    System.Configuration.ConfigurationManager.dll    .\System.Configuration.ConfigurationManager.dll, version=8.0.724.31311
    System.Diagnostics.TraceSource.dll               .\System.Diagnostics.TraceSource.dll, version=8.0.724.31311
    System.Collections.Specialized.dll               .\System.Collections.Specialized.dll, version=8.0.724.31311
    PresentationNative_cor3.dll                      .\PresentationNative_cor3.dll, version=8,0,24,17801 @Commit: 089c9b660a07fad070d3d442b7f49c8e1001a0b3
    System.Text.Encoding.CodePages.dll               .\System.Text.Encoding.CodePages.dll, version=8.0.724.31311
    PaintDotNet.Core.dll                             .\PaintDotNet.Core.dll, version=5.100.8980.32680
    System.Private.Xml.dll                           .\System.Private.Xml.dll, version=8.0.724.31311
    System.Xml.ReaderWriter.dll                      .\System.Xml.ReaderWriter.dll, version=8.0.724.31311
    PaintDotNet.SystemLayer.dll                      .\PaintDotNet.SystemLayer.dll, version=5.100.8980.32680
    System.Net.WebClient.dll                         .\System.Net.WebClient.dll, version=8.0.724.31311
    PaintDotNet.Resources.dll                        .\PaintDotNet.Resources.dll, version=5.100.8980.32680
    System.Memory.dll                                .\System.Memory.dll, version=8.0.724.31311
    System.Drawing.Common.dll                        .\System.Drawing.Common.dll, version=8.0.724.31308
    System.Text.Encoding.Extensions.dll              .\System.Text.Encoding.Extensions.dll, version=8.0.724.31311
    System.Linq.dll                                  .\System.Linq.dll, version=8.0.724.31311
    PaintDotNet.Data.dll                             .\PaintDotNet.Data.dll, version=5.100.8980.32680
    PaintDotNet.Framework.dll                        .\PaintDotNet.Framework.dll, version=5.100.8980.32680
    System.Threading.ThreadPool.dll                  .\System.Threading.ThreadPool.dll, version=8.0.724.31311
    CommunityToolkit.HighPerformance.dll             .\CommunityToolkit.HighPerformance.dll, version=8.2.2.1
    dxgi.DLL                                         C:\WINDOWS\SYSTEM32\dxgi.DLL, version=10.0.22621.3672 (WinBuild.160101.0800)
    System.Collections.Immutable.dll                 .\System.Collections.Immutable.dll, version=8.0.724.31311
    dxcore.dll                                       C:\WINDOWS\SYSTEM32\dxcore.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    Microsoft.Win32.Registry.dll                     .\Microsoft.Win32.Registry.dll, version=8.0.724.31311
    directxdatabasehelper.dll                        C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    Microsoft.Win32.SystemEvents.dll                 .\Microsoft.Win32.SystemEvents.dll, version=8.0.724.31311
    ComputeSharp.D2D1.dll                            .\ComputeSharp.D2D1.dll, version=3.0.1.0
    PointerToolkit.TerraFX.Interop.Windows.dll       .\PointerToolkit.TerraFX.Interop.Windows.dll, version=10.0.26100.0
    System.ComponentModel.TypeConverter.dll          .\System.ComponentModel.TypeConverter.dll, version=8.0.724.31311
    MSCTF.dll                                        C:\WINDOWS\System32\MSCTF.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    PresentationCore.dll                             .\PresentationCore.dll, version=8.0.724.31307
    profapi.dll                                      C:\WINDOWS\SYSTEM32\profapi.dll, version=10.0.22621.3527 (WinBuild.160101.0800)
    DirectWriteForwarder.dll                         .\DirectWriteForwarder.dll, version=8,0,724,31307 @Commit: 43bb8cc831c2658e1117415019264bfe6f644f94
    System.ComponentModel.EventBasedAsync.dll        .\System.ComponentModel.EventBasedAsync.dll, version=8.0.724.31311
    System.Runtime.Extensions.dll                    .\System.Runtime.Extensions.dll, version=8.0.724.31311
    System.Diagnostics.Debug.dll                     .\System.Diagnostics.Debug.dll, version=8.0.724.31311
    System.Runtime.CompilerServices.VisualC.dll      .\System.Runtime.CompilerServices.VisualC.dll, version=8.0.724.31311
    System.Security.Principal.Windows.dll            .\System.Security.Principal.Windows.dll, version=8.0.724.31311
    System.Security.Claims.dll                       .\System.Security.Claims.dll, version=8.0.724.31311
    dwrite.dll                                       C:\WINDOWS\SYSTEM32\dwrite.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    System.Collections.NonGeneric.dll                .\System.Collections.NonGeneric.dll, version=8.0.724.31311
    d2d1.DLL                                         C:\WINDOWS\SYSTEM32\d2d1.DLL, version=10.0.22621.1 (WinBuild.160101.0800)
    PaintDotNet.PropertySystem.dll                   .\PaintDotNet.PropertySystem.dll, version=5.100.8980.32680
    gdiplus.dll                                      C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.3810_none_57f8d842ce19d879\gdiplus.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    WindowsCodecs.dll                                C:\WINDOWS\SYSTEM32\WindowsCodecs.dll, version=10.0.22621.3880 (WinBuild.160101.0800)
    System.IO.Packaging.dll                          .\System.IO.Packaging.dll, version=8.0.724.31311
    XmlLite.dll                                      C:\WINDOWS\SYSTEM32\XmlLite.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    clbcatq.dll                                      C:\WINDOWS\System32\clbcatq.dll, version=2001.12.10941.16384 (WinBuild.160101.0800)
    UIAnimation.dll                                  C:\WINDOWS\System32\UIAnimation.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    PaintDotNet.Effects.Core.dll                     .\PaintDotNet.Effects.Core.dll, version=5.100.8980.32680
    comctl32.dll                                     C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955\comctl32.dll, version=6.10 (WinBuild.160101.0800)
    Accessibility.dll                                .\Accessibility.dll, version=8.0.724.31308
    System.Numerics.Vectors.dll                      .\System.Numerics.Vectors.dll, version=8.0.724.31311
    System.IO.Hashing.dll                            .\System.IO.Hashing.dll, version=8.0.23.53103
    SauceControl.Blake2Fast.dll                      .\SauceControl.Blake2Fast.dll, version=2.0.0.0
    TextShaping.dll                                  C:\WINDOWS\SYSTEM32\TextShaping.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    System.Runtime.Loader.dll                        .\System.Runtime.Loader.dll, version=8.0.724.31311
    System.Threading.Tasks.Parallel.dll              .\System.Threading.Tasks.Parallel.dll, version=8.0.724.31311
    System.Reflection.Metadata.dll                   .\System.Reflection.Metadata.dll, version=8.0.724.31311
    System.IO.MemoryMappedFiles.dll                  .\System.IO.MemoryMappedFiles.dll, version=8.0.724.31311
    System.Reflection.MetadataLoadContext.dll        .\System.Reflection.MetadataLoadContext.dll, version=8.0.23.53103
    PaintDotNet.Effects.Gpu.dll                      .\PaintDotNet.Effects.Gpu.dll, version=5.100.8980.32680
    CSVFiletype.dll                                  C:\Users\Martin\Documents\paint.net App Files\FileTypes\CSVFiletype.dll, version=1.0.0.0
    ImZIP.FileType.dll                               C:\Users\Martin\Documents\paint.net App Files\FileTypes\ImZIP.FileType\ImZIP.FileType.dll, version=1.4.0.0
    IcoCur.dll                                       C:\Users\Martin\Documents\paint.net App Files\FileTypes\IcoCur.dll, version=4.0.1.0
    mscorlib.dll                                     .\mscorlib.dll, version=8.0.724.31311
    System.Drawing.dll                               .\System.Drawing.dll, version=8.0.724.31308
    System.dll                                       .\System.dll, version=8.0.724.31311
    mfplat.dll                                       C:\WINDOWS\SYSTEM32\mfplat.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    cfgmgr32.dll                                     C:\WINDOWS\SYSTEM32\cfgmgr32.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    RTWorkQ.DLL                                      C:\WINDOWS\SYSTEM32\RTWorkQ.DLL, version=10.0.22621.1 (WinBuild.160101.0800)
    CompPkgSup.DLL                                   C:\WINDOWS\SYSTEM32\CompPkgSup.DLL, version=10.0.22621.3527 (WinBuild.160101.0800)
    System.Diagnostics.FileVersionInfo.dll           .\System.Diagnostics.FileVersionInfo.dll, version=8.0.724.31311
    System.IO.FileSystem.dll                         .\System.IO.FileSystem.dll, version=8.0.724.31311
    version.dll                                      C:\WINDOWS\SYSTEM32\version.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    Windows.StateRepositoryPS.dll                    C:\Windows\System32\Windows.StateRepositoryPS.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    WebPFileType.dll                                 .\Bundled\WebPFileType\WebPFileType.dll, version=1.4.0.0
    DdsFileTypePlus.dll                              .\Bundled\DDSFileTypePlus\DdsFileTypePlus.dll, version=1.12.9.0
    AvifFileType.dll                                 .\Bundled\AvifFileType\AvifFileType.dll, version=3.9.1.0
    wtsapi32.dll                                     C:\WINDOWS\SYSTEM32\wtsapi32.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    WINSTA.dll                                       C:\WINDOWS\SYSTEM32\WINSTA.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    d3d11.dll                                        C:\WINDOWS\SYSTEM32\d3d11.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    D3D10Warp.dll                                    C:\WINDOWS\SYSTEM32\D3D10Warp.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    windows.staterepositoryclient.dll                C:\WINDOWS\SYSTEM32\windows.staterepositoryclient.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    windows.staterepositorycore.dll                  C:\WINDOWS\SYSTEM32\windows.staterepositorycore.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    PaintDotNet.Effects.dll                          .\PaintDotNet.Effects.dll, version=5.100.8980.32680
    Mono.Cecil.dll                                   .\Mono.Cecil.dll, version=0.11.5.0
    netstandard.dll                                  .\netstandard.dll, version=8.0.724.31311
    PaintDotNet.Effects.Legacy.dll                   .\PaintDotNet.Effects.Legacy.dll, version=5.100.8980.32680
    PaintDotNet.Plugins.Compatibility.dll            .\PaintDotNet.Plugins.Compatibility.dll, version=5.100.8980.32680
    System.Diagnostics.Process.dll                   .\System.Diagnostics.Process.dll, version=8.0.724.31311
    System.Console.dll                               .\System.Console.dll, version=8.0.724.31311
    AA's_Assistant.dll                               C:\Users\Martin\Documents\paint.net App Files\Effects\AA's_Assistant.dll, version=1.1.4329.33034
    Aardvark.dll                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Aardvark.dll, version=1.0.6.0
    amsi.dll                                         C:\WINDOWS\SYSTEM32\amsi.dll, version=10.0.22621.3527 (WinBuild.160101.0800)
    Align Object.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\Align Object.dll, version=1.0.1.9
    USERENV.dll                                      C:\WINDOWS\SYSTEM32\USERENV.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    Alpha2Gray.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\Alpha2Gray.dll, version=6.0.8407.21872
    MpOav.dll                                        C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.24060.7-0\MpOav.dll, version=4.18.24060.7 (47d4bdd9064bc68e82ed85dd3a432e84e907a9be)
    MPCLIENT.DLL                                     C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.24060.7-0\MPCLIENT.DLL, version=4.18.24060.7 (47d4bdd9064bc68e82ed85dd3a432e84e907a9be)
    CRYPT32.dll                                      C:\WINDOWS\System32\CRYPT32.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    WINTRUST.dll                                     C:\WINDOWS\System32\WINTRUST.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    MSASN1.dll                                       C:\WINDOWS\System32\MSASN1.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    System.Runtime.Serialization.Formatters.dll      .\System.Runtime.Serialization.Formatters.dll, version=8.0.724.31311
    gpapi.dll                                        C:\WINDOWS\SYSTEM32\gpapi.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    AlphaThreshold.dll                               C:\Users\Martin\Documents\paint.net App Files\Effects\AlphaThreshold.dll, version=1.0.0.0
    Alpha_to_0.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\Alpha_to_0.dll, version=1.0.4452.22746
    Alpha_to_255.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\Alpha_to_255.dll, version=1.0.4452.22782
    mscms.DLL                                        C:\WINDOWS\SYSTEM32\mscms.DLL, version=10.0.22621.4029 (WinBuild.160101.0800)
    icm32.dll                                        C:\WINDOWS\SYSTEM32\icm32.dll, version=10.0.22621.3880 (WinBuild.160101.0800)
    UIAutomationCore.dll                             C:\WINDOWS\SYSTEM32\UIAutomationCore.dll, version=7.2.22621.4029 (WinBuild.160101.0800)
    windowscodecsext.dll                             C:\WINDOWS\system32\windowscodecsext.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    ApplyMask.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\ApplyMask.dll, version=6.0.8609.32798
    WaveTextSUI.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\WaveTextSUI.dll, version=1.2.4415.33440
    ArtyThing.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\ArtyThing.dll, version=1.0.5.0
    Cabinet.dll                                      C:\WINDOWS\SYSTEM32\Cabinet.dll, version=5.00 (WinBuild.160101.0800)
    ClipWarpNew.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\ClipWarpNew.dll, version=1.0.1.0
    WaveText.dll                                     C:\Users\Martin\Documents\paint.net App Files\Effects\WaveText.dll, version=1.2.4415.32811
    Burninate.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\Burninate.dll, version=6.0.8407.22069
    BlackandAlpha+.dll                               C:\Users\Martin\Documents\paint.net App Files\Effects\BlackandAlpha+.dll, version=1.2.4329.272
    Bezncurve.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\Bezncurve.dll, version=4.0.1.0
    BandWPlus.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\BandWPlus.dll, version=6.0.8407.21940
    CalliColour.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\CalliColour.dll, version=1.0.1.0
    ClipDisplaceAA.dll                               C:\Users\Martin\Documents\paint.net App Files\Effects\ClipDisplaceAA.dll, version=1.2.4.0
    CircleText.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\CircleText.dll, version=1.4.4415.32488
    Calendar.dll                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Calendar.dll, version=6.0.8478.32276
    BBChart.dll                                      C:\Users\Martin\Documents\paint.net App Files\Effects\BBChart.dll, version=1.1.0.0
    CellMaker.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\CellMaker.dll, version=1.1.6139.29120
    BBOutlinedGradientText.dll                       C:\Users\Martin\Documents\paint.net App Files\Effects\BBOutlinedGradientText.dll, version=6.0.8426.37652
    Cobweb.dll                                       C:\Users\Martin\Documents\paint.net App Files\Effects\Cobweb.dll, version=1.0.1.0
    System.Windows.Forms.DataVisualization.dll       C:\Users\Martin\Documents\paint.net App Files\Effects\System.Windows.Forms.DataVisualization.dll, version=1.0.20.11001
    VignettePlus.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\VignettePlus.dll, version=6.0.8407.22549
    ColorBalance.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\ColorBalance.dll, version=6.0.8407.22111
    CombinedAdjustments.dll                          C:\Users\Martin\Documents\paint.net App Files\Effects\CombinedAdjustments.dll, version=6.0.8407.22130
    CompoGrids.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\CompoGrids.dll, version=1.0.2.0
    Compotool.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\Compotool.dll, version=1.0.1.0
    CodeLab.dll                                      C:\Users\Martin\Documents\paint.net App Files\Effects\CodeLab.dll, version=6.11.8737.33854
    Contour.dll                                      C:\Users\Martin\Documents\paint.net App Files\Effects\Contour.dll, version=1.0.1.0
    CreativeTextPro.dll                              C:\Users\Martin\Documents\paint.net App Files\Effects\CreativeTextPro.dll, version=6.0.8407.22165
    ContentAwareFill.dll                             C:\Users\Martin\Documents\paint.net App Files\Effects\ContentAwareFill.dll, version=1.5.0.0
    ComplementaryColors.dll                          C:\Users\Martin\Documents\paint.net App Files\Effects\ComplementaryColors.dll, version=6.0.8407.23961
    System.Resources.Extensions.dll                  .\System.Resources.Extensions.dll, version=8.0.724.31311
    Cuboids.dll                                      C:\Users\Martin\Documents\paint.net App Files\Effects\Cuboids.dll, version=1.1.1.0
    VanishPoint.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\VanishPoint.dll, version=1.0.3.0
    System.Diagnostics.StackTrace.dll                .\System.Diagnostics.StackTrace.dll, version=8.0.724.31311
    dpyColorBalance.dll                              C:\Users\Martin\Documents\paint.net App Files\Effects\dpyColorBalance.dll, version=1.1.4330.37850
    Dimensions.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\Dimensions.dll, version=1.3.6826.38472
    CurtisBlack.Effects.dll                          C:\Users\Martin\Documents\paint.net App Files\Effects\CurtisBlack.Effects.dll, version=11.1.3736.39220
    DropShadowPlus.dll                               C:\Users\Martin\Documents\paint.net App Files\Effects\DropShadowPlus.dll, version=1.0.8770.528
    Dream.dll                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Dream.dll, version=6.0.8414.36727
    CurtisBlack.Common.dll                           C:\Users\Martin\Documents\paint.net App Files\Effects\CurtisBlack.Common.dll, version=1.0.0.0
    Dryad.dll                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Dryad.dll, version=1.0.2.0
    DistortThis.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\DistortThis.dll, version=2.10.0.0
    TwoToneThreshold.dll                             C:\Users\Martin\Documents\paint.net App Files\Effects\TwoToneThreshold.dll, version=1.0.0.0
    CurtisBlack.Resources.dll                        C:\Users\Martin\Documents\paint.net App Files\Effects\CurtisBlack.Resources.dll, version=1.0.0.0
    Facet.dll                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Facet.dll, version=1.0.3.0
    EarthsAndGreys.dll                               C:\Users\Martin\Documents\paint.net App Files\Effects\EarthsAndGreys.dll, version=1.0.1.0
    FillFromClipboard.dll                            C:\Users\Martin\Documents\paint.net App Files\Effects\FillFromClipboard.dll, version=6.0.8407.22397
    FillFromFile.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\FillFromFile.dll, version=6.0.8407.22418
    EOEffects.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\EOEffects.dll, version=1.10.16.12
    EdgeDetectClassic.dll                            C:\Users\Martin\Documents\paint.net App Files\Effects\EdgeDetectClassic.dll, version=1.0.8424.19432
    TRsSelfeez.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\TRsSelfeez.dll, version=1.0.2.0
    Flip.dll                                         C:\Users\Martin\Documents\paint.net App Files\Effects\Flip.dll, version=4.6.7358.36953
    Flourish.dll                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Flourish.dll, version=1.0.3.0
    EdHarvey.Edfects.dll                             C:\Users\Martin\Documents\paint.net App Files\Effects\EdHarvey.Edfects.dll, version=5.0.0.0
    System.Net.Http.dll                              .\System.Net.Http.dll, version=8.0.724.31311
    System.Net.Primitives.dll                        .\System.Net.Primitives.dll, version=8.0.724.31311
    FloydSteinbergDithering.dll                      C:\Users\Martin\Documents\paint.net App Files\Effects\FloydSteinbergDithering.dll, version=5.2.8174.39918
    FurBlur.dll                                      C:\Users\Martin\Documents\paint.net App Files\Effects\FurBlur.dll, version=1.0.1.0
    TRsAlphaCutter.dll                               C:\Users\Martin\Documents\paint.net App Files\Effects\TRsAlphaCutter.dll, version=3.0.4.0
    DynamicDraw.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\DynamicDraw\DynamicDraw.dll, version=4.0.0
    Gears.dll                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Gears.dll, version=1.0.2.0
    GaussianBlurPlus.dll                             C:\Users\Martin\Documents\paint.net App Files\Effects\GaussianBlurPlus.dll, version=4.2.5691.27401
    Gossamer.dll                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Gossamer.dll, version=1.0.2.0
    GradientsGalore.dll                              C:\Users\Martin\Documents\paint.net App Files\Effects\GradientsGalore.dll, version=1.0.5.0
    GraphPaper.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\GraphPaper.dll, version=2.1.0.0
    Gravity.dll                                      C:\Users\Martin\Documents\paint.net App Files\Effects\Gravity.dll, version=1.2.5.0
    Transparency.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\Transparency.dll, version=6.0.8407.22532
    Gray2Alpha.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\Gray2Alpha.dll, version=6.0.8407.22439
    GridCheckerboard.dll                             C:\Users\Martin\Documents\paint.net App Files\Effects\GridCheckerboard.dll, version=5.2.8141.24786
    Grid Warp.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\Grid Warp.dll, version=4.0.6544.34496
    Helix.dll                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Helix.dll, version=1.0.1.0
    Highlight.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\Highlight.dll, version=1.0.1.0
    HueSatPlus.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\HueSatPlus.dll, version=5.2.8174.40274
    ImageDistortion.dll                              C:\Users\Martin\Documents\paint.net App Files\Effects\ImageDistortion.dll, version=1.0.3.0
    IrisBlur.dll                                     C:\Users\Martin\Documents\paint.net App Files\Effects\IrisBlur.dll, version=1.0.8690.21381
    Landscape.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\Landscape.dll, version=5.2.8174.40347
    LevelHorizon.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\LevelHorizon.dll, version=6.0.8407.22459
    Liquify.dll                                      C:\Users\Martin\Documents\paint.net App Files\Effects\Liquify.dll, version=4.0.5873.25113
    LocalContrast.dll                                C:\Users\Martin\Documents\paint.net App Files\Effects\LocalContrast.dll, version=3.0.0.0
    MathLaTex.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\MathLaTex.dll, version=1.0.0.0
    System.Core.dll                                  .\System.Core.dll, version=8.0.724.31311
    MeasureSelection.dll                             C:\Users\Martin\Documents\paint.net App Files\Effects\MeasureSelection.dll, version=1.5.0.0
    MemeMaker.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\MemeMaker.dll, version=6.0.8407.22476
    Metallize.dll                                    C:\Users\Martin\Documents\paint.net App Files\Effects\Metallize.dll, version=1.2.4415.32969
    MultiSpline.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\MultiSpline.dll, version=1.0.4.0
    MultiThreshold.dll                               C:\Users\Martin\Documents\paint.net App Files\Effects\MultiThreshold.dll, version=1.1.4330.38982
    NoiseChoice.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\NoiseChoice.dll, version=1.0.1.0
    Text_on_Path.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\Text_on_Path.dll, version=1.1.0.0
    Object2Colour.dll                                C:\Users\Martin\Documents\paint.net App Files\Effects\Object2Colour.dll, version=1.0.1.0
    ObjectBevel.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\ObjectBevel.dll, version=1.0.6.0
    Objectedge.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\Objectedge.dll, version=1.0.1.0
    OilPaintingPlus.dll                              C:\Users\Martin\Documents\paint.net App Files\Effects\OilPaintingPlus.dll, version=5.2.8141.27893
    Textplus.dll                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Textplus.dll, version=1.0.0.0
    ObjectTools.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\ObjectTools.dll, version=6.0.8482.2565
    Organigram.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\Organigram.dll, version=1.3.7756.29888
    Overblur.dll                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Overblur.dll, version=1.0.1.0
    Paste Warp Plus.dll                              C:\Users\Martin\Documents\paint.net App Files\Effects\Paste Warp Plus.dll, version=1.1.0.0
    TextFactory.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\TextFactory.dll, version=2.1.8770.545
    ParallelLines.Effect.dll                         C:\Users\Martin\Documents\paint.net App Files\Effects\ParallelLines.Effect.dll, version=1.6.0.575
    PasteAlpha.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\PasteAlpha.dll, version=5.2.8174.40450
    Pastel.dll                                       C:\Users\Martin\Documents\paint.net App Files\Effects\Pastel.dll, version=5.2.8174.40506
    Perspective.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\Perspective.dll, version=2.1.4415.36116
    PhotoAdjustments.dll                             C:\Users\Martin\Documents\paint.net App Files\Effects\PhotoAdjustments.dll, version=6.0.8416.38377
    PlugInData.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\PlugInData.dll, version=2.0.0.0
    Poster.dll                                       C:\Users\Martin\Documents\paint.net App Files\Effects\Poster.dll, version=1.0.2.0
    Psychocolour.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\Psychocolour.dll, version=1.0.1.0
    Table.dll                                        C:\Users\Martin\Documents\paint.net App Files\Effects\Table.dll, version=1.1.5847.38905
    pxEexpansion.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\pxEexpansion.dll, version=1.0.4437.36287
    RecolourChoice.dll                               C:\Users\Martin\Documents\paint.net App Files\Effects\RecolourChoice.dll, version=1.0.1.0
    RemoveDust.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\RemoveDust.dll, version=6.0.8407.22513
    RotateText.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\RotateText.dll, version=1.1.4415.32628
    RotateTextSUI.dll                                C:\Users\Martin\Documents\paint.net App Files\Effects\RotateTextSUI.dll, version=1.1.4415.32713
    ReplaceColors.dll                                C:\Users\Martin\Documents\paint.net App Files\Effects\ReplaceColors.dll, version=1.1.5767.26297
    Rotate_Zoom+.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\Rotate_Zoom+.dll, version=1.11.5237.17779
    Scintillate.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\Scintillate.dll, version=1.0.1.0
    SeamCarving.dll                                  C:\Users\Martin\Documents\paint.net App Files\Effects\SeamCarving.dll, version=5.2.8176.39366
    Selection2Clear.dll                              C:\Users\Martin\Documents\paint.net App Files\Effects\Selection2Clear.dll, version=1.0.1.0
    SelectionTools.dll                               C:\Users\Martin\Documents\paint.net App Files\Effects\SelectionTools.dll, version=6.0.8412.38725
    Scribble.dll                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Scribble.dll, version=1.0.1.0
    ShadowHighlight.dll                              C:\Users\Martin\Documents\paint.net App Files\Effects\ShadowHighlight.dll, version=3.0.0.0
    ShadowEffect.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\ShadowEffect.dll, version=1.3.0.23429
    Sharpen+.dll                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Sharpen+.dll, version=4.0.0.0
    Shape3D.dll                                      C:\Users\Martin\Documents\paint.net App Files\Effects\Shape3D.dll, version=1.2.6.4
    SharpenClassic.dll                               C:\Users\Martin\Documents\paint.net App Files\Effects\SharpenClassic.dll, version=1.0.8420.39106
    StringAndPin.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\StringAndPin.dll, version=1.0.1.0
    SimulateColorDepth.dll                           C:\Users\Martin\Documents\paint.net App Files\Effects\SimulateColorDepth.dll, version=1.0.4211.27729
    Slinky.dll                                       C:\Users\Martin\Documents\paint.net App Files\Effects\Slinky.dll, version=1.0.1.0
    Smudge.dll                                       C:\Users\Martin\Documents\paint.net App Files\Effects\Smudge.dll, version=4.0.5873.25097
    SpeechBubble.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\SpeechBubble.dll, version=2.1.4445.42029
    ComputeSharp.Core.dll                            .\ComputeSharp.Core.dll, version=3.0.1.0
    System.Xml.dll                                   .\System.Xml.dll, version=8.0.724.31311
    SpiralText.dll                                   C:\Users\Martin\Documents\paint.net App Files\Effects\SpiralText.dll, version=1.4.4415.32775
    Squirkle.dll                                     C:\Users\Martin\Documents\paint.net App Files\Effects\Squirkle.dll, version=1.0.1.0
    SquirkleWarp.dll                                 C:\Users\Martin\Documents\paint.net App Files\Effects\SquirkleWarp.dll, version=1.0.1.0
    d3dcompiler_47.DLL                               C:\WINDOWS\SYSTEM32\d3dcompiler_47.DLL, version=10.0.22621.2506 (WinBuild.160101.0800)
    CRYPTSP.dll                                      C:\WINDOWS\SYSTEM32\CRYPTSP.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    System.Threading.Tasks.dll                       .\System.Threading.Tasks.dll, version=8.0.724.31311
    dwmapi.DLL                                       C:\WINDOWS\SYSTEM32\dwmapi.DLL, version=10.0.22621.4029 (WinBuild.160101.0800)
    System.Security.Cryptography.dll                 .\System.Security.Cryptography.dll, version=8.0.724.31311
    Windows.Graphics.dll                             C:\Windows\System32\Windows.Graphics.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    System.Linq.Expressions.dll                      .\System.Linq.Expressions.dll, version=8.0.724.31311
    System.Reflection.Emit.dll                       .\System.Reflection.Emit.dll, version=8.0.724.31311
    dataexchange.dll                                 C:\WINDOWS\system32\dataexchange.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    twinapi.appcore.dll                              C:\WINDOWS\system32\twinapi.appcore.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    powrprof.dll                                     C:\WINDOWS\SYSTEM32\powrprof.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    UMPDC.dll                                        C:\WINDOWS\SYSTEM32\UMPDC.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    System.Xml.XDocument.dll                         .\System.Xml.XDocument.dll, version=8.0.724.31311
    System.Private.Xml.Linq.dll                      .\System.Private.Xml.Linq.dll, version=8.0.724.31311
    nvldumdx.dll                                     C:\WINDOWS\System32\DriverStore\FileRepository\nvdm.inf_amd64_4bdf728185dad10e\nvldumdx.dll, version=31.0.15.4680
    System.Security.Cryptography.Primitives.dll      .\System.Security.Cryptography.Primitives.dll, version=8.0.724.31311
    cryptnet.dll                                     C:\WINDOWS\SYSTEM32\cryptnet.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    drvstore.dll                                     C:\WINDOWS\SYSTEM32\drvstore.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    devobj.dll                                       C:\WINDOWS\SYSTEM32\devobj.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    wldp.dll                                         C:\WINDOWS\SYSTEM32\wldp.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    cryptbase.dll                                    C:\WINDOWS\SYSTEM32\cryptbase.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    textinputframework.dll                           C:\WINDOWS\SYSTEM32\textinputframework.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    imagehlp.dll                                     C:\WINDOWS\System32\imagehlp.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    CoreUIComponents.dll                             C:\WINDOWS\SYSTEM32\CoreUIComponents.dll, version=10.0.22621.3672
    System.IO.Compression.dll                        .\System.IO.Compression.dll, version=8.0.724.31311
    rsaenh.dll                                       C:\WINDOWS\system32\rsaenh.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    System.Runtime.Numerics.dll                      .\System.Runtime.Numerics.dll, version=8.0.724.31311
    nvgpucomp64.dll                                  C:\WINDOWS\System32\DriverStore\FileRepository\nvdm.inf_amd64_4bdf728185dad10e\nvgpucomp64.dll, version=31.0.15.4680
    System.Security.Cryptography.Algorithms.dll      .\System.Security.Cryptography.Algorithms.dll, version=8.0.724.31311
    Newtonsoft.Json.dll                              .\Newtonsoft.Json.dll, version=13.0.3.27908
    System.Text.RegularExpressions.dll               .\System.Text.RegularExpressions.dll, version=8.0.724.31311
    nvwgf2umx.dll                                    C:\WINDOWS\System32\DriverStore\FileRepository\nvdm.inf_amd64_4bdf728185dad10e\nvwgf2umx.dll, version=31.0.15.4680
    WINMM.dll                                        C:\WINDOWS\SYSTEM32\WINMM.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    MessageBus.dll                                   C:\WINDOWS\System32\DriverStore\FileRepository\nvdm.inf_amd64_4bdf728185dad10e\Display.NvContainer\MessageBus.dll, version=
    WS2_32.dll                                       C:\WINDOWS\System32\WS2_32.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    IPHLPAPI.DLL                                     C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL, version=10.0.22621.1 (WinBuild.160101.0800)
    NSI.dll                                          C:\WINDOWS\System32\NSI.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    dhcpcsvc.DLL                                     C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL, version=10.0.22621.1 (WinBuild.160101.0800)
    PaintDotNet.SystemLayer.Native.x64.dll           .\PaintDotNet.SystemLayer.Native.x64.dll, version=5.100.8980.32680
    PhotoSauce.MagicScaler.dll                       .\PhotoSauce.MagicScaler.dll, version=0.14.2.0
    System.Runtime.Intrinsics.dll                    .\System.Runtime.Intrinsics.dll, version=8.0.724.31311
    igd10iumd64.dll                                  C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1462ab0d367b063b\igd10iumd64.dll, version=31.0.101.5186
    apphelp.dll                                      C:\WINDOWS\SYSTEM32\apphelp.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    igd10um64xe.DLL                                  C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1462ab0d367b063b\igd10um64xe.DLL, version=31.0.101.5186
    IntelControlLib.dll                              C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1462ab0d367b063b\IntelControlLib.dll, version=1.0.178
    igdgmm64.dll                                     C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1462ab0d367b063b\igdgmm64.dll, version=31.0.101.5186
    igc64.dll                                        C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1462ab0d367b063b\igc64.dll, version=31.0.101.5186
    dcomp.DLL                                        C:\WINDOWS\SYSTEM32\dcomp.DLL, version=10.0.22621.3810 (WinBuild.160101.0800)
    MsftEdit.DLL                                     C:\WINDOWS\SYSTEM32\MsftEdit.DLL, version=10.0.22621.4029 (WinBuild.160101.0800)
    Windows.Globalization.dll                        C:\Windows\System32\Windows.Globalization.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    globinputhost.dll                                C:\WINDOWS\SYSTEM32\globinputhost.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    Bcp47Langs.dll                                   C:\WINDOWS\SYSTEM32\Bcp47Langs.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    sxs.dll                                          C:\WINDOWS\SYSTEM32\sxs.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    PROPSYS.dll                                      C:\WINDOWS\SYSTEM32\PROPSYS.dll, version=7.0.22621.4029 (WinBuild.160101.0800)
    Windows.System.Launcher.dll                      C:\Windows\System32\Windows.System.Launcher.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    msvcp110_win.dll                                 C:\Windows\System32\msvcp110_win.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    urlmon.dll                                       C:\WINDOWS\SYSTEM32\urlmon.dll, version=11.00.22621.4029 (WinBuild.160101.0800)
    netutils.dll                                     C:\WINDOWS\SYSTEM32\netutils.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    srvcli.dll                                       C:\WINDOWS\SYSTEM32\srvcli.dll, version=10.0.22621.3374 (WinBuild.160101.0800)
    iertutil.dll                                     C:\WINDOWS\SYSTEM32\iertutil.dll, version=11.00.22621.4029 (WinBuild.160101.0800)
    SspiCli.dll                                      C:\Windows\System32\SspiCli.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    WINHTTP.dll                                      C:\Windows\System32\WINHTTP.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    edputil.dll                                      C:\WINDOWS\SYSTEM32\edputil.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    ieframe.dll                                      C:\WINDOWS\System32\ieframe.dll, version=11.00.22621.4029 (WinBuild.160101.0800)
    Secur32.dll                                      C:\WINDOWS\SYSTEM32\Secur32.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    MLANG.dll                                        C:\WINDOWS\SYSTEM32\MLANG.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    WININET.dll                                      C:\WINDOWS\SYSTEM32\WININET.dll, version=11.00.22621.4029 (WinBuild.160101.0800)
    appresolver.dll                                  C:\Windows\System32\appresolver.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    OneCoreUAPCommonProxyStub.dll                    C:\Windows\System32\OneCoreUAPCommonProxyStub.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    pcacli.dll                                       C:\WINDOWS\SYSTEM32\pcacli.dll, version=10.0.22621.2506 (WinBuild.160101.0800)
    MPR.dll                                          C:\WINDOWS\SYSTEM32\MPR.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    sfc_os.dll                                       C:\WINDOWS\System32\sfc_os.dll, version=10.0.22621.1 (WinBuild.160101.0800)
    ServicingCommon.dll                              C:\WINDOWS\SYSTEM32\ServicingCommon.dll, version=10.0.22621.3810 (WinBuild.160101.0800)
    SETUPAPI.dll                                     C:\WINDOWS\System32\SETUPAPI.dll, version=10.0.22621.4029 (WinBuild.160101.0800)
    Windows.Shell.ServiceHostBuilder.dll             C:\Windows\System32\Windows.Shell.ServiceHostBuilder.dll, version=10.0.22621.3672 (WinBuild.160101.0800)
    K4os.Compression.LZ4.dll                         .\K4os.Compression.LZ4.dll, version=1.3.8.0
    System.CodeDom.dll                               .\System.CodeDom.dll, version=8.0.724.31311
    Ninput.dll                                       C:\WINDOWS\system32\Ninput.dll, version=10.0.22621.1 (WinBuild.160101.0800)

 

 

Link to comment
Share on other sites

@frio and @Tactilis, it looks like you're both using Windows 11 v24H2 (which is good). You're both also running your display in SDR mode.

 

Does anything change if you follow the directions I put in Settings -> Color Management for enabling either HDR or WCG mode?

 

It's worth checking this because the rendering paths are slightly different for SDR mode versus Advanced Color HDR/WCG mode. I've been doing most of my testing in WCG mode and have not been seeing this, so hopefully it's just an easy tweak on the SDR side.

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

1 hour ago, BDP said:

Minor issue, really. Only Documentation, Send feedback... and the About items in the Help menu do anything

 

Brian

 

23 minutes ago, Tactilis said:


Agreed. The following do not work.

image.png

 

I can confirm as well. Should be an easy fix.

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

18 minutes ago, Rick Brewster said:

it looks like you're both using Windows 11 v24H2

 

I'm not actually, 23H2 here and no WCG. Microsoft hasn't offered me 24H2, it's still in preview?

 

If I enable HDR mode, paint.net acknownledges that and shows "Windows advanced color" being enabled in settings but there is no difference in the input lag.

Edited by frio
Link to comment
Share on other sites

4 minutes ago, frio said:

...but there is no difference in the input lag.

Okay, that's at least another data point. So either the issue is there no matter what, and I'm just not seeing it on my systems for some reason (my desktop is run at 120Hz, that might affect it), or maybe it only doesn't affect 24H2.

 

24H2 is no longer in preview and is apparently rolling out in 3 waves. The first wave is already underway, it's being installed brand new PCs -- at least the new ARM/Copilot+ ones. The second wave is in September, and then another one in October will complete it.

 

I have it because I enabled Windows Insider Builds with the Release Preview channel, and then it still didn't offer it so I downloaded the ISO (from Microsoft) and installed it that way.

 

If you really want it, go for it, I can lead you through it. But, it's also fine to just wait.

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

Yeah, compared rectangle selector to 5.0.13 in 23H2 HDR mode. While it's not problematic, the lag difference is noticeable.

 

edit:

Maybe "noticeable" isn't a proper term. I meant I can see the difference.

  • Upvote 1
Link to comment
Share on other sites

Here's something you can all do that might get me some more useful data.

 

First, find a location where you can save a file -- maybe just in your documents folder. We need the actual path for it, e.g. C:\Users\rick\Documents

 

Start paint.net with Run (either WinKey+R, or right-click on Start and choose Run near the bottom) by typing paintdotnet:/enableTracing:C:\Users\rick\Documents\pdn.trace -- but customize the path to your actual Documents folder, or the folder you chose

 

If using the portable version then you'd open a command prompt, change to the directory ("cd") where you have paintdotnet.exe, and then run that same command with a slightly different syntax: paintdotnet.exe /enableTracing:C:\Users\rick\Documents\pdn.trace 

 

Next, recreate the issue for a few seconds, and then exit the app.

 

Then, put the pdn.trace file into a ZIP and post it here. I recently added some tracing events to the renderer that might help me see what's happening here.

 

Edit: changed equals sign to a colon in /enableTracing:

 

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

btw you can view the trace file yourself. In Chrome, open a tab and navigate to chrome://tracing, and then drag-and-drop the pdn.trace file into it. It's a weird, old school, clumsy UI but it works

 

image.png

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

Okay I can definitely see the input lag that y'all are reporting -- even at 120Hz. It was only noticeable once I looked for it, but I've seen this before (like a long time ago) when I tried enabling VSync in the code.

 

Enabling VSync in the rendering code for 5.1 Beta solved some performance issues I was seeing on a low-end GPU, but I may just need to tackle that in a different way.

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

15 minutes ago, Rick Brewster said:

Start paint.net with Run (either WinKey+R, or right-click on Start and choose Run near the bottom) by typing paintdotnet:/enableTracing=C:\Users\rick\Documents\pdn.trace -- but customize the path to your actual Documents folder, or the folder you chose

 

If using the portable version then you'd open a command prompt, change to the directory ("cd") where you have paintdotnet.exe, and then run that same command with a slightly different syntax: paintdotnet.exe /enableTracing=C:\Users\rick\Documents\pdn.trace 

 

Dunno if it's relevant anymore if you can see it yourself too, but I tried both of these but no file is created regardless which directory I choose, I made sure to choose ones my account has full control on.

Link to comment
Share on other sites

21 minutes ago, frio said:

 

Dunno if it's relevant anymore if you can see it yourself too, but I tried both of these but no file is created regardless which directory I choose, I made sure to choose ones my account has full control on.

I forgot to mention ... if the path has spaces in it, you'll need to use quote marks "" around it. Or, choose a location without spaces (I usually use c:\temp\pdn.trace )

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

Wait, no, I just gave you the wrong way of doing the setting 🤦‍♂️ (although the quotes are still necessary if there are spaces) 

 

Instead of /enableTracing= it needs to be /enableTracing: ... instead of an equals sign, use a colon

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

37 minutes ago, Rick Brewster said:

Instead of /enableTracing= it needs to be /enableTracing: ... instead of an equals sign, use a colon

 

10-4, what I did was drag around a box shape on the canvas, then a line, then a selection (all of those look laggy) and finally drew a stroke with the brush tool inside the selection (that is not noticeably laggy).

 

 

pdn.zip

Edited by frio
  • Upvote 1
Link to comment
Share on other sites

2 hours ago, Rick Brewster said:

@frio and @Tactilis, it looks like you're both using Windows 11 v24H2 (which is good).


I'm also on 23H2, not 24, with all cumulative updates installed.

image.png


Here's the trace while drawing a rectangular selection and moving the mouse around:
 

pdn.zip

 

 

  • Upvote 1
Link to comment
Share on other sites

Okay it's what I expected, IDXGISwapChain::Present1() is waiting on VSync and it's just holding up the UI thread a lot. At 120+ Hz you won't really notice it unless you look for it, but it's still adding input lag at any refresh rate. You're both at 60Hz so the effect will be very noticeable.

 

I'll post a new build in a bit that changes this up. I may even add some temporary settings to let you play around with a few different ways of implementing vsync (as well as vsync off).

 

image.png

 

 

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

5 hours ago, Tactilis said:

image.png


BTW, there is an avoidable clash of shortcut letters in the Help menu:  'paint.net Website' and 'Plugins'

Maybe the first of those could be changed to 'paint.net Website'


Also, 'Send feedback or bug report...' is missing a shortcut.  Perhaps 'Send feedback or bug report...'

  • Upvote 1
Link to comment
Share on other sites

Alright I’m still working on the input lag issue. It’s actually easy to solve if you are okay with tearing (vsync off and DXGI_SWAP_CHAIN_FLAG_ALLOW_TEARING https://learn.microsoft.com/en-us/windows/win32/api/dxgi/ne-dxgi-dxgi_swap_chain_flag). Almost. 
 

This build (8980) is using double buffering, and what I’m finding is that I actually need not just triple buffering, but quadruple and maybe even 5x buffering. This is to ensure that a Present operation does not ever block and therefore cause lag. And then this causes window resizing to be very slow and cranky, so I have to drop down to double buffering in that case, at which point there is some flickering …. agggh 😂 Flip mode is really tricky to code for but I think I’ve almost got it all figured out.

  • You're a Smart Cookie! 1

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

Okay I've got everything figured out and fixed up, I just need to do another round of testing to validate I didn't break some niche/corner case (e.g. @toe_head2001 had weird input lag on his AMD card at some point).

The Paint.NET Blog: https://blog.getpaint.net/

Donations are always appreciated! https://www.getpaint.net/donate.html

forumSig_bmwE60.jpg

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...