https://bugs.kde.org/show_bug.cgi?id=487030
Bug ID: 487030 Summary: Krita: Internal Error. SAFE ASSERT (krita): "!isFromTimer || !m_isEmitting" in file C:/builds/graphics/krita/libs/global/kis_signal_compre ssor.cpp, line 165 Classification: Applications Product: krita Version: 5.2.2 Platform: Microsoft Windows OS: Microsoft Windows Status: REPORTED Severity: crash Priority: NOR Component: * Unknown Assignee: krita-bugs-n...@kde.org Reporter: kitkatchunk...@gmail.com Target Milestone: --- Created attachment 169484 --> https://bugs.kde.org/attachment.cgi?id=169484&action=edit Screenshot of the internal error. SUMMARY I used to be able to run my script on older versions of Krita. But since about 5.2, Krita crashes. I'll attach a screenshot of the error. Now the script runs for a bit, then Krita crashes completely. STEPS TO REPRODUCE 1. Create a file around 512 px by 512 px. 2. Draw a couple quick frames on an animation timeline. I have about 15 frames (0 to 14). 3. Now run the python script to export each frame in different resolution in .png: from PyQt5.QtWidgets import QDialog, QLabel, QVBoxLayout from PyQt5.QtCore import QObject, pyqtSlot import time from krita import * app = Krita.instance() doc = app.activeDocument() #Variables canvasName = doc.name() layerName = doc.activeNode().name() doc.setBatchmode(True) filePath = "D:/BugTest/" formatFile = ".png" animLength = doc.animationLength() #Fix the export settings infoExport = InfoObject() infoExport.setProperty('alpha', True) infoExport.setProperty('compression', 1) infoExport.setProperty('forceSRGB', True) infoExport.setProperty('indexed', True) infoExport.setProperty('interlaced', False) infoExport.setProperty('saveSRGBProfile', False) infoExport.setProperty('transparencyFillcolor', [255, 255, 255]) #Set up animation for i in range(0,animLength): doc.setCurrentTime(i) #print(doc.currentTime()) frameName = ["_01", "_02", "_03", "_04", "_05", "_06", "_07", "_08", "_09", "_10", "_11", "_12", "_13", "_14", "_15"] #Exporting the image 112px by 112px sizeFile = "_112x112" fileName = filePath + layerName + frameName[i] + sizeFile + formatFile doc.scaleImage(112, 112, 100, 100, "Bilinear") doc.exportImage(fileName, infoExport) time.sleep(5) app.action('edit_undo').trigger() time.sleep(5) #Exporting the image 56px by 56px sizeFile = "_56x56" fileName = filePath + layerName + frameName[i] + sizeFile + formatFile doc.scaleImage(56, 56, 100, 100, "Bilinear") doc.exportImage(fileName, infoExport) time.sleep(5) app.action('edit_undo').trigger() time.sleep(5) #Exporting the image 28px by 28px sizeFile = "_28x28" fileName = filePath + layerName + frameName[i] + sizeFile + formatFile doc.scaleImage(28, 28, 100, 100, "Bilinear") doc.exportImage(fileName, infoExport) time.sleep(5) app.action('edit_undo').trigger() time.sleep(5) 4. Error shows up after a few exportations. OBSERVED RESULT Krita will show up the error I linked in the attachment after rendering out a few frames. Then it will crash. The error happens randomly, but it never successfully rendered the whole timeline. EXPECTED RESULT Before Krita 5.1; the script worked as intended. It exported each frames of the timeline into three different format (512px, 56px, 28px). I did a couple projects using this script without any issues in the past. -------------------------------------- SOFTWARE/OS VERSIONS -------------------------------------- -------------------------------------- Krita System Information -------------------------------------- Krita Version: 5.2.2 (git a921cd5) Installation type: installer / portable package Hidpi: true Qt Version (compiled): 5.15.7 Version (loaded): 5.15.7 OS Information Build ABI: x86_64-little_endian-llp64 Build CPU: x86_64 CPU: x86_64 Kernel Type: winnt Kernel Version: 10.0.19045 Pretty Productname: Windows 10 Version 2009 Product Type: windows Product Version: 10 Locale Languages: en_US, en, en_Latn_US C locale: C QLocale current: en-CA QLocale system: en-CA QTextCodec for locale: UTF-8 Process ACP: 65001 (UTF-8) System locale default ACP: 1252 (ANSI - Latin I) OpenGL Info Vendor: "NVIDIA Corporation" Renderer: "NVIDIA GeForce RTX 3060/PCIe/SSE2" Driver version: "4.6.0 NVIDIA 551.23" Shading language: "4.60 NVIDIA" Requested format: QSurfaceFormat(version 3.3, options QFlags<QSurfaceFormat::FormatOption>(DeprecatedFunctions), depthBufferSize 24, redBufferSize 8, greenBufferSize 8, blueBufferSize 8, alphaBufferSize 8, stencilBufferSize 8, samples -1, swapBehavior QSurfaceFormat::DoubleBuffer, swapInterval 0, colorSpace QSurfaceFormat::DefaultColorSpace, profile QSurfaceFormat::CompatibilityProfile) Current format: QSurfaceFormat(version 4.6, options QFlags<QSurfaceFormat::FormatOption>(DeprecatedFunctions), depthBufferSize 24, redBufferSize 8, greenBufferSize 8, blueBufferSize 8, alphaBufferSize 8, stencilBufferSize 8, samples 0, swapBehavior QSurfaceFormat::DoubleBuffer, swapInterval 1, colorSpace QSurfaceFormat::sRGBColorSpace, profile QSurfaceFormat::CompatibilityProfile) GL version: 4.6 Supports deprecated functions true Is OpenGL ES: false supportsBufferMapping: true supportsBufferInvalidation: true forceDisableTextureBuffers: false Extensions: GL_NV_stereo_view_rendering GL_ARB_robustness GL_ARB_transform_feedback3 GL_NV_viewport_swizzle GL_ARB_texture_env_crossbar GL_EXT_texture_buffer_object GL_NV_depth_buffer_float GL_KHR_blend_equation_advanced_coherent GL_NV_memory_object_sparse GL_ARB_texture_rg GL_EXT_packed_depth_stencil GL_ARB_blend_func_extended GL_EXT_texture_shadow_lod GL_EXT_memory_object_win32 GL_NV_draw_texture GL_EXT_sparse_texture2 GL_EXT_rescale_normal GL_NV_point_sprite GL_NV_conditional_render GL_NV_bindless_multi_draw_indirect_count GL_NV_query_resource_tag GL_ARB_compute_shader GL_NV_light_max_exponent GL_NV_shading_rate_image GL_EXT_fog_coord GL_EXT_draw_buffers2 GL_EXT_blend_equation_separate GL_EXT_blend_minmax GL_NV_blend_square GL_NVX_progress_fence GL_ARB_robust_buffer_access_behavior GL_ARB_shader_atomic_counters GL_ARB_shader_group_vote GL_ARB_transpose_matrix GL_ARB_point_sprite GL_ARB_texture_stencil8 GL_NV_depth_clamp GL_ARB_transform_feedback_instanced GL_NV_bindless_multi_draw_indirect GL_KHR_robust_buffer_access_behavior GL_NV_conservative_raster_underestimation GL_NV_shader_thread_group GL_EXT_gpu_program_parameters GL_ARB_pixel_buffer_object GL_EXT_abgr GL_ARB_invalidate_subdata GL_OVR_multiview GL_ARB_texture_query_lod GL_ARB_explicit_uniform_location GL_NV_conservative_raster_pre_snap_triangles GL_ARB_multi_bind GL_EXT_shader_image_load_store GL_ARB_draw_indirect GL_ARB_vertex_shader GL_ARB_texture_border_clamp GL_ARB_shader_clock GL_ARB_shader_texture_image_samples GL_EXT_timer_query GL_ARB_sample_locations GL_EXT_framebuffer_sRGB GL_EXT_blend_subtract GL_ARB_texture_multisample GL_NV_blend_equation_advanced_coherent GL_ARB_geometry_shader4 GL_NV_query_resource GL_ARB_multitexture GL_NV_command_list GL_NV_conservative_raster_dilate GL_ARB_texture_query_levels GL_S3_s3tc GL_NV_uniform_buffer_std430_layout GL_NV_shader_atomic_fp16_vector GL_ARB_texture_gather GL_NV_fragment_shader_barycentric GL_AMD_seamless_cubemap_per_texture GL_NV_occlusion_query GL_ARB_buffer_storage GL_NV_fragment_program GL_ARB_vertex_type_10f_11f_11f_rev GL_ARB_ES3_2_compatibility GL_ARB_parallel_shader_compile GL_ARB_vertex_program GL_ARB_depth_buffer_float GL_EXT_texture_lod_bias GL_EXT_texture_env_combine GL_EXT_texture_filter_minmax GL_NV_fragment_program2 GL_EXT_texture_integer GL_NV_texture_shader GL_ARB_direct_state_access GL_EXT_separate_shader_objects GL_ARB_depth_clamp GL_EXT_import_sync_object GL_EXT_texture_sRGB GL_ARB_internalformat_query2 GL_EXT_stencil_wrap GL_EXT_framebuffer_multisample GL_ARB_bindless_texture GL_EXT_packed_pixels GL_NV_texture_compression_vtc GL_EXT_texture_sRGB_decode GL_ARB_clear_buffer_object GL_NV_compute_shader_derivatives GL_ARB_cull_distance GL_NVX_nvenc_interop GL_NV_texture_shader3 GL_ARB_gl_spirv GL_ARB_imaging GL_ARB_shader_image_load_store GL_EXT_compiled_vertex_array GL_ARB_seamless_cubemap_per_texture GL_EXT_semaphore_win32 GL_NV_texture_rectangle GL_EXT_packed_float GL_ARB_tessellation_shader GL_ARB_copy_image GL_NV_parameter_buffer_object GL_ARB_shader_draw_parameters GL_ARB_vertex_array_bgra GL_ARB_explicit_attrib_location GL_NV_path_rendering_shared_edge GL_EXT_texture_mirror_clamp GL_EXT_window_rectangles GL_NV_blend_equation_advanced GL_NV_packed_depth_stencil GL_EXT_stencil_two_side GL_ARB_shader_texture_lod GL_NV_bindless_texture GL_NV_fill_rectangle GL_NV_fog_distance GL_EXT_geometry_shader4 GL_NV_shader_texture_footprint GL_AMD_vertex_shader_viewport_index GL_ARB_get_program_binary GL_ARB_texture_rgb10_a2ui GL_AMD_multi_draw_indirect GL_NV_ES3_1_compatibility GL_ARB_ES3_1_compatibility GL_ARB_uniform_buffer_object GL_NVX_multigpu_info GL_NVX_gpu_multicast2 GL_EXT_separate_specular_color GL_ARB_enhanced_layouts GL_EXT_texture_compression_dxt1 GL_ARB_framebuffer_no_attachments GL_EXT_shadow_funcs GL_ARB_texture_swizzle GL_ARB_texture_barrier GL_NV_vertex_program GL_NV_shader_atomic_counters GL_ARB_copy_buffer GL_ARB_texture_float GL_NVX_linked_gpu_multicast GL_NV_fragment_program_option GL_ARB_sample_shading GL_ARB_fragment_shader_interlock GL_EXT_transform_feedback2 GL_ARB_multi_draw_indirect GL_EXT_vertex_array_bgra GL_ATI_draw_buffers GL_NV_vertex_array_range GL_EXT_texture_cube_map GL_ARB_shader_ballot GL_ARB_sparse_texture2 GL_ARB_shader_viewport_layer_array GL_ARB_arrays_of_arrays GL_ARB_texture_env_combine GL_NV_pixel_data_range GL_ARB_depth_texture GL_NV_geometry_shader4 GL_ARB_shader_atomic_counter_ops GL_EXT_shader_image_load_formatted GL_ARB_fragment_layer_viewport GL_NV_geometry_shader_passthrough GL_ARB_texture_mirror_clamp_to_edge GL_EXT_gpu_shader4 GL_ARB_half_float_pixel GL_NV_scissor_exclusive GL_ARB_compatibility GL_ARB_point_parameters GL_KHR_debug GL_ARB_color_buffer_float GL_IBM_texture_mirrored_repeat GL_ARB_ES2_compatibility GL_ARB_transform_feedback_overflow_query GL_EXT_provoking_vertex GL_EXT_texture_compression_latc GL_ARB_viewport_array GL_NV_register_combiners GL_EXT_texture_swizzle GL_ARB_get_texture_sub_image GL_ARB_draw_instanced GL_ARB_texture_buffer_object GL_EXT_blend_func_separate GL_EXT_texture_array GL_NV_draw_vulkan_image GL_NV_representative_fragment_test GL_NV_gpu_program5 GL_ARB_texture_storage GL_EXT_texture3D GL_EXT_texture_lod GL_ARB_shading_language_100 GL_ARB_post_depth_coverage GL_AMD_vertex_shader_layer GL_NV_half_float GL_EXT_raster_multisample GL_ARB_compute_variable_group_size GL_ARB_shader_subroutine GL_ARB_conditional_render_inverted GL_ARB_texture_view GL_NV_transform_feedback2 GL_EXT_texture_shared_exponent GL_SGIX_depth_texture GL_ARB_ES3_compatibility GL_ARB_spirv_extensions GL_KHR_parallel_shader_compile GL_NV_shader_atomic_int64 GL_NV_gpu_program5_mem_extended GL_ARB_vertex_attrib_64bit GL_ARB_fragment_shader GL_KHR_context_flush_control GL_EXT_texture_compression_rgtc GL_EXT_multi_draw_arrays GL_ARB_framebuffer_sRGB GL_ARB_draw_buffers GL_ARB_texture_mirrored_repeat GL_ARB_window_pos GL_NV_texture_barrier GL_NV_fragment_shader_interlock GL_NV_texture_dirty_tile_map GL_ARB_texture_filter_anisotropic GL_NV_shader_buffer_load GL_ARB_instanced_arrays GL_ARB_transform_feedback2 GL_NV_texture_rectangle_compressed GL_NV_parameter_buffer_object2 GL_NV_texture_multisample GL_ARB_half_float_vertex GL_NV_shader_subgroup_partitioned GL_KHR_shader_subgroup GL_NV_internalformat_sample_query GL_ARB_fragment_coord_conventions GL_EXT_vertex_array GL_EXT_memory_object GL_NV_memory_attachment GL_EXT_post_depth_coverage GL_ARB_pipeline_statistics_query GL_NV_vertex_attrib_integer_64bit GL_NV_timeline_semaphore GL_SUN_slice_accum GL_ARB_conservative_depth GL_ARB_seamless_cube_map GL_NV_shader_thread_shuffle GL_NV_primitive_restart GL_SGIS_generate_mipmap GL_NV_blend_minmax_factor GL_ARB_texture_env_dot3 GL_EXT_vertex_attrib_64bit GL_EXT_texture_storage GL_KTX_buffer_region GL_ARB_polygon_offset_clamp GL_OVR_multiview2 GL_ARB_map_buffer_range GL_EXT_depth_bounds_test GL_IBM_rasterpos_clip GL_NV_ES1_1_compatibility GL_NV_shader_atomic_float64 GL_ARB_separate_shader_objects GL_NV_shader_storage_buffer_object GL_NV_clip_space_w_scaling GL_ARB_fragment_program GL_NV_shader_atomic_float GL_EXT_texture_env_dot3 GL_NV_sample_locations GL_NV_explicit_multisample GL_NV_texgen_reflection GL_ARB_texture_env_add GL_ARB_texture_compression_rgtc GL_EXT_semaphore GL_ARB_stencil_texturing GL_ARB_texture_buffer_object_rgb32 GL_NV_vertex_buffer_unified_memory GL_ARB_vertex_attrib_binding GL_ARB_texture_buffer_range GL_EXT_texture_object GL_ARB_shader_storage_buffer_object GL_NV_viewport_array2 GL_WIN_swap_hint GL_KHR_no_error GL_NV_texture_env_combine4 GL_ARB_texture_cube_map_array GL_EXT_bgra GL_EXT_polygon_offset_clamp GL_NV_gpu_program_fp64 GL_NV_transform_feedback GL_NV_vertex_program3 GL_ARB_indirect_parameters GL_ARB_shading_language_420pack GL_EXT_draw_instanced GL_EXT_win32_keyed_mutex GL_ARB_base_instance GL_EXT_Cg_shader GL_EXT_texture_sRGB_R8 GL_ARB_texture_compression_bptc GL_NV_path_rendering GL_ARB_shader_objects GL_NV_fragment_coverage_to_color GL_ARB_gpu_shader5 GL_ARB_provoking_vertex WGL_EXT_swap_control GL_NV_gpu_program4 GL_ARB_shading_language_include GL_NV_vertex_array_range2 GL_ARB_debug_output GL_ARB_sync GL_ARB_derivative_control GL_ARB_texture_storage_multisample GL_KHR_robustness GL_NV_conservative_raster_pre_snap GL_NVX_conditional_render GL_ARB_query_buffer_object GL_ARB_shader_image_size GL_EXT_direct_state_access GL_EXT_pixel_buffer_object GL_NV_vertex_program1_1 GL_NV_register_combiners2 GL_KHR_blend_equation_advanced GL_EXT_blend_color GL_ARB_program_interface_query GL_ARB_occlusion_query2 GL_ARB_texture_cube_map GL_NV_fence GL_ARB_framebuffer_object GL_NV_conservative_raster GL_ATI_texture_mirror_once GL_ARB_draw_elements_base_vertex GL_NVX_gpu_memory_info GL_EXTX_framebuffer_mixed_formats GL_NVX_blend_equation_advanced_multi_draw_buffers GL_NV_uniform_buffer_unified_memory GL_NV_vertex_program2 GL_NV_alpha_to_coverage_dither_control GL_EXT_framebuffer_multisample_blit_scaled GL_ARB_map_buffer_alignment GL_ARB_clear_texture GL_ARB_vertex_buffer_object GL_NV_copy_image GL_ARB_shader_bit_encoding GL_ARB_sparse_texture_clamp GL_EXT_framebuffer_blit GL_EXT_framebuffer_object GL_ARB_sparse_texture GL_NV_copy_depth_to_color GL_ARB_internalformat_query GL_NV_multisample_coverage GL_ARB_gpu_shader_fp64 GL_NV_mesh_shader GL_ARB_shading_language_packing GL_NV_texture_shader2 GL_NV_framebuffer_mixed_samples GL_ARB_occlusion_query GL_EXT_point_parameters GL_ARB_clip_control GL_ARB_multisample GL_ARB_texture_non_power_of_two GL_ARB_draw_buffers_blend GL_ARB_timer_query GL_EXT_multiview_texture_multisample GL_EXT_texture_env_add GL_EXT_texture_filter_anisotropic GL_ARB_texture_filter_minmax GL_NV_float_buffer GL_ARB_sampler_objects GL_NV_feature_query GL_EXT_texture_edge_clamp GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_shadow GL_NV_gpu_multicast GL_EXT_secondary_color GL_ARB_compressed_texture_pixel_storage GL_NV_sample_mask_override_coverage GL_ARB_texture_rectangle GL_EXT_shader_integer_mix GL_NV_primitive_shading_rate GL_EXT_texture_compression_s3tc GL_EXT_draw_range_elements GL_ARB_shader_precision GL_ATI_texture_float GL_NV_vertex_program2_option GL_SGIX_shadow GL_NV_gpu_shader5 GL_NV_gpu_program4_1 GL_ARB_gpu_shader_int64 GL_NV_multisample_filter_hint GL_EXT_multiview_timer_query GL_NV_compute_program5 GL_EXT_bindable_uniform GL_ARB_texture_compression GL_ARB_fragment_program_shadow GL_NV_framebuffer_multisample_coverage GL_SGIS_texture_lod GL_ARB_sparse_buffer GL_ARB_vertex_array_object QPA OpenGL Detection Info supportsDesktopGL: true supportsAngleD3D11: true isQtPreferAngle: true Detected renderers: (Supported) ANGLE (NVIDIA, NVIDIA GeForce RTX 3060 Direct3D11 vs_5_0 ps_5_0, D3D11-31.0.15.5123) (OpenGL ES 3.0.0 (ANGLE 2.1.0 git hash: f2280c0c5f93+krita_qt5)) (Supported) ANGLE (Microsoft, Microsoft Basic Render Driver Direct3D11 vs_5_0 ps_5_0, D3D11-10.0.19041.3636) (OpenGL ES 3.0.0 (ANGLE 2.1.0 git hash: f2280c0c5f93+krita_qt5)) (Supported) NVIDIA GeForce RTX 3060/PCIe/SSE2 (4.6.0 NVIDIA 551.23) useBufferInvalidation (config option): false Hardware Information GPU Acceleration: desktop Memory: 65277 Mb Number of Cores: 24 Swap Location: C:/Users/Kitsu/AppData/Local/Temp Built for: sse2 Base instruction set: fma3+avx2 Supported instruction sets: fma3+avx2 avx2 fma3+avx avx fma4 fma3+sse4.2 sse4.2 sse4.1 ssse3 sse3 sse2 Current Settings Current Swap Location: C:/Users/Kitsu/AppData/Local/Temp Current Swap Location writable: true Undo Enabled: true Undo Stack Limit: 200 Use OpenGL: true Use OpenGL Texture Buffer: true Disable Vector Optimizations: false Disable AVX Optimizations: false Canvas State: OPENGL_SUCCESS Autosave Interval: 300 Use Backup Files: true Number of Backups Kept: 1 Backup File Suffix: ~ Backup Location: Same Folder as the File Backup Location writable: false Resource Location: C:/Users/Kitsu/AppData/Roaming/krita Use Win8 Pointer Input: false Use RightMiddleTabletButton Workaround: false Levels of Detail Enabled: false Use Zip64: false Loaded Python Plugins SpriteSheetExporter blender_layer colorspace comics_project_management_tools documenttools exportlayers filtermanager krita_script_starter lastdocumentsdocker plugin_importer quick_settings_docker scripter tenbrushes tenscripts Display Information Number of screens: 3 Screen: 0 Name: \\.\DISPLAY2 Depth: 32 Scale: 1 Physical DPI79.4886 Logical DPI96 Physical Size: 621, 341 Position: 0, 0 Resolution in pixels: 1920x1080 Manufacturer: Acer Technologies Model: B287K Refresh Rate: 60 Serial Number: 572685925 Screen: 1 Name: \\.\DISPLAY1 Depth: 32 Scale: 1 Physical DPI102.406 Logical DPI96 Physical Size: 476, 268 Position: -1029, 1080 Resolution in pixels: 1920x1080 Manufacturer: UGD Model: Artist22R Pro Refresh Rate: 60 Serial Number: 538970371 Screen: 2 Name: \\.\DISPLAY5 Depth: 32 Scale: 1 Physical DPI102.299 Logical DPI96 Physical Size: 477, 268 Position: -1920, 0 Resolution in pixels: 1920x1080 Manufacturer: Acer Technologies Model: V226HQL Refresh Rate: 60 Serial Number: LY7AA008851C -------------------------------------- Krita Usage Log -------------------------------------- SESSION: 14 May 2024 15:58:11 -0400. Executing C:\Program Files\Krita (x64)\bin\krita.exe D:\BugTest.kra Krita Version: 5.2.2 (git a921cd5), Qt version compiled: 5.15.7, loaded: 5.15.7. Process ID: 8256 -- -- -- -- -- -- -- -- 14 May 2024 15:58:11 -0400: Style: fusion. Available styles: windowsvista, Windows, Fusion 14 May 2024 15:58:11 -0400: Database is up to date. Version: 0.0.17, created by Krita 5.1.0-beta1, at Fri Jun 24 01:50:08 2022 14 May 2024 15:58:11 -0400: Non-store package - creating updater 14 May 2024 15:58:17 -0400: Removing autosave file: D://.BugTest.kra-autosave.kra 14 May 2024 15:58:17 -0400: Importing application/x-krita to application/x-krita. Location: D:\BugTest.kra. Real location: D:\BugTest.kra. Batchmode: 0 14 May 2024 15:58:17 -0400: Loaded image from application/x-krita. Size: 512 * 512 pixels, 8.33333 dpi. Color model: 8-bit integer/channel RGB/Alpha (sRGB built-in). Layers: 3 14 May 2024 15:59:39 -0400: Converting from application/x-krita to image/png. Location: D:/BugTest/Paint Layer 1_01_112x112.png. Real location: D:/BugTest/Paint Layer 1_01_112x112.png. Batchmode: 1. Configuration: <!DOCTYPE params> <params> <param type="internal" name="CICPCompatiblePrimaries">1</param> <param type="internal" name="CICPCompatibleTransferFunction">13</param> <param type="string" name="ColorDepthID"><![CDATA[U8]]></param> <param type="string" name="ColorModelID"><![CDATA[RGBA]]></param> <param type="internal" name="HDRSupported">false</param> <param type="internal" name="ImageContainsTransparency">false</param> <param type="internal" name="alpha">true</param> <param type="internal" name="compression">1</param> <param type="internal" name="forceSRGB">true</param> <param type="internal" name="indexed">true</param> <param type="internal" name="interlaced">false</param> <param type="internal" name="sRGB">true</param> <param type="internal" name="saveSRGBProfile">false</param> <param type="internal" name="transparencyFillcolor"></param> </params> (... Had to remove some log here for the bug report character limit.) 14 May 2024 16:01:34 -0400: Converting from application/x-krita to image/png. Location: D:/BugTest/Paint Layer 1_08_28x28.png. Real location: D:/BugTest/Paint Layer 1_08_28x28.png. Batchmode: 1. Configuration: <!DOCTYPE params> <params> <param type="internal" name="CICPCompatiblePrimaries">1</param> <param type="internal" name="CICPCompatibleTransferFunction">13</param> <param type="string" name="ColorDepthID"><![CDATA[U8]]></param> <param type="string" name="ColorModelID"><![CDATA[RGBA]]></param> <param type="internal" name="HDRSupported">false</param> <param type="internal" name="ImageContainsTransparency">false</param> <param type="internal" name="alpha">true</param> <param type="internal" name="compression">1</param> <param type="internal" name="forceSRGB">true</param> <param type="internal" name="indexed">true</param> <param type="internal" name="interlaced">false</param> <param type="internal" name="sRGB">true</param> <param type="internal" name="saveSRGBProfile">false</param> <param type="internal" name="transparencyFillcolor"></param> </params> 14 May 2024 16:01:38 -0400: ASSERT (krita): "m_textureTiles.size() > tile" in file C:/builds/graphics/krita/libs/ui/opengl/kis_opengl_image_textures.h, line 127 14 May 2024 16:01:38 -0400: SAFE ASSERT (krita): "!isFromTimer || !m_isEmitting" in file C:/builds/graphics/krita/libs/global/kis_signal_compressor.cpp, line 165 ================================================================================ -------------------------------------- Krita Crash Log -------------------------------------- Error occurred on Tuesday, May 14, 2024 at 16:01:52. krita.exe caused a Breakpoint at location 00007FFC4740B872 in module KERNELBASE.dll. AddrPC Params 00007FFC4740B872 00000034B5EF5868 0000000000000085 0000000000000001 KERNELBASE.dll!wil::details::DebugBreak+0x2 00007FFB96AD5AAA 0000000000040000 00007FFC46FCF05B 0000000000000001 Qt5Core.dll!qt_message_fatal+0xa 00007FFB96AD6A74 000001585AAE0000 0000015800000000 000001586F481518 Qt5Core.dll!QMessageLogger::fatal+0x72 00007FFC0F51304F 00000018698F0C9C 00007FFB8C0877C9 3FE0000000000000 libkritaglobal.dll!kis_assert_common+0x63f 00007FFC0F5131C1 000001587E081C60 00007FFB8C1BD948 0000015872867760 libkritaglobal.dll!kis_safe_assert_recoverable+0x11 00007FFC0F54306A 0000000000000062 00007FFB96ADD67A 0000000000000001 libkritaglobal.dll!KisSignalCompressor::tryEmitOnTick+0x7a 00007FFC0F543103 00007FFB8C1BCFC0 000001586B5F5120 00007FFB8C705B88 libkritaglobal.dll!KisSignalCompressor::slotTimerExpired+0x33 00007FFB96CD0CBB 000001586C14FBE0 0000000000000000 00000034B5EF20D0 Qt5Core.dll!doActivate<false>+0x56b 00007FFB96CD5EE4 00000034B5EF1C60 00000034B5EF1C48 00000034B5EF1C60 Qt5Core.dll!QTimer::timerEvent+0x54 00007FFB96CC5A6F 00000034B5EFF490 00000158606F8900 000001585C648101 Qt5Core.dll!QObject::event+0x4f 00007FFB9773C5A3 00007FFB8C16C030 0000015872867760 00007FFB8C16C030 Qt5Widgets.dll!QApplicationPrivate::notify_helper+0x103 00007FFB9773D823 000001586C14FBE0 0000000000000000 0000015806A12A00 Qt5Widgets.dll!QApplication::notify+0x1e3 00007FFB981C7648 0000015806A12A00 00007FFB97898348 00000158607025C0 libkritaui.dll!KisApplication::notify+0xa8 00007FFB96C9DFB2 0000000000000023 00007FFB96EB8579 00000034B5EF20F0 Qt5Core.dll!QCoreApplication::notifyInternal2+0x92 00007FFB96CF18E3 000001587E3FE5D0 00007FFB96CA51D9 0000000000000000 Qt5Core.dll!QEventDispatcherWin32Private::sendTimerEvent+0xc3 00007FFB96CF3D5D 00000034B5EFF490 00000158606F8900 000001585C648101 Qt5Core.dll!QEventDispatcherWin32::event+0x10d 00007FFB9773C5A3 0000000000000113 000001586F2F71E0 00000034B5EF2280 Qt5Widgets.dll!QApplicationPrivate::notify_helper+0x103 00007FFB9773D823 0000000000000000 000001585C648138 0000015868788BE0 Qt5Widgets.dll!QApplication::notify+0x1e3 00007FFB981C7648 0000000700000109 000001585A910000 000001585C648150 libkritaui.dll!KisApplication::notify+0xa8 00007FFB96C9DFB2 0000000000000000 00007FFC00000000 0000000000000070 Qt5Core.dll!QCoreApplication::notifyInternal2+0x92 00007FFB96C9EDFD 0000000000000064 000001585A949550 0000000000140000 Qt5Core.dll!QCoreApplicationPrivate::sendPostedEvents+0x1ed 00007FFB95EC8A4E 0000000000000000 000001585A949620 0000000000000064 qwindows.dll!QWindowsGuiEventDispatcher::sendPostedEvents+0xe 00007FFB96CF20FC 000001580678A0A0 00000034B5EFF490 0000000000000001 Qt5Core.dll!QEventDispatcherWin32::processEvents+0x5c 00007FFB95EC8A35 0000000000000000 0000000000000010 0000000000140000 qwindows.dll!QWindowsGuiEventDispatcher::processEvents+0x15 00007FFB96C9B236 0000000000100000 000001587E431760 0000015806CAB8B0 Qt5Core.dll!QEventLoop::exec+0x1e6 00007FFB9792BAC4 00000158067EEB30 0000015800000011 00007FFB96FC5250 Qt5Widgets.dll!QDialog::exec+0x1d4 00007FFB9796A66C 0000000000040000 00007FFC46FCF05B 0000000000000000 Qt5Widgets.dll!showNewMessageBox+0x17c 00007FFB9796A734 000001587DDB8ED8 0000015800000000 0000000000000000 Qt5Widgets.dll!QMessageBox::critical+0x24 00007FFC0F512FC2 0000000000000000 0000000000000000 0000000000000000 libkritaglobal.dll!kis_assert_common+0x5b2 00007FFC0F5131A1 00000034B5EF5C20 00007FFBD639F0AA 0000000000000000 libkritaglobal.dll!kis_assert_recoverable+0x11 00007FFB97F46534 000001585AAE02B4 00000034B5EF5B89 0000000000000050 libkritaui.dll!KisOpenGLImageTextures::recalculateCache+0x334 00007FFB97F5C022 000001586C0D8958 00007FFC46FD3A81 000001580687FD50 libkritaui.dll!KisOpenGLCanvasRenderer::updateCanvasProjection+0x62 00007FFB97F4413E 00007FFB98325918 0000000000000005 000001587DFF5EB0 libkritaui.dll!non-virtual thunk to KisOpenGLCanvas2::updateCanvasProjection(KisSharedPtr<KisUpdateInfo>)+0x2e 00007FFB97CE1C5B 0000015802A0FAC0 00007FFB96FA6450 00000034B5EF5D90 libkritaui.dll!KisCanvasWidgetBase::updateCanvasProjection+0xbb 00007FFB97F441AD 000001585AAE0000 0000015866821850 0000015872867880 libkritaui.dll!non-virtual thunk to KisOpenGLCanvas2::updateCanvasProjection(QVector<KisSharedPtr<KisUpdateInfo> > const&)+0xd 00007FFB97CEB18C 000001586B46E5D0 000001586B1EC720 BFF0000000000000 libkritaui.dll!KisCanvas2::updateCanvasProjection()::$_1::operator()+0x2c 00007FFB97CEAE46 0000000000000062 000000007FFFFFFF 0000000000000001 libkritaui.dll!KisCanvas2::updateCanvasProjection+0x76 00007FFB96CD0CBB 0000015800000000 00007FFB8C38BC49 0000000000000000 Qt5Core.dll!doActivate<false>+0x56b 00007FFC0F5430A7 000001587DEFD720 00007FFB8BF245E0 000001586C102F00 libkritaglobal.dll!KisSignalCompressor::tryEmitOnTick+0xb7 00007FFC0F542F01 00000034B5EF6030 00000034B5EF6018 00000034B5EF6030 libkritaglobal.dll!KisSignalCompressor::start+0x91 00007FFB96CC5D31 000001585AAE0000 0000002A00000101 0000015860528070 Qt5Core.dll!QObject::event+0x311 00007FFB9773C5A3 000001585AAE0000 00007FFC499347B1 0000015860528070 Qt5Widgets.dll!QApplicationPrivate::notify_helper+0x103 00007FFB9773D823 0000000000000000 000001585C648138 0000015868C18660 Qt5Widgets.dll!QApplication::notify+0x1e3 00007FFB981C7648 00000158607AF920 000001585A910000 000001585C648150 libkritaui.dll!KisApplication::notify+0xa8 00007FFB96C9DFB2 0101010101091101 0911010900000000 0101010101010101 Qt5Core.dll!QCoreApplication::notifyInternal2+0x92 00007FFB96C9EDFD 0000000000000001 000001585A949550 0000015867080A90 Qt5Core.dll!QCoreApplicationPrivate::sendPostedEvents+0x1ed 00007FFB95EC8A4E 0000000000000000 0000000000000000 0000000000000000 qwindows.dll!QWindowsGuiEventDispatcher::sendPostedEvents+0xe 00007FFB96CF20FC 00007FFB96C9E430 00007FFB96C9E43E 000000186981BEE1 Qt5Core.dll!QEventDispatcherWin32::processEvents+0x5c 00007FFB95EC8A35 000001586B0682B0 0000015806795F60 0000000000000001 qwindows.dll!QWindowsGuiEventDispatcher::processEvents+0x15 00007FFB97DB0568 0000015867080A90 0000000006727E40 000000004AA8E495 libkritaui.dll!KisDelayedSaveDialog::blockIfImageIsBusy+0xb8 00007FFB98228DE1 0000000000000000 00007FFB96ADBC2B 000001587E4FB890 libkritaui.dll!(anonymous namespace)::busyWaitWithFeedback+0x1d1 00007FFB9822FEF1 BFF0000000000000 000001587E4FB890 0000000000000070 libkritaui.dll!std::__1::__function::__func<void (*)(KisSharedPtr<KisImage>), std::__1::allocator<void (*)(KisSharedPtr<KisImage>)>, void (KisSharedPtr<KisImage>)>::operator()+0x21 00007FFB9985A03C 0000015872B17B60 0000000006727E40 0000015867080A90 libkritaimage.dll!KisBusyWaitBroker::notifyWaitOnImageStarted+0xbc 00007FFB99917645 0000000006727E40 0000000000000000 000001586B0198F0 libkritaimage.dll!KisImage::waitForDone+0x25 00007FFB8C2886D3 00000034B5EF990B 0000000000000027 0000000000000000 libkritalibkis.dll!Document::scaleImage+0x1a3 00007FFB8C20B469 00007FFB8C1A1A80 0000000000000000 000001587284B628 krita.pyd!meth_Document_scaleImage+0x119 00007FFB8C39B741 0000000000000000 00007FFB8C39B6CC 000001586B74A750 python310.dll!PyType_IsSubtype+0x729 00007FFB8C34F855 000001586B0198F0 0000000000000000 00000034B5EF9DE0 python310.dll!_PyEval_EvalFrameDefault+0x3fb5 00007FFB8C32D3B9 0000015872894C00 0000015872894C00 06051B7A21E6B7DA python310.dll!PyMapping_Check+0x1d5 00007FFB8C3AB656 0000015872894C00 00007FFB8C7127F8 000001586C13EEF0 python310.dll!PyEval_EvalCode+0x82 00007FFB8C3AB4DF 0000015864DD4C20 000001586C145798 0000000000000000 python310.dll!_PyArena_Free+0x3f3 00007FFB8C3AB3DF 000001586B0198F0 0000000000000002 0000015864DD4C20 python310.dll!_PyArena_Free+0x2f3 00007FFB8C33ECED 00007FFB8C33EC40 000001586B0198F0 0000000000000002 python310.dll!PyObject_GetBuffer+0x10f5 00007FFB8C397814 41E0000000000000 000001586B0198F0 0000015872894A40 python310.dll!PyVectorcall_Call+0x5c 00007FFB8C3975EB 0000000000000000 0000015864DD5120 000001586C145780 python310.dll!_PyObject_Call+0x4f 00007FFB8C39772F 000001586C145780 00000034B5EFA0F0 0000000000000001 python310.dll!_PyObject_Call+0x193 00007FFB8C35179E 000001586B0198F0 0000000000000002 0000015864DA15B0 python310.dll!_PyEval_EvalFrameDefault+0x5efe 00007FFB8C34A937 00000034B5EFA4A0 000001587284ABC0 8000000000000003 python310.dll!_PyFunction_Vectorcall+0x87 00007FFB8C34D1FE 000001586B0198F0 0000000000000002 000001586B0198F0 python310.dll!_PyEval_EvalFrameDefault+0x195e 00007FFB8C34C7C7 000001586B0198F0 0000000000000002 00000158020568B0 python310.dll!_PyEval_EvalFrameDefault+0xf27 00007FFB8C3495E5 000001580652698A 00000034B5EFAC20 0000015806541D10 python310.dll!PyObject_Hash+0xd25 00007FFB8C34D1FE 000001586B0198F0 0000000000000001 00000158728660F0 python310.dll!_PyEval_EvalFrameDefault+0x195e 00007FFB8C34A937 0000000000000000 0000000000000000 000001586B0198F0 python310.dll!_PyFunction_Vectorcall+0x87 00007FFB8C349739 000001586C0D87C0 000001586B0198F0 000001586C15E6C0 python310.dll!PyObject_Hash+0xe79 00007FFB8C397814 000001586B47DF90 000001586B0198F0 0000000000000000 python310.dll!PyVectorcall_Call+0x5c 00007FFB8C3975EB 000001586C17F640 00007FFB8C732C08 0000015866956B40 python310.dll!_PyObject_Call+0x4f 00007FFB8C08D72F 0000015872865B40 00007FFB8C37CE38 00007FFB8C770158 QtCore.pyd!PyInit_QtCore+0x16913f 00007FFB8C08D5D1 00000034B5EFB360 0000000000000020 00000034B5EFB360 QtCore.pyd!PyInit_QtCore+0x168fe1 00007FFB8C08D454 00000034B5EFB360 00007FFC4993B3C7 000001585AAE0000 QtCore.pyd!PyInit_QtCore+0x168e64 00007FFB8C08E137 0000015872867520 00007FFB8C1BD948 00007FFB8BBDCE40 QtCore.pyd!PyInit_QtCore+0x169b47 00007FFB8C08E0B4 00007FFB8BC39960 0000000000000000 000001587E4D94A0 QtCore.pyd!PyInit_QtCore+0x169ac4 00007FFB96CD0B5B 0000000000000000 000001586C14FBE0 00007FFB8C1A7440 Qt5Core.dll!doActivate<false>+0x40b 00007FFB97733AA4 00007FFB8BF245E0 0000000000000000 0000001E0000001F Qt5Widgets.dll!QAction::activate+0xd4 00007FFB9781B745 00000034B5EFBA38 00007FFB8BF245E0 0000015866956B40 Qt5Widgets.dll!QAbstractButtonPrivate::click+0x55 00007FFB9781C8BC 00000034B5EFB4A0 00007FFB96CA51D9 00007FFB8C1B67E8 Qt5Widgets.dll!QAbstractButton::mouseReleaseEvent+0x10c 00007FFB97911C7E 000001586C14FBE0 000001587E4D94A0 00000034B5EFBA38 Qt5Widgets.dll!QToolButton::mouseReleaseEvent+0xe 00007FFB97776479 000001586037B5C0 00000034B5EFB5E9 0000000000000002 Qt5Widgets.dll!QWidget::event+0x5d9 00007FFB97912389 00000034B5EFBA38 0000000000000003 00000034B5EFB6D0 Qt5Widgets.dll!QToolButton::event+0x129 00007FFB9773C5A3 0000000000000000 000001586C0D8960 00000034B5EFBF28 Qt5Widgets.dll!QApplicationPrivate::notify_helper+0x103 00007FFB9773F20A 0000000000000000 0000000000000000 0000000000000000 Qt5Widgets.dll!QApplication::notify+0x1bca 00007FFB981C7648 000000380000003E 3FF0000000000000 0000000000000000 libkritaui.dll!KisApplication::notify+0xa8 00007FFB96C9DFB2 0000000000000000 0000000000000000 3FF0000000000000 Qt5Core.dll!QCoreApplication::notifyInternal2+0x92 00007FFB9773CE6F 000001586B0198F0 00007FFB8C47BEBA 000001586C14FBE0 Qt5Widgets.dll!QApplicationPrivate::sendMouseEvent+0x36f 00007FFB97793091 0000015802A54230 00007FFB96FA6800 0000000000000000 Qt5Widgets.dll!QWidgetWindow::handleMouseEvent+0x7d1 00007FFB97791CBC 00000034B5EFBF28 000001585C6666C0 0000000000000003 Qt5Widgets.dll!QWidgetWindow::event+0xbc 00007FFB9773C5A3 000001580000010B 0000000000000028 00000034B5EFBC68 Qt5Widgets.dll!QApplicationPrivate::notify_helper+0x103 00007FFB9773D823 000001585CFB6140 0000000000000001 00000034B5EFC060 Qt5Widgets.dll!QApplication::notify+0x1e3 00007FFB981C7648 00000034B5EFBEE8 00000034B5EFBEA8 0000000000000000 libkritaui.dll!KisApplication::notify+0xa8 00007FFB96C9DFB2 0000000000000000 0000000000000000 0000000000000000 Qt5Core.dll!QCoreApplication::notifyInternal2+0x92 00007FFB97075FD7 0000015860375090 000001585A949550 00007FFB96B6D780 Qt5Gui.dll!QGuiApplicationPrivate::processMouseEvent+0xc07 00007FFB9705D1EA 0000000000000000 000001585A949620 0000000000000024 Qt5Gui.dll!QWindowSystemInterface::sendWindowSystemEvents+0xda 00007FFB96CF20FC 000001580273B240 00000034B5EFF490 0000000000000001 Qt5Core.dll!QEventDispatcherWin32::processEvents+0x5c 00007FFB95EC8A35 00000034B5EFF3B8 00007FFB96AE9D60 00007FFB96B6D780 qwindows.dll!QWindowsGuiEventDispatcher::processEvents+0x15 00007FFB96C9B236 0000015800000002 0000015800000002 000001586062E6E0 Qt5Core.dll!QEventLoop::exec+0x1e6 00007FFB96C9E54D 00000034B5EFF458 00007FFC00000000 00000034B5EFF428 Qt5Core.dll!QCoreApplication::exec+0x6d 00007FFB99D455D9 0000000000000001 00007FF6AC175110 0000000000000000 krita.dll!krita_main+0x41a9 00007FF6AC1713D6 0000000000000000 0000000000000000 0000000000000000 krita.exe!__tmainCRTStartup+0x276 00007FF6AC171156 0000000000000000 0000000000000000 0000000000000000 krita.exe!WinMainCRTStartup+0x16 00007FFC48907344 0000000000000000 0000000000000000 0000000000000000 KERNEL32.DLL!BaseThreadInitThunk+0x14 00007FFC499626B1 0000000000000000 0000000000000000 0000000000000000 ntdll.dll!RtlUserThreadStart+0x21 00007FF6AC170000-00007FF6AC1B5000 krita.exe 5.2.2.100 00007FFC49910000-00007FFC49B08000 ntdll.dll 6.2.19041.4239 00007FFC488F0000-00007FFC489AD000 KERNEL32.DLL 6.2.19041.3636 00007FFC47320000-00007FFC47616000 KERNELBASE.dll 6.2.19041.4291 00007FFC46FC0000-00007FFC470C0000 ucrtbase.dll 6.2.19041.3636 00007FFB99D40000-00007FFB9A3CA000 krita.dll 00007FFC43040000-00007FFC4304D000 libkritamultiarch.dll 00007FFC14540000-00007FFC1462F000 libkritaresources.dll 00007FFB996E0000-00007FFB99D36000 libkritaimage.dll 00007FFC0F510000-00007FFC0F609000 libkritaglobal.dll 00007FFC48BE0000-00007FFC4934B000 SHELL32.dll 6.2.19041.4239 00007FFC47740000-00007FFC477DD000 msvcp_win.dll 6.2.19041.3636 00007FFC495C0000-00007FFC4975F000 USER32.dll 6.2.19041.4239 00007FFC470F0000-00007FFC47112000 win32u.dll 6.2.19041.4291 00007FFC49590000-00007FFC495BB000 GDI32.dll 6.2.19041.3996 00007FFC471B0000-00007FFC472C7000 gdi32full.dll 6.2.19041.4239 00007FFC47B00000-00007FFC47C2B000 ole32.dll 6.2.19041.3636 00007FFB97CA0000-00007FFB985DF000 libkritaui.dll 00007FFC48A30000-00007FFC48B53000 RPCRT4.dll 6.2.19041.4291 00007FFC47E50000-00007FFC481A3000 combase.dll 6.2.19041.4239 00007FFB97730000-00007FFB97C94000 Qt5Widgets.dll 5.15.7.0 00007FFC17140000-00007FFC17191000 libKF5I18n.dll 00007FFC0F710000-00007FFC0F76A000 libKF5ConfigCore.dll 00007FFBD6380000-00007FFBD64AC000 libc++.dll 00007FFB97040000-00007FFB9772E000 Qt5Gui.dll 5.15.7.0 00007FFC412E0000-00007FFC412EE000 libunwind.dll 00007FFB96AC0000-00007FFB97036000 Qt5Core.dll 5.15.7.0 00007FFC48210000-00007FFC4827B000 WS2_32.dll 6.2.19041.3636 00007FFC48840000-00007FFC488F0000 ADVAPI32.dll 6.2.19041.4170 00007FFC49830000-00007FFC498CE000 msvcrt.dll 7.0.19041.3636 00007FFC28EC0000-00007FFC28EF7000 Qt5Sql.dll 5.15.7.0 00007FFC47C30000-00007FFC47CD0000 sechost.dll 6.2.19041.4170 00007FFC2B8A0000-00007FFC2B8C2000 libkritaplugin.dll 00007FFC470C0000-00007FFC470E7000 bcrypt.dll 6.2.19041.3636 00007FFC2B7E0000-00007FFC2B7F9000 libkritastore.dll 00007FFC246F0000-00007FFC24720000 libquazip5.dll 00007FFC412C0000-00007FFC412CA000 libkritaversion.dll 00007FFC16DA0000-00007FFC16DE2000 Qt5Xml.dll 5.15.7.0 00007FFC0D520000-00007FFC0D59E000 libkritapsdutils.dll 00007FFC18DB0000-00007FFC18DE0000 libkritametadata.dll 00007FFBD6050000-00007FFBD61DF000 libfftw3.dll 00007FFC29F80000-00007FFC29F9E000 libkritacommand.dll 00007FFC0D8D0000-00007FFC0D91C000 libHalf-2_5.dll 00007FFB96760000-00007FFB96ABE000 libkritapigment.dll 00007FFBD5F00000-00007FFBD6042000 libkritawidgetutils.dll 00007FFB9CB30000-00007FFB9CC85000 Qt5Network.dll 5.15.7.0 00007FFC477E0000-00007FFC4793E000 CRYPT32.dll 6.2.19041.4291 00007FFC14980000-00007FFC149C0000 libpng16.dll 00007FFC28F10000-00007FFC28F2E000 libkritaimpex.dll 00007FFC40FA0000-00007FFC40FAB000 libkritacolor.dll 00007FFC04E80000-00007FFC04ED4000 libkritalibbrush.dll 00007FFC17080000-00007FFC170A7000 libmlt++-7.dll 00007FFBD5DB0000-00007FFBD5E9F000 libkritawidgets.dll 00007FFC04E40000-00007FFC04E73000 libKF5Completion.dll 00007FFC038F0000-00007FFC0392E000 libkritaresourcewidgets.dll 00007FFB9ABE0000-00007FFB9AE5A000 libkritaflake.dll 00007FFBFF5C0000-00007FFBFF5F5000 libKF5ItemViews.dll 00007FFC17010000-00007FFC17036000 libKF5ConfigGui.dll 00007FFBB3530000-00007FFBB35C4000 libKF5CoreAddons.dll 00007FFC47940000-00007FFC47948000 PSAPI.DLL 6.2.19041.3636 00007FFC14B50000-00007FFC14B73000 libKF5GuiAddons.dll 00007FFB995C0000-00007FFB996D3000 libKF5WidgetsAddons.dll 00007FFBF21F0000-00007FFBF223F000 Qt5Svg.dll 5.15.7.0 00007FFBD69B0000-00007FFBD6A0B000 libmlt-7.dll 00007FFC444B0000-00007FFC4454E000 UxTheme.dll 6.2.19041.3996 00007FFC119D0000-00007FFC119F5000 intl.dll 0.19.0.0 00007FFC44730000-00007FFC4475F000 dwmapi.dll 6.2.19041.3636 00007FFC42800000-00007FFC42A63000 d3d11.dll 6.2.19041.3636 00007FFC45850000-00007FFC45943000 dxgi.dll 6.2.19041.3636 00007FFC28CF0000-00007FFC28D10000 libzlib.dll 1.2.13.0 00007FFB9A720000-00007FFB9A82F000 libharfbuzz-0.dll 00007FFC2D3B0000-00007FFC2D3CD000 MPR.dll 6.2.19041.3636 00007FFC46E70000-00007FFC46E9E000 USERENV.dll 6.2.19041.3636 00007FFC3E4D0000-00007FFC3E4DA000 VERSION.dll 6.2.19041.3636 00007FFB96490000-00007FFB96754000 icuin-72.dll 72.1.0.0 00007FFB962D0000-00007FFB96482000 icuuc-72.dll 72.1.0.0 00007FFC39320000-00007FFC39339000 NETAPI32.dll 6.2.19041.3636 00007FFC38170000-00007FFC38197000 WINMM.dll 6.2.19041.3636 00007FFBD5D60000-00007FFBD5DAE000 Qt5PrintSupport.dll 5.15.7.0 00007FFC11980000-00007FFC119A4000 libKF5WindowSystem.dll 00007FFC47D10000-00007FFC47DEA000 comdlg32.dll 6.2.19041.3758 00007FFC48790000-00007FFC4883D000 shcore.dll 6.2.19041.3636 00007FFC49410000-00007FFC49465000 SHLWAPI.dll 6.2.19041.3636 00007FFB9C910000-00007FFB9C99E000 libssl-1_1-x64.dll 1.1.1.12 00007FFB96010000-00007FFB962CA000 libcrypto-1_1-x64.dll 1.1.1.12 00007FFC46430000-00007FFC464FB000 DNSAPI.dll 6.2.19041.4046 00007FFC463E0000-00007FFC4641B000 IPHLPAPI.DLL 6.2.19041.3636 00007FFB95F60000-00007FFB9600F000 libfreetype.dll 2.12.1.0 00007FFBD5BA0000-00007FFBD5BF9000 libfontconfig-1.dll 00007FFC10120000-00007FFC10147000 libfribidi-0.dll 00007FFC28B30000-00007FFC28B4B000 libdl.dll 00007FFC28970000-00007FFC28988000 libwinpthread-1.dll 1.0.0.0 00007FFC39D10000-00007FFC39D1F000 iconv.dll 00007FFB8DCB0000-00007FFB8FA89000 icudt-72.dll 72.1.0.0 00007FFC3A280000-00007FFC3A325000 WINSPOOL.DRV 6.2.19041.4046 00007FFC3A060000-00007FFC3A110000 COMCTL32.dll 5.82.19041.3636 00007FFBFDA80000-00007FFBFDAB4000 libexpat.dll 2.4.8.0 00007FFC46420000-00007FFC4642C000 NETUTILS.DLL 6.2.19041.3636 00007FFC392F0000-00007FFC39318000 SRVCLI.DLL 6.2.19041.3636 00007FFC46500000-00007FFC46543000 LOGONCLI.DLL 6.2.19041.4291 00007FFC46940000-00007FFC4694C000 CRYPTBASE.DLL 6.2.19041.3636 00007FFC3C540000-00007FFC3C559000 SAMCLI.DLL 6.2.19041.3636 00007FFC47CD0000-00007FFC47D02000 IMM32.DLL 6.2.19041.3996 00007FFC49400000-00007FFC49408000 NSI.dll 6.2.19041.3636 00007FFC47120000-00007FFC471A2000 bcryptPrimitives.dll 6.2.19041.3636 00007FFC46EF0000-00007FFC46F13000 profapi.dll 6.2.19041.4239 00007FFC44E40000-00007FFC455DE000 windows.storage.dll 6.2.19041.4291 00007FFC469F0000-00007FFC46A1E000 Wldp.dll 6.2.19041.4291 00007FFC49760000-00007FFC4982D000 OLEAUT32.dll 6.2.19041.3636 00007FFB95E40000-00007FFB95F5F000 qwindows.dll 5.15.7.0 00007FFC48320000-00007FFC4878E000 SETUPAPI.dll 6.2.19041.3996 00007FFC472D0000-00007FFC4731E000 cfgmgr32.dll 6.2.19041.3996 00007FFC412F0000-00007FFC41304000 WTSAPI32.dll 6.2.19041.3636 00007FFC45800000-00007FFC45812000 kernel.appcore.dll 6.2.19041.3758 00007FFC46550000-00007FFC4659B000 powrprof.dll 6.2.19041.3636 00007FFC463C0000-00007FFC463D2000 UMPDC.dll 00007FFC46D50000-00007FFC46D83000 DEVOBJ.dll 6.2.19041.3996 00007FFC11A50000-00007FFC11C1D000 d3d9.dll 6.2.19041.3636 00007FFC46B80000-00007FFC46B92000 msasn1.dll 6.2.19041.3636 00007FFC3D160000-00007FFC3D191000 cryptnet.dll 6.2.19041.3636 00007FFC47620000-00007FFC47687000 wintrust.dll 6.2.19041.4291 00007FFC48A10000-00007FFC48A2D000 imagehlp.dll 6.2.19041.3636 00007FFC46950000-00007FFC46968000 CRYPTSP.dll 6.2.19041.3636 00007FFC46000000-00007FFC46034000 rsaenh.dll 6.2.19041.3636 00007FFC49470000-00007FFC49585000 MSCTF.dll 6.2.19041.4123 00007FFBDF220000-00007FFBDF345000 opengl32.dll 6.2.19041.3636 00007FFBDF1F0000-00007FFBDF21C000 GLU32.dll 6.2.19041.3636 00007FFC49350000-00007FFC493F9000 clbcatq.dll 2001.12.10941.16384 00007FFBDC550000-00007FFBDF1E7000 nvoglv64.dll 31.0.15.5123 00007FFC3CFA0000-00007FFC3D0E8000 drvstore.dll 6.2.19041.3636 00007FFC46120000-00007FFC46153000 ntmarta.dll 6.2.19041.3636 00007FFC45820000-00007FFC45843000 gpapi.dll 6.2.19041.4123 00007FFC344F0000-00007FFC3670D000 nvgpucomp64.dll 31.0.15.5123 00007FFC401B0000-00007FFC401EB000 dxcore.dll 6.2.19041.3996 00007FFC33E00000-00007FFC340D0000 nvspcap64.dll 3.28.0.412 00007FFC45C80000-00007FFC45CDB000 WINSTA.dll 6.2.19041.3636 00007FFBD52A0000-00007FFBD52DA000 libEGL.DLL 2.1.0.0 00007FFB95850000-00007FFB95E40000 libGLESv2.dll 2.1.0.0 00007FFC41DE0000-00007FFC41FC5000 dcomp.dll 6.2.19041.4291 00007FFC0D7C0000-00007FFC0D7EA000 wintab32.dll 1.5.2.0 00007FFBFE080000-00007FFBFE0AE000 qwindowsvistastyle.dll 5.15.7.0 00007FFC28820000-00007FFC28831000 qsvgicon.dll 5.15.7.0 00007FFC0E500000-00007FFC0E53E000 dataexchange.dll 6.2.19041.3636 00007FFC3E5F0000-00007FFC3E7F3000 twinapi.appcore.dll 6.2.19041.4123 00007FFC24540000-00007FFC24552000 exchndl.dll 0.9.7.0 00007FFBB7DB0000-00007FFBB7E2F000 mgwhelp.dll 0.9.7.0 00007FFB95650000-00007FFB95843000 dbghelp.dll 10.0.18362.1 00007FFBF1DB0000-00007FFBF1DDA000 dbgcore.DLL 10.0.18362.1 00007FFC39440000-00007FFC3944E000 kimg_ani.dll 00007FFC392E0000-00007FFC392F0000 kimg_hdr.dll 00007FFC2B980000-00007FFC2B98D000 kimg_kra.dll 00007FFBDB280000-00007FFBDB2A8000 libKF5Archive.dll 00007FFC29320000-00007FFC2932C000 kimg_ora.dll 00007FFC28BC0000-00007FFC28BD0000 kimg_pcx.dll 00007FFC265A0000-00007FFC265B0000 kimg_pic.dll 00007FFC1DC90000-00007FFC1DCA4000 kimg_psd.dll 00007FFC246E0000-00007FFC246EE000 kimg_ras.dll 00007FFC174F0000-00007FFC17501000 kimg_rgb.dll 00007FFC1A330000-00007FFC1A33E000 kimg_tga.dll 00007FFBD6980000-00007FFBD69A9000 kimg_xcf.dll 00007FFC1A1A0000-00007FFC1A1B0000 qgif.dll 5.15.7.0 00007FFC147F0000-00007FFC14802000 qicns.dll 5.15.7.0 00007FFC1A140000-00007FFC1A150000 qico.dll 5.15.7.0 00007FFC101C0000-00007FFC101D2000 qjpeg.dll 5.15.7.0 00007FFBB7BE0000-00007FFBB7C5B000 libjpeg-62.dll 00007FFC18DA0000-00007FFC18DAF000 qsvg.dll 5.15.7.0 00007FFB9B8C0000-00007FFB9B93A000 qtiff.dll 5.15.7.0 00007FFC181A0000-00007FFC181AE000 qwbmp.dll 5.15.7.0 00007FFB95590000-00007FFB95643000 qwebp.dll 5.15.7.0 00007FFC1DEC0000-00007FFC1DFB9000 textinputframework.dll 6.2.19041.4239 00007FFC424A0000-00007FFC427FB000 CoreUIComponents.dll 6.2.19041.3636 00007FFC42A70000-00007FFC42B62000 CoreMessaging.dll 6.2.19041.3930 00007FFC42EB0000-00007FFC43007000 wintypes.dll 6.2.19041.4239 00007FFC3A210000-00007FFC3A276000 Oleacc.dll 7.2.19041.3636 00007FFC07440000-00007FFC07735000 UIAutomationCore.dll 7.2.19041.4046 00007FFC43FA0000-00007FFC44096000 PROPSYS.dll 7.0.19041.3636 00007FFC46DC0000-00007FFC46E62000 sxs.dll 6.2.19041.3636 00007FFC0FA60000-00007FFC0FA73000 krita_shape_image.dll 00007FFBD4A50000-00007FFBD4AA3000 krita_shape_paths.dll 00007FFB90D00000-00007FFB91D4B000 kritalcmsengine.dll 00007FFC0D8B0000-00007FFC0D8C6000 liblcms2_fast_float.dll 00007FFBA2170000-00007FFBA21D3000 liblcms2.dll 00007FFBD4890000-00007FFBD48BD000 krita_colorspaces_extensions.dll 00007FFC0D500000-00007FFC0D516000 kritaasccdl.dll 00007FFC0D490000-00007FFC0D4B0000 kritablurfilter.dll 00007FFBC2C00000-00007FFBC2C43000 kritacolorsfilters.dll 00007FFC0A3D0000-00007FFC0A3E6000 kritaconvertheighttonormalmap.dll 00007FFC05C40000-00007FFC05C51000 kritaconvolutionfilters.dll 00007FFC04C30000-00007FFC04C42000 kritadodgeburn.dll 00007FFBFC1B0000-00007FFBFC1C4000 kritaedgedetection.dll 00007FFC17E70000-00007FFC17E7F000 kritaembossfilter.dll 00007FFBF90B0000-00007FFBF90C1000 kritaexample.dll 00007FFBF4570000-00007FFBF4588000 kritaextensioncolorsfilters.dll 00007FFBF21D0000-00007FFBF21E4000 kritafastcolortransferfilter.dll 00007FFBF07F0000-00007FFBF0805000 kritagaussianhighpassfilter.dll 00007FFBD8D80000-00007FFBD8DA0000 kritagradientmap.dll 00007FFBB34F0000-00007FFBB3525000 kritahalftone.dll 00007FFBD5B80000-00007FFBD5B9A000 kritaimageenhancement.dll 00007FFBD5280000-00007FFBD529C000 kritaindexcolors.dll 00007FFB9CB00000-00007FFB9CB2F000 kritalevelfilter.dll 00007FFBD4840000-00007FFBD4855000 kritanoisefilter.dll 00007FFBC4230000-00007FFBC4241000 kritanormalize.dll 00007FFB9CAE0000-00007FFB9CAF5000 kritaoilpaintfilter.dll 00007FFB9C8E0000-00007FFB9C901000 kritapalettize.dll 00007FFB9C8B0000-00007FFB9C8D1000 kritaphongbumpmap.dll 00007FFB9BBE0000-00007FFB9BBF4000 kritapixelizefilter.dll 00007FFB9BBC0000-00007FFB9BBD3000 kritaposterize.dll 00007FFC177F0000-00007FFC17800000 kritaraindropsfilter.dll 00007FFB9ABC0000-00007FFB9ABD6000 kritarandompickfilter.dll 00007FFC176B0000-00007FFC176BE000 kritaresettransparent.dll 00007FFB9ABA0000-00007FFB9ABB4000 kritaroundcornersfilter.dll 00007FFB9AB80000-00007FFB9AB92000 kritasmalltilesfilter.dll 00007FFB9AA40000-00007FFB9AA57000 kritathreshold.dll 00007FFB9AA20000-00007FFB9AA33000 kritaunsharpfilter.dll 00007FFB9AA00000-00007FFB9AA19000 kritawavefilter.dll 00007FFB9A9E0000-00007FFB9A9F5000 kritacolorgenerator.dll 00007FFB99110000-00007FFB99135000 kritagradientgenerator.dll 00007FFB95560000-00007FFB95581000 kritamultigridpatterngenerator.dll 00007FFB9A9C0000-00007FFB9A9DE000 kritapatterngenerator.dll 00007FFB95420000-00007FFB95554000 kritascreentonegenerator.dll 00007FFB95360000-00007FFB9541D000 kritaseexprgenerator.dll 00007FFB95340000-00007FFB9535B000 kritasimplexnoisegenerator.dll 00007FFB95270000-00007FFB9533D000 kritacolorsmudgepaintop.dll 00007FFB94F30000-00007FFB9526A000 libkritalibpaintop.dll 00007FFB94EE0000-00007FFB94F27000 kritacurvepaintop.dll 00007FFB94E50000-00007FFB94EDC000 kritadefaultpaintops.dll 00007FFB94DF0000-00007FFB94E4B000 kritadeformpaintop.dll 00007FFB94DB0000-00007FFB94DEB000 kritaexperimentpaintop.dll 00007FFB94D70000-00007FFB94DA2000 kritafilterop.dll 00007FFB94D20000-00007FFB94D67000 kritagridpaintop.dll 00007FFB94CC0000-00007FFB94D1C000 kritahairypaintop.dll 00007FFB94C40000-00007FFB94CB5000 kritahatchingpaintop.dll 00007FFB94A90000-00007FFB94C32000 kritamypaintop.dll 00007FFB94A60000-00007FFB94A82000 libmypaint.dll 00007FFB94A40000-00007FFB94A5E000 libjson-c.dll 00007FFB94A00000-00007FFB94A40000 kritaparticlepaintop.dll 00007FFB90CC0000-00007FFB90CFE000 kritaroundmarkerpaintop.dll 00007FFB90C60000-00007FFB90CC0000 kritasketchpaintop.dll 00007FFB90BA0000-00007FFB90C5E000 kritaspraypaintop.dll 00007FFB90B40000-00007FFB90B92000 kritatangentnormalpaintop.dll 00007FFB90AE0000-00007FFB90B32000 krita_flaketools.dll 00007FFB949D0000-00007FFB949F7000 krita_karbontools.dll 00007FFB90AA0000-00007FFB90AE0000 krita_tool_svgtext.dll 00007FFB90A30000-00007FFB90A92000 kritaassistanttool.dll 00007FFB90990000-00007FFB90A26000 kritadefaulttools.dll 00007FFB90970000-00007FFB90989000 libkritabasicflakes.dll 00007FFB908D0000-00007FFB90970000 kritaselectiontools.dll 00007FFB908A0000-00007FFB908C8000 kritatoolSmartPatch.dll 00007FFB90870000-00007FFB90899000 kritatoolcrop.dll 00007FFB90850000-00007FFB90865000 kritatooldyna.dll 00007FFB90800000-00007FFB90843000 kritatoolencloseandfill.dll 00007FFB907D0000-00007FFB907F5000 kritatoollazybrush.dll 00007FFB907B0000-00007FFB907C3000 kritatoolpolygon.dll 00007FFB90790000-00007FFB907A2000 kritatoolpolyline.dll 00007FFB90630000-00007FFB90785000 kritatooltransform.dll 00007FFB90570000-00007FFB90627000 kritaanimationdocker.dll 00007FFB90550000-00007FFB90566000 kritaarrangedocker.dll 00007FFB90520000-00007FFB9054D000 kritaartisticcolorselector.dll 00007FFB904F0000-00007FFB90511000 kritachanneldocker.dll 00007FFB90410000-00007FFB9047B000 kritacolorselectorng.dll 00007FFB904D0000-00007FFB904EF000 kritacompositiondocker.dll 00007FFB904B0000-00007FFB904C6000 kritadigitalmixer.dll 00007FFB90390000-00007FFB903B4000 kritagamutmask.dll 00007FFB903F0000-00007FFB9040A000 kritagriddocker.dll 00007FFB90370000-00007FFB90388000 kritahistogramdocker.dll 00007FFB90350000-00007FFB90366000 kritahistorydocker.dll 00007FFB90300000-00007FFB90347000 kritalayerdocker.dll 00007FFB902E0000-00007FFB902F8000 kritalogdocker.dll 00007FFB902B0000-00007FFB902DB000 kritalutdocker.dll 00007FFB8D860000-00007FFB8DCA5000 libOpenColorIO_2_3.dll 00007FFB90290000-00007FFB902A9000 kritaoverviewdocker.dll 00007FFB90270000-00007FFB9028B000 kritapalettedocker.dll 00007FFC17680000-00007FFC17690000 kritapatterndocker.dll 00007FFC173D0000-00007FFC173E0000 kritapresetdocker.dll 00007FFB90250000-00007FFB90268000 kritapresethistory.dll 00007FFB901A0000-00007FFB901E8000 kritarecorderdocker.dll 00007FFB90230000-00007FFB9024F000 kritasmallcolorselector.dll 00007FFB90180000-00007FFB90199000 kritasnapshotdocker.dll 00007FFB90160000-00007FFB9017B000 kritaspecificcolorselector.dll 00007FFB90100000-00007FFB9015E000 kritastoryboarddocker.dll 00007FFB900E0000-00007FFB900F5000 kritasvgcollectiondocker.dll 00007FFB900C0000-00007FFB900D9000 kritatasksetdocker.dll 00007FFB900A0000-00007FFB900B8000 kritatouchdocker.dll 00007FFB8D420000-00007FFB8D439000 Qt5QuickWidgets.dll 5.15.7.0 00007FFB8CF60000-00007FFB8D04E000 libkritaqml.dll 00007FFB8D440000-00007FFB8D856000 Qt5Quick.dll 5.15.7.0 00007FFB8D050000-00007FFB8D41B000 Qt5Qml.dll 5.15.7.0 00007FFB8CEE0000-00007FFB8CF53000 Qt5QmlModels.dll 5.15.7.0 00007FFB8CE90000-00007FFB8CEDC000 kritawgcolorselector.dll 00007FFB8CE60000-00007FFB8CE8B000 kritaexif.dll 00007FFB8CC10000-00007FFB8CE51000 libexiv2.dll 00007FFB8CBE0000-00007FFB8CC02000 kritaiptc.dll 00007FFB8CBC0000-00007FFB8CBDB000 kritaxmp.dll 00007FFB8CA50000-00007FFB8CBBF000 qsqlite.dll 5.15.7.0 00007FFB8CA30000-00007FFB8CA44000 qgenericbearer.dll 5.15.7.0 00007FFC3F150000-00007FFC3F167000 dhcpcsvc6.DLL 6.2.19041.3636 00007FFC3F120000-00007FFC3F13D000 dhcpcsvc.DLL 6.2.19041.3636 00007FFC06490000-00007FFC064A7000 napinsp.dll 6.2.19041.3636 00007FFC06470000-00007FFC0648B000 pnrpnsp.dll 6.2.19041.3636 00007FFC42E90000-00007FFC42EA5000 wshbth.dll 6.2.19041.3636 00007FFC40EC0000-00007FFC40EDD000 NLAapi.dll 6.2.19041.4123 00007FFC46750000-00007FFC467BA000 mswsock.dll 6.2.19041.3636 00007FFC06450000-00007FFC06462000 winrnr.dll 6.2.19041.3636 00007FFC3F140000-00007FFC3F14A000 rasadhlp.dll 6.2.19041.3636 00007FFC29000000-00007FFC29024000 edputil.dll 6.2.19041.3636 00007FFC3B1D0000-00007FFC3B250000 fwpuclnt.dll 6.2.19041.4123 00007FFB8CA10000-00007FFB8CA25000 kritabuginfo.dll 00007FFB8C9F0000-00007FFB8CA09000 kritaclonesarray.dll 00007FFB8C9D0000-00007FFB8C9ED000 kritacolorrange.dll 00007FFB8C9B0000-00007FFB8C9C2000 kritacolorspaceconversion.dll 00007FFB8C990000-00007FFB8C9AC000 kritadbexplorer.dll 00007FFB8C970000-00007FFB8C98E000 kritaimagesplit.dll 00007FFB8C950000-00007FFB8C962000 kritalayergroupswitcher.dll 00007FFB8C930000-00007FFB8C94F000 kritalayersplit.dll 00007FFB8C900000-00007FFB8C92D000 kritametadataeditor.dll 00007FFB8C8E0000-00007FFB8C8F8000 kritamodifyselection.dll 00007FFB8C8C0000-00007FFB8C8DD000 kritaoffsetimage.dll 00007FFC17340000-00007FFC1734F000 kritaqmic.dll 00007FFB8C880000-00007FFB8C8B4000 libkritaqmicinterface.dll 00007FFB8C830000-00007FFB8C87B000 kritaresourcemanager.dll 00007FFB8C810000-00007FFB8C828000 kritarotateimage.dll 00007FFC17130000-00007FFC1713E000 kritasamplescreencolor.dll 00007FFB8C7F0000-00007FFB8C80C000 kritaseparatechannels.dll 00007FFB8C7D0000-00007FFB8C7E1000 kritashearimage.dll 00007FFB8C7B0000-00007FFB8C7C8000 kritawaveletdecompose.dll 00007FFB8C780000-00007FFB8C7A6000 kritapykrita.dll 00007FFB8C270000-00007FFB8C31D000 libkritalibkis.dll 00007FFB8C320000-00007FFB8C77A000 python310.dll 3.10.7150.1013 00007FFB8C250000-00007FFB8C26B000 VCRUNTIME140.dll 14.32.31332.0 0000015864E40000-0000015864E4F000 python3.DLL 3.10.7150.1013 00007FFB8C1D0000-00007FFB8C249000 krita.pyd 00007FFB8C1A0000-00007FFB8C1C1000 sip.cp310-win_amd64.pyd 00007FFB8BF20000-00007FFB8C198000 QtCore.pyd 00007FFB8BC90000-00007FFB8BF16000 QtGui.pyd 00007FFB8B720000-00007FFB8BC8A000 QtWidgets.pyd 00007FFB8B6E0000-00007FFB8B71F000 QtXml.pyd 00007FFB8B6C0000-00007FFB8B6D5000 _bz2.pyd 3.10.7150.1013 00007FFB8B690000-00007FFB8B6B9000 _lzma.pyd 3.10.7150.1013 00007FFB8B670000-00007FFB8B685000 _socket.pyd 3.10.7150.1013 00007FFC14D80000-00007FFC14D89000 select.pyd 3.10.7150.1013 00007FFC14530000-00007FFC14540000 _hashlib.pyd 3.10.7150.1013 00007FFB8B320000-00007FFB8B66F000 libcrypto-1_1.dll 1.1.1.17 00007FFB8B300000-00007FFB8B320000 _elementtree.pyd 3.10.7150.1013 00007FFB8B2C0000-00007FFB8B2F1000 pyexpat.pyd 3.10.7150.1013 00007FFB8B290000-00007FFB8B2B8000 _ssl.pyd 3.10.7150.1013 00007FFB8B1E0000-00007FFB8B28E000 libssl-1_1.dll 1.1.1.17 00007FFB8B1C0000-00007FFB8B1D1000 _asyncio.pyd 3.10.7150.1013 00007FFC0F700000-00007FFC0F70D000 _overlapped.pyd 3.10.7150.1013 00007FFC04E30000-00007FFC04E3D000 qtquick2plugin.dll 5.15.7.0 00007FFB8B1A0000-00007FFB8B1B4000 Qt5QmlWorkerScript.dll 5.15.7.0 00007FFB8B0E0000-00007FFB8B19A000 kritasketchplugin.dll 00007FFC2B890000-00007FFC2B89E000 kritakraimport.dll 00007FFB8B050000-00007FFB8B0E0000 libkritalibkra.dll 00007FFBFEEC0000-00007FFBFF06E000 DUI70.dll 6.2.19041.3636 00007FFC3A330000-00007FFC3A5CA000 Comctl32.dll 6.10.19041.3636 00007FFBFEE20000-00007FFBFEEB5000 DUser.dll 6.2.19041.3636 00007FFC28D10000-00007FFC28DB9000 tiptsf.dll 6.2.19041.3636 00007FFC00480000-00007FFC0048D000 atlthunk.dll 6.2.19041.3636 00007FFC0EFD0000-00007FFC0F07C000 TextShaping.dll 00007FFC0D230000-00007FFC0D474000 explorerframe.dll 6.2.19041.3996 00007FFC3E1E0000-00007FFC3E394000 WindowsCodecs.dll 6.2.19041.3636 00007FFC0D0F0000-00007FFC0D156000 thumbcache.dll 6.2.19041.3636 00007FFC15180000-00007FFC15326000 Windows.Globalization.dll 6.2.19041.4239 00007FFC1DD60000-00007FFC1DDBB000 Bcp47Langs.dll 6.2.19041.3636 00007FFC29DC0000-00007FFC29DED000 bcp47mrm.dll 6.2.19041.3636 00007FFC04890000-00007FFC048B5000 globinputhost.dll 6.2.19041.4239 00007FFC0A460000-00007FFC0A4DD000 ntshrui.dll 6.2.19041.3636 00007FFC46EA0000-00007FFC46ED2000 SspiCli.dll 6.2.19041.4239 00007FFC392C0000-00007FFC392D2000 cscapi.dll 6.2.19041.3636 00007FFC2B6F0000-00007FFC2B796000 StructuredQuery.dll 7.0.19041.3636 00007FFC292B0000-00007FFC29311000 Windows.FileExplorer.Common.dll 6.2.19041.3636 00007FFC2BB10000-00007FFC2BDCC000 iertutil.dll 11.0.19041.4123 00007FFC29080000-00007FFC29146000 Windows.Storage.Search.dll 6.2.19041.3636 00007FFC389F0000-00007FFC38B36000 Windows.StateRepositoryPS.dll 6.2.19041.3636 00007FFC40A20000-00007FFC40A29000 IconCodecService.dll 6.2.19041.1 00007FFC43EF0000-00007FFC43F91000 policymanager.dll 6.2.19041.4123 00007FFC46090000-00007FFC4611A000 msvcp110_win.dll 6.2.19041.3636 00007FFBF9780000-00007FFBF978B000 drprov.dll 6.2.19041.3636 00007FFBF9760000-00007FFBF977F000 ntlanman.dll 6.2.19041.3636 00007FFBF9740000-00007FFBF975E000 davclnt.dll 6.2.19041.3636 00007FFBF9730000-00007FFBF973D000 DAVHLPR.dll 6.2.19041.3636 00007FFC46160000-00007FFC46179000 wkscli.dll 6.2.19041.3636 00007FFC0CF70000-00007FFC0D019000 twinapi.dll 6.2.19041.3636 00007FFC43D00000-00007FFC43D90000 apphelp.dll 6.2.19041.3636 00007FFC04EE0000-00007FFC04F36000 dlnashext.dll 6.2.19041.3636 00007FFC29030000-00007FFC29052000 cldapi.dll 6.2.19041.3636 00007FFC33970000-00007FFC3397B000 FLTLIB.DLL 6.2.19041.3636 00007FFC17510000-00007FFC17574000 PlayToDevice.dll 6.2.19041.3636 00007FFC11020000-00007FFC11040000 DevDispItemProvider.dll 6.2.19041.3636 00007FFC40B50000-00007FFC40BD5000 MMDevApi.dll 6.2.19041.3636 00007FFBDB2B0000-00007FFBDB351000 wpdshext.dll 6.2.19041.3636 00007FFC3A5D0000-00007FFC3A777000 gdiplus.dll 6.2.19041.3996 00007FFC3FDC0000-00007FFC3FE63000 PortableDeviceApi.dll 6.2.19041.3636 00007FFC05010000-00007FFC05047000 EhStorShell.dll 6.2.19041.3636 00007FFC40A30000-00007FFC40A56000 EhStorAPI.dll 6.2.19041.3636 00007FFC48B60000-00007FFC48BD9000 coml2.dll 6.2.19041.3636 00007FFC15330000-00007FFC1533D000 LINKINFO.dll 6.2.19041.3636 00007FFC3CEA0000-00007FFC3CF42000 ActXPrxy.dll 6.2.19041.3758 00007FFB9B2F0000-00007FFB9B4C0000 FileSyncShell64.dll 24.81.421.3 00007FFC39950000-00007FFC3995C000 Secur32.dll 6.2.19041.3636 00007FFC327A0000-00007FFC32C76000 WININET.dll 11.0.19041.3636 00007FFC29D00000-00007FFC29D28000 mssprxy.dll 7.0.19041.3758 00007FFC04F40000-00007FFC0500D000 cscui.dll 6.2.19041.1 00007FFC1A150000-00007FFC1A167000 NetworkExplorer.dll 6.2.19041.1 00007FFC24600000-00007FFC2461B000 kritapngexport.dll 00007FFC33260000-00007FFC33286000 winmmbase.dll 6.2.19041.1 00007FFBDC470000-00007FFBDC4B6000 wdmaud.drv 6.2.19041.1 00007FFC3FF00000-00007FFC3FF09000 ksuser.dll 6.2.19041.1 00007FFC3FBA0000-00007FFC3FBAA000 AVRT.dll 6.2.19041.3636 00007FFC40D30000-00007FFC40EB2000 AUDIOSES.DLL 6.2.19041.3636 00007FFC14BC0000-00007FFC14BCD000 msacm32.drv 6.2.19041.3636 00007FFBDC450000-00007FFBDC46E000 MSACM32.dll 6.2.19041.1 00007FFBFDA70000-00007FFBFDA7B000 midimap.dll 6.2.19041.3636 00007FFC24580000-00007FFC245F3000 symsrv.dll 10.0.18362.1 00007FFC29060000-00007FFC29077000 ondemandconnroutehelper.dll 6.2.19041.3636 00007FFC3D4E0000-00007FFC3D5EA000 winhttp.dll 6.2.19041.3636 00007FFC3FB60000-00007FFC3FB6B000 WINNSI.DLL 6.2.19041.3636 00007FFC2C7C0000-00007FFC2C9AC000 urlmon.dll 11.0.19041.3996 Windows 6.2.9200 DrMingw 0.9.7 -- You are receiving this mail because: You are watching all bug changes.